1 instantiation of VArray
Microsoft.CodeAnalysis.Workspaces (1)
Differencing\LongestCommonSubsequence.cs (1)
94
return new
VArray
(_array, start, length);
8 references to VArray
Microsoft.CodeAnalysis.Workspaces (8)
Differencing\LongestCommonSubsequence.cs (8)
21
/// Underlying storage for <see cref="
VArray
"/>s allocated on <see cref="VStack"/>.
24
/// The LCS algorithm allocates <see cref="
VArray
"/>s of sizes (3, 2*1 + 1, ..., 2*D + 1), always in this order,
87
public
VArray
GetVArray(int depth)
133
public
VArray
Push()
146
public IEnumerable<(
VArray
Array, int Depth)> ConsumeArrays()
186
public void InitializeFrom(
VArray
other)
424
VArray
currentV = default;
439
var
previousV = currentV;