1 instantiation of VArray
Microsoft.CodeAnalysis.Workspaces (1)
Differencing\LongestCommonSubsequence.cs (1)
94return 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, 87public VArray GetVArray(int depth) 133public VArray Push() 146public IEnumerable<(VArray Array, int Depth)> ConsumeArrays() 186public void InitializeFrom(VArray other) 424VArray currentV = default; 439var previousV = currentV;