mirror of
https://github.com/oliverbooth/X10D
synced 2024-11-10 05:55:41 +00:00
Bump upm to 3.1.0-nightly.102
This commit is contained in:
parent
3238449fd8
commit
41e535d763
BIN
X10D.Unity.dll
BIN
X10D.Unity.dll
Binary file not shown.
24
X10D.xml
24
X10D.xml
@ -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" />.
|
||||
|
@ -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"],
|
||||
|
Loading…
Reference in New Issue
Block a user