mirror of
https://github.com/oliverbooth/X10D
synced 2024-11-10 03:25:41 +00:00
Bump upm to 3.2.0-nightly.116
This commit is contained in:
parent
fb804566f9
commit
94323dd4da
BIN
X10D.Unity.dll
BIN
X10D.Unity.dll
Binary file not shown.
24
X10D.xml
24
X10D.xml
@ -536,6 +536,20 @@
|
||||
</code>
|
||||
</example>
|
||||
</member>
|
||||
<member name="M:X10D.Collections.ListExtensions.RemoveRange``1(System.Collections.Generic.IList{``0},System.Range)">
|
||||
<summary>
|
||||
Removes a range of elements from the list.
|
||||
</summary>
|
||||
<param name="source">The list whose elements to remove.</param>
|
||||
<param name="range">The range of elements to remove.</param>
|
||||
<typeparam name="T">The type of the elements in <paramref name="source" />.</typeparam>
|
||||
<exception cref="T:System.ArgumentNullException"><paramref name="source" /> is <see langword="null" />.</exception>
|
||||
<exception cref="T:System.ArgumentException"><paramref name="range" /> defines an invalid range.</exception>
|
||||
<exception cref="T:System.ArgumentOutOfRangeException">
|
||||
<paramref name="range" /> defines an end index whose value is greater than or equal to the count of elements in the
|
||||
list.
|
||||
</exception>
|
||||
</member>
|
||||
<member name="M:X10D.Collections.ListExtensions.Shuffle``1(System.Collections.Generic.IList{``0},System.Random)">
|
||||
<summary>
|
||||
Reorganizes the elements in a list by implementing a Fisher-Yates shuffle.
|
||||
@ -3308,6 +3322,16 @@
|
||||
Looks up a localized string similar to count must be greater than or equal to 0..
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:X10D.ExceptionMessages.EndIndexGreaterThanCount">
|
||||
<summary>
|
||||
Looks up a localized string similar to The end index must be less than the list count..
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:X10D.ExceptionMessages.EndIndexLessThanStartIndex">
|
||||
<summary>
|
||||
Looks up a localized string similar to The end index must be greater than or equal to the start index..
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:X10D.ExceptionMessages.HashAlgorithmCreateReturnedNull">
|
||||
<summary>
|
||||
Looks up a localized string similar to HashAlgorithm's Create method returned null reference..
|
||||
|
@ -6,7 +6,7 @@
|
||||
"url": "https://oliverbooth.dev"
|
||||
},
|
||||
"displayName": "X10D",
|
||||
"version": "3.2.0-nightly.115",
|
||||
"version": "3.2.0-nightly.116",
|
||||
"unity": "2021.2",
|
||||
"description": "Extension methods on crack",
|
||||
"keywords": ["dotnet", "extension-methods"],
|
||||
|
Loading…
Reference in New Issue
Block a user