Bump upm to 3.1.0-nightly.102

This commit is contained in:
Oliver Booth 2022-05-12 13:54:16 +01:00
parent 3238449fd8
commit 41e535d763
No known key found for this signature in database
GPG Key ID: 32A00B35503AF634
4 changed files with 25 additions and 1 deletions

Binary file not shown.

BIN
X10D.dll

Binary file not shown.

View File

@ -2346,6 +2346,18 @@
</returns>
<exception cref="T:System.ArgumentNullException"><paramref name="predicate" /> is <see langword="null" />.</exception>
</member>
<member name="M:X10D.Linq.ReadOnlySpanExtensions.Count``1(System.ReadOnlySpan{``0},System.Predicate{``0})">
<summary>
Returns a number that represents how many elements in the specified sequence satisfy a condition.
</summary>
<param name="source">A <see cref="T:System.ReadOnlySpan`1" /> that contains elements to be tested and counted.</param>
<param name="predicate">A function to test each element for a condition.</param>
<typeparam name="TSource">The type of the elements in <paramref name="source" />.</typeparam>
<returns>
A number that represents how many elements in the sequence satisfy the condition in the predicate function.
</returns>
<exception cref="T:System.ArgumentNullException"><paramref name="predicate" /> is <see langword="null" />.</exception>
</member>
<member name="T:X10D.Linq.SingleExtensions">
<summary>
LINQ-inspired extension methods for <see cref="T:System.Collections.Generic.IEnumerable`1" /> of <see cref="T:System.Single" />.
@ -2401,6 +2413,18 @@
</returns>
<exception cref="T:System.ArgumentNullException"><paramref name="predicate" /> is <see langword="null" />.</exception>
</member>
<member name="M:X10D.Linq.SpanExtensions.Count``1(System.Span{``0},System.Predicate{``0})">
<summary>
Returns a number that represents how many elements in the specified sequence satisfy a condition.
</summary>
<param name="source">A <see cref="T:System.Span`1" /> that contains elements to be tested and counted.</param>
<param name="predicate">A function to test each element for a condition.</param>
<typeparam name="TSource">The type of the elements in <paramref name="source" />.</typeparam>
<returns>
A number that represents how many elements in the sequence satisfy the condition in the predicate function.
</returns>
<exception cref="T:System.ArgumentNullException"><paramref name="predicate" /> is <see langword="null" />.</exception>
</member>
<member name="T:X10D.Math.ByteExtensions">
<summary>
Math-related extension methods for <see cref="T:System.Byte" />.

View File

@ -6,7 +6,7 @@
"url": "https://oliverbooth.dev"
},
"displayName": "X10D",
"version": "3.1.0-nightly.101",
"version": "3.1.0-nightly.102",
"unity": "2021.2",
"description": "Extension methods on crack",
"keywords": ["dotnet", "extension-methods"],