Bump upm to 3.2.0-nightly.120

This commit is contained in:
Oliver Booth 2022-07-08 13:12:47 +01:00
parent 8dce1b3811
commit 49c3120e47
No known key found for this signature in database
GPG Key ID: 32A00B35503AF634
4 changed files with 119 additions and 1 deletions

Binary file not shown.

BIN
X10D.dll

Binary file not shown.

118
X10D.xml
View File

@ -6581,6 +6581,17 @@
Numeric-related extension methods for <see cref="T:System.Byte" />. Numeric-related extension methods for <see cref="T:System.Byte" />.
</summary> </summary>
</member> </member>
<member name="M:X10D.Numerics.ByteExtensions.PopCount(System.Byte)">
<summary>
Returns the population count (number of bits set) of a mask.
</summary>
<param name="value">The mask.</param>
<returns>The population count of <paramref name="value" />.</returns>
<remarks>
This method is similar in behavior to the x86 instruction
<a href="https://docs.microsoft.com/en-us/dotnet/api/system.runtime.intrinsics.x86.popcnt?view=net-6.0">POPCNT</a>
</remarks>
</member>
<member name="M:X10D.Numerics.ByteExtensions.RotateLeft(System.Byte,System.Int32)"> <member name="M:X10D.Numerics.ByteExtensions.RotateLeft(System.Byte,System.Int32)">
<summary> <summary>
Rotates the current value left by the specified number of bits. Rotates the current value left by the specified number of bits.
@ -6616,6 +6627,17 @@
Numeric-related extension methods for <see cref="T:System.Int16" />. Numeric-related extension methods for <see cref="T:System.Int16" />.
</summary> </summary>
</member> </member>
<member name="M:X10D.Numerics.Int16Extensions.PopCount(System.Int16)">
<summary>
Returns the population count (number of bits set) of a mask.
</summary>
<param name="value">The mask.</param>
<returns>The population count of <paramref name="value" />.</returns>
<remarks>
This method is similar in behavior to the x86 instruction
<a href="https://docs.microsoft.com/en-us/dotnet/api/system.runtime.intrinsics.x86.popcnt?view=net-6.0">POPCNT</a>
</remarks>
</member>
<member name="M:X10D.Numerics.Int16Extensions.RotateLeft(System.Int16,System.Int32)"> <member name="M:X10D.Numerics.Int16Extensions.RotateLeft(System.Int16,System.Int32)">
<summary> <summary>
Rotates the current value left by the specified number of bits. Rotates the current value left by the specified number of bits.
@ -6651,6 +6673,17 @@
Numeric-related extension methods for <see cref="T:System.Int32" />. Numeric-related extension methods for <see cref="T:System.Int32" />.
</summary> </summary>
</member> </member>
<member name="M:X10D.Numerics.Int32Extensions.PopCount(System.Int32)">
<summary>
Returns the population count (number of bits set) of a mask.
</summary>
<param name="value">The mask.</param>
<returns>The population count of <paramref name="value" />.</returns>
<remarks>
This method is similar in behavior to the x86 instruction
<a href="https://docs.microsoft.com/en-us/dotnet/api/system.runtime.intrinsics.x86.popcnt?view=net-6.0">POPCNT</a>
</remarks>
</member>
<member name="M:X10D.Numerics.Int32Extensions.RotateLeft(System.Int32,System.Int32)"> <member name="M:X10D.Numerics.Int32Extensions.RotateLeft(System.Int32,System.Int32)">
<summary> <summary>
Rotates the current value left by the specified number of bits. Rotates the current value left by the specified number of bits.
@ -6686,6 +6719,17 @@
Numeric-related extension methods for <see cref="T:System.Int64" />. Numeric-related extension methods for <see cref="T:System.Int64" />.
</summary> </summary>
</member> </member>
<member name="M:X10D.Numerics.Int64Extensions.PopCount(System.Int64)">
<summary>
Returns the population count (number of bits set) of a mask.
</summary>
<param name="value">The mask.</param>
<returns>The population count of <paramref name="value" />.</returns>
<remarks>
This method is similar in behavior to the x86 instruction
<a href="https://docs.microsoft.com/en-us/dotnet/api/system.runtime.intrinsics.x86.popcnt?view=net-6.0">POPCNT</a>
</remarks>
</member>
<member name="M:X10D.Numerics.Int64Extensions.RotateLeft(System.Int64,System.Int32)"> <member name="M:X10D.Numerics.Int64Extensions.RotateLeft(System.Int64,System.Int32)">
<summary> <summary>
Rotates the current value left by the specified number of bits. Rotates the current value left by the specified number of bits.
@ -6778,6 +6822,17 @@
Numeric-related extension methods for <see cref="T:System.SByte" />. Numeric-related extension methods for <see cref="T:System.SByte" />.
</summary> </summary>
</member> </member>
<member name="M:X10D.Numerics.SByteExtensions.PopCount(System.SByte)">
<summary>
Returns the population count (number of bits set) of a mask.
</summary>
<param name="value">The mask.</param>
<returns>The population count of <paramref name="value" />.</returns>
<remarks>
This method is similar in behavior to the x86 instruction
<a href="https://docs.microsoft.com/en-us/dotnet/api/system.runtime.intrinsics.x86.popcnt?view=net-6.0">POPCNT</a>
</remarks>
</member>
<member name="M:X10D.Numerics.SByteExtensions.RotateLeft(System.SByte,System.Int32)"> <member name="M:X10D.Numerics.SByteExtensions.RotateLeft(System.SByte,System.Int32)">
<summary> <summary>
Rotates the current value left by the specified number of bits. Rotates the current value left by the specified number of bits.
@ -6813,6 +6868,17 @@
Numeric-related extension methods for <see cref="T:System.UInt16" />. Numeric-related extension methods for <see cref="T:System.UInt16" />.
</summary> </summary>
</member> </member>
<member name="M:X10D.Numerics.UInt16Extensions.PopCount(System.UInt16)">
<summary>
Returns the population count (number of bits set) of a mask.
</summary>
<param name="value">The mask.</param>
<returns>The population count of <paramref name="value" />.</returns>
<remarks>
This method is similar in behavior to the x86 instruction
<a href="https://docs.microsoft.com/en-us/dotnet/api/system.runtime.intrinsics.x86.popcnt?view=net-6.0">POPCNT</a>
</remarks>
</member>
<member name="M:X10D.Numerics.UInt16Extensions.RotateLeft(System.UInt16,System.Int32)"> <member name="M:X10D.Numerics.UInt16Extensions.RotateLeft(System.UInt16,System.Int32)">
<summary> <summary>
Rotates the current value left by the specified number of bits. Rotates the current value left by the specified number of bits.
@ -6848,6 +6914,17 @@
Numeric-related extension methods for <see cref="T:System.UInt32" />. Numeric-related extension methods for <see cref="T:System.UInt32" />.
</summary> </summary>
</member> </member>
<member name="M:X10D.Numerics.UInt32Extensions.PopCount(System.UInt32)">
<summary>
Returns the population count (number of bits set) of a mask.
</summary>
<param name="value">The mask.</param>
<returns>The population count of <paramref name="value" />.</returns>
<remarks>
This method is similar in behavior to the x86 instruction
<a href="https://docs.microsoft.com/en-us/dotnet/api/system.runtime.intrinsics.x86.popcnt?view=net-6.0">POPCNT</a>
</remarks>
</member>
<member name="M:X10D.Numerics.UInt32Extensions.RotateLeft(System.UInt32,System.Int32)"> <member name="M:X10D.Numerics.UInt32Extensions.RotateLeft(System.UInt32,System.Int32)">
<summary> <summary>
Rotates the current value left by the specified number of bits. Rotates the current value left by the specified number of bits.
@ -6883,6 +6960,17 @@
Numeric-related extension methods for <see cref="T:System.UInt64" />. Numeric-related extension methods for <see cref="T:System.UInt64" />.
</summary> </summary>
</member> </member>
<member name="M:X10D.Numerics.UInt64Extensions.PopCount(System.UInt64)">
<summary>
Returns the population count (number of bits set) of a mask.
</summary>
<param name="value">The mask.</param>
<returns>The population count of <paramref name="value" />.</returns>
<remarks>
This method is similar in behavior to the x86 instruction
<a href="https://docs.microsoft.com/en-us/dotnet/api/system.runtime.intrinsics.x86.popcnt?view=net-6.0">POPCNT</a>
</remarks>
</member>
<member name="M:X10D.Numerics.UInt64Extensions.RotateLeft(System.UInt64,System.Int32)"> <member name="M:X10D.Numerics.UInt64Extensions.RotateLeft(System.UInt64,System.Int32)">
<summary> <summary>
Rotates the current value left by the specified number of bits. Rotates the current value left by the specified number of bits.
@ -7686,6 +7774,21 @@
<inheritdoc cref="M:X10D.Time.DateTimeOffsetExtensions.FirstDayOfMonth(System.DateTimeOffset)" /> <inheritdoc cref="M:X10D.Time.DateTimeOffsetExtensions.FirstDayOfMonth(System.DateTimeOffset)" />
<returns>A <see cref="T:System.DateTime" /> representing the first day of the current month.</returns> <returns>A <see cref="T:System.DateTime" /> representing the first day of the current month.</returns>
</member> </member>
<member name="M:X10D.Time.DateTimeExtensions.GetIso8601WeekOfYear(System.DateTime)">
<summary>
Gets the ISO-8601 week number of the year for the current date.
</summary>
<param name="value">The date whose week number to return.</param>
<returns>The ISO-8601 week number of the year.</returns>
<author>Shawn Steele, Microsoft</author>
<remarks>
This implementation is directly inspired from a
<a href="https://docs.microsoft.com/en-gb/archive/blogs/shawnste/iso-8601-week-of-year-format-in-microsoft-net">
blog post
</a>.
about this subject.
</remarks>
</member>
<member name="M:X10D.Time.DateTimeExtensions.IsLeapYear(System.DateTime)"> <member name="M:X10D.Time.DateTimeExtensions.IsLeapYear(System.DateTime)">
<summary> <summary>
Returns a value indicating whether the year represented by the current <see cref="T:System.DateTime" /> is a leap year. Returns a value indicating whether the year represented by the current <see cref="T:System.DateTime" /> is a leap year.
@ -7760,6 +7863,21 @@
<param name="value">The current date.</param> <param name="value">The current date.</param>
<returns>A <see cref="T:System.DateTimeOffset" /> representing the first day of the current month.</returns> <returns>A <see cref="T:System.DateTimeOffset" /> representing the first day of the current month.</returns>
</member> </member>
<member name="M:X10D.Time.DateTimeOffsetExtensions.GetIso8601WeekOfYear(System.DateTimeOffset)">
<summary>
Gets the ISO-8601 week number of the year for the current date.
</summary>
<param name="value">The date whose week number to return.</param>
<returns>The ISO-8601 week number of the year.</returns>
<author>Shawn Steele, Microsoft</author>
<remarks>
This implementation is directly inspired from a
<a href="https://docs.microsoft.com/en-gb/archive/blogs/shawnste/iso-8601-week-of-year-format-in-microsoft-net">
blog post
</a>.
about this subject.
</remarks>
</member>
<member name="M:X10D.Time.DateTimeOffsetExtensions.IsLeapYear(System.DateTimeOffset)"> <member name="M:X10D.Time.DateTimeOffsetExtensions.IsLeapYear(System.DateTimeOffset)">
<summary> <summary>
Returns a value indicating whether the year represented by the current <see cref="T:System.DateTimeOffset" /> is a leap year. Returns a value indicating whether the year represented by the current <see cref="T:System.DateTimeOffset" /> is a leap year.

View File

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