Bump upm to 3.2.0-nightly.155

This commit is contained in:
Oliver Booth 2023-02-26 00:58:39 +00:00
parent 52e62148e1
commit 4d94bfb0c9
No known key found for this signature in database
GPG Key ID: 20BEB9DC87961025
4 changed files with 23 additions and 1 deletions

Binary file not shown.

BIN
X10D.dll

Binary file not shown.

View File

@ -969,6 +969,28 @@
<returns>An enumerable collection containing <paramref name="value" /> repeated <paramref name="count" /> times.</returns> <returns>An enumerable collection containing <paramref name="value" /> repeated <paramref name="count" /> times.</returns>
<exception cref="T:System.ArgumentOutOfRangeException"><paramref name="count" /> is less than 0.</exception> <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="count" /> is less than 0.</exception>
</member> </member>
<member name="T:X10D.Core.NullableExtensions">
<summary>
Extension methods for <see cref="T:System.Nullable`1" />
</summary>
</member>
<member name="M:X10D.Core.NullableExtensions.TryGetValue``1(System.Nullable{``0},``0@)">
<summary>
Attempts to get the value of a <see cref="T:System.Nullable`1" />, and returns a value indicating the success of the
operation.
</summary>
<param name="value">The nullable value.</param>
<param name="result">
When this method returns, contains the result of <see cref="P:System.Nullable`1.Value" />, if
<see cref="P:System.Nullable`1.HasValue" /> is <see langword="true" />; otherwise, returns the default value for
<typeparamref name="T" />.
</param>
<typeparam name="T">The type of the value.</typeparam>
<returns>
<see langword="true" /> if the value's <see cref="P:System.Nullable`1.HasValue" /> is <see langword="true" />; otherwise,
<see langword="false" />.
</returns>
</member>
<member name="T:X10D.Core.RandomExtensions"> <member name="T:X10D.Core.RandomExtensions">
<summary> <summary>
Extension methods for <see cref="T:System.Random" />. Extension methods for <see cref="T:System.Random" />.

View File

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