diff --git a/X10D.Unity.dll b/X10D.Unity.dll index 913ed46..3f8dc88 100644 Binary files a/X10D.Unity.dll and b/X10D.Unity.dll differ diff --git a/X10D.dll b/X10D.dll index 1b3ce35..6467e7e 100644 Binary files a/X10D.dll and b/X10D.dll differ diff --git a/X10D.xml b/X10D.xml index 840a565..cbf4c11 100644 --- a/X10D.xml +++ b/X10D.xml @@ -360,6 +360,51 @@ Extension methods for . + + + Returns a number that represents how many elements in the specified sequence do not satisfy a condition. + + A sequence that contains elements to be tested and counted. + A function to test each element for a condition. + The type of the elements of . + + A number that represents how many elements in the sequence do not satisfy the condition in the + function. + + or is null. + + The number of elements in is larger than . + + + + + Returns the first element in a sequence that does not satisfy a specified condition. + + An to return an element from. + A function to test each element for a condition. + The type of the elements in + The first element in the sequence that fails the test in the specified predicate function. + or is null. + + No element satisfies the condition in predicate. + -or- + The source sequence is empty. + + + + + Returns the first element in a sequence that does not satisfy a specified condition. + + An to return an element from. + A function to test each element for a condition. + The type of the elements in + + if is empty or if no element passes the test specified + by ; otherwise, the first element in that fails the test + specified by . + + or is null. + Performs the specified action on each element of the . @@ -414,6 +459,35 @@ is . + + + Returns the last element in a sequence that does not satisfy a specified condition. + + An to return an element from. + A function to test each element for a condition. + The type of the elements in + The last element in the sequence that fails the test in the specified predicate function. + or is null. + + No element satisfies the condition in predicate. + -or- + The source sequence is empty. + + + + + Returns the last element in a sequence that does not satisfy a specified condition. + + An to return an element from. + A function to test each element for a condition. + The type of the elements in + + if is empty or if no element passes the test specified + by ; otherwise, the last element in that fails the test + specified by . + + or is null. + Reorganizes the elements in an enumerable by implementing a Fisher-Yates shuffle, and returns th shuffled result. @@ -424,6 +498,18 @@ The shuffled collection. is . + + + Filters a sequence of values based on a predicate, such that all elements in the result do not match the predicate. + + An to filter. + A function to test each element for a condition. + The type of the elements of . + + An that contains elements from the input sequence that do not satisfy the condition. + + or is null. + Collection-related extension methods for . diff --git a/package.json b/package.json index 94693ee..ebca621 100644 --- a/package.json +++ b/package.json @@ -6,7 +6,7 @@ "url": "https://oliverbooth.dev" }, "displayName": "X10D", - "version": "3.2.0-nightly.132", + "version": "3.2.0-nightly.133", "unity": "2021.2", "description": "Extension methods on crack", "keywords": ["dotnet", "extension-methods"],