mirror of
https://github.com/oliverbooth/X10D
synced 2024-11-10 03:25:41 +00:00
Update upm branch (af6534d23d
)
This commit is contained in:
parent
2cc9c32b19
commit
c1158db3e5
BIN
X10D.Unity.dll
BIN
X10D.Unity.dll
Binary file not shown.
18
X10D.xml
18
X10D.xml
@ -564,7 +564,9 @@
|
||||
<returns>
|
||||
An <see cref="T:System.Collections.Generic.IEnumerable`1" /> that contains elements from the input sequence that do not satisfy the condition.
|
||||
</returns>
|
||||
<exception cref="T:System.ArgumentNullException"><paramref name="source" /> or <paramref name="predicate" /> is null.</exception>
|
||||
<exception cref="T:System.ArgumentNullException">
|
||||
<paramref name="source" /> or <paramref name="predicate" /> is <see langword="null" />.
|
||||
</exception>
|
||||
</member>
|
||||
<member name="M:X10D.Collections.EnumerableExtensions.WhereNotNull``1(System.Collections.Generic.IEnumerable{``0})">
|
||||
<summary>
|
||||
@ -577,6 +579,7 @@
|
||||
An <see cref="T:System.Collections.Generic.IEnumerable`1" /> that contains elements from the input sequence that are not <see langword="null" />
|
||||
(<see langword="Nothing" /> in Visual Basic).
|
||||
</returns>
|
||||
<exception cref="T:System.ArgumentNullException"><paramref name="source" /> is <see langword="null" />.</exception>
|
||||
</member>
|
||||
<member name="T:X10D.Collections.Int16Extensions">
|
||||
<summary>
|
||||
@ -5866,6 +5869,19 @@
|
||||
</returns>
|
||||
<exception cref="T:System.ArgumentNullException"><paramref name="source" /> is <see langword="null" />.</exception>
|
||||
</member>
|
||||
<member name="M:X10D.Linq.EnumerableExtensions.Except``1(System.Collections.Generic.IEnumerable{``0},``0)">
|
||||
<summary>
|
||||
Filters a sequence of values by omitting elements that match a specified value.
|
||||
</summary>
|
||||
<param name="source">An <see cref="T:System.Collections.Generic.IEnumerable`1" /> to filter.</param>
|
||||
<param name="item">The value to omit.</param>
|
||||
<typeparam name="TSource">The type of the elements of <paramref name="source" />.</typeparam>
|
||||
<returns>
|
||||
An <see cref="T:System.Collections.Generic.IEnumerable`1" /> that contains elements from the input sequence that do not match the specified
|
||||
value.
|
||||
</returns>
|
||||
<exception cref="T:System.ArgumentNullException"><paramref name="source" /> is <see langword="null" />.</exception>
|
||||
</member>
|
||||
<member name="M:X10D.Linq.EnumerableExtensions.MinMax``1(System.Collections.Generic.IEnumerable{``0})">
|
||||
<summary>
|
||||
Returns the minimum and maximum values in a sequence of values.
|
||||
|
@ -6,7 +6,7 @@
|
||||
"url": "https://oliverbooth.dev"
|
||||
},
|
||||
"displayName": "X10D",
|
||||
"version": "4.0.0-nightly.231",
|
||||
"version": "4.0.0-nightly.232",
|
||||
"unity": "2021.3",
|
||||
"description": "Extension methods on crack",
|
||||
"keywords": [
|
||||
|
Loading…
Reference in New Issue
Block a user