1
0
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:
Oliver Booth 2022-06-03 11:59:00 +01:00
parent fb804566f9
commit 94323dd4da
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

@ -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&apos;s Create method returned null reference..

View File

@ -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"],