2 instantiations of LCS
Microsoft.Arcade.Test.Common (2)
DiffUtil.cs (2)
38
public static readonly LCS<T> Default = new
LCS
<T>((left, right) => EqualityComparer<T>.Default.Equals(left, right));
76
var lcs = (comparer != null) ? new
LCS
<T>(comparer) : LCS<T>.Default;
3 references to LCS
Microsoft.Arcade.Test.Common (3)
DiffUtil.cs (3)
38
public static readonly
LCS
<T> Default = new LCS<T>((left, right) => EqualityComparer<T>.Default.Equals(left, right));
76
var
lcs = (comparer != null) ? new LCS<T>(comparer) :
LCS
<T>.Default;