public void BlinqAllShouldEqualLinqNativeArrayAll([ArrayValues] int[] sourceArr) { var source = new NativeArray <int>(sourceArr, Allocator.Persistent); var expected = ExceptionAndValue(() => Linq.All(source, EqualsZero.Invoke)); var actual = ExceptionAndValue(() => Blinq.All(source, EqualsZero)); AssertAreEqual(expected, actual); source.Dispose(); }
public void Execute() { Blinq.All(Source, Predicate); }