We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3724fef commit cbe841aCopy full SHA for cbe841a
Assets/Preco21/Editor/DiffHelper.cs
@@ -31,7 +31,7 @@ public struct Record<T>
31
public T Value;
32
}
33
34
- public static T? GetValueOrNull<T>(List<T> a, System.Predicate<T> predicate) where T : struct
+ public static T? GetValueOrNull<T>(List<T> a, Predicate<T> predicate) where T : struct
35
{
36
var index = a.FindIndex(predicate);
37
return index < 0 ? (T?)null : a[index];
0 commit comments