Update upm branch (f49188b428)

This commit is contained in:
github-actions 2023-03-30 01:10:33 +00:00
parent b4253fbdd8
commit 8221289dad
4 changed files with 101 additions and 1 deletions

Binary file not shown.

BIN
X10D.dll

Binary file not shown.

100
X10D.xml
View File

@ -8830,6 +8830,74 @@
<param name="comparison">The string comparison method used for determining substring count.</param> <param name="comparison">The string comparison method used for determining substring count.</param>
<returns>An integer representing the count of <paramref name="needle" /> inside <paramref name="haystack" />.</returns> <returns>An integer representing the count of <paramref name="needle" /> inside <paramref name="haystack" />.</returns>
</member> </member>
<member name="M:X10D.Text.StringExtensions.EnsureEndsWith(System.String,System.Char)">
<summary>
Ensures that the current string starts with a specified substring.
</summary>
<param name="value">The string to check.</param>
<param name="substring">The substring to prepend, if the current string does not already start with it.</param>
<returns>The combined string.</returns>
</member>
<member name="M:X10D.Text.StringExtensions.EnsureEndsWith(System.String,System.Char,System.StringComparison)">
<summary>
Ensures that the current string starts with a specified substring.
</summary>
<param name="value">The string to check.</param>
<param name="substring">The substring to prepend, if the current string does not already start with it.</param>
<param name="comparisonType">One of the enumeration values that determines how the substring is compared.</param>
<returns>The combined string.</returns>
</member>
<member name="M:X10D.Text.StringExtensions.EnsureEndsWith(System.String,System.String)">
<summary>
Ensures that the current string starts with a specified substring.
</summary>
<param name="value">The string to check.</param>
<param name="substring">The substring to prepend, if the current string does not already start with it.</param>
<returns>The combined string.</returns>
</member>
<member name="M:X10D.Text.StringExtensions.EnsureEndsWith(System.String,System.String,System.StringComparison)">
<summary>
Ensures that the current string starts with a specified substring.
</summary>
<param name="value">The string to check.</param>
<param name="substring">The substring to prepend, if the current string does not already start with it.</param>
<param name="comparisonType">One of the enumeration values that determines how the substring is compared.</param>
<returns>The combined string.</returns>
</member>
<member name="M:X10D.Text.StringExtensions.EnsureStartsWith(System.String,System.Char)">
<summary>
Ensures that the current string starts with a specified substring.
</summary>
<param name="value">The string to check.</param>
<param name="substring">The substring to prepend, if the current string does not already start with it.</param>
<returns>The combined string.</returns>
</member>
<member name="M:X10D.Text.StringExtensions.EnsureStartsWith(System.String,System.Char,System.StringComparison)">
<summary>
Ensures that the current string starts with a specified substring.
</summary>
<param name="value">The string to check.</param>
<param name="substring">The substring to prepend, if the current string does not already start with it.</param>
<param name="comparisonType">One of the enumeration values that determines how the substring is compared.</param>
<returns>The combined string.</returns>
</member>
<member name="M:X10D.Text.StringExtensions.EnsureStartsWith(System.String,System.String)">
<summary>
Ensures that the current string starts with a specified substring.
</summary>
<param name="value">The string to check.</param>
<param name="substring">The substring to prepend, if the current string does not already start with it.</param>
<returns>The combined string.</returns>
</member>
<member name="M:X10D.Text.StringExtensions.EnsureStartsWith(System.String,System.String,System.StringComparison)">
<summary>
Ensures that the current string starts with a specified substring.
</summary>
<param name="value">The string to check.</param>
<param name="substring">The substring to prepend, if the current string does not already start with it.</param>
<param name="comparisonType">One of the enumeration values that determines how the substring is compared.</param>
<returns>The combined string.</returns>
</member>
<member name="M:X10D.Text.StringExtensions.EnumParse``1(System.String)"> <member name="M:X10D.Text.StringExtensions.EnumParse``1(System.String)">
<summary> <summary>
Parses a <see cref="T:System.String" /> into an <see cref="T:System.Enum" />. Parses a <see cref="T:System.String" /> into an <see cref="T:System.Enum" />.
@ -8900,6 +8968,7 @@
<returns> <returns>
<see langword="true" /> if all alpha characters in this string are lowercase; otherwise, <see langword="false" />. <see langword="true" /> if all alpha characters in this string are lowercase; otherwise, <see langword="false" />.
</returns> </returns>
<exception cref="T:System.ArgumentNullException"><paramref name="value" /> is <see langword="null" />.</exception>
</member> </member>
<member name="M:X10D.Text.StringExtensions.IsNullOrEmpty(System.String)"> <member name="M:X10D.Text.StringExtensions.IsNullOrEmpty(System.String)">
<summary> <summary>
@ -9011,6 +9080,37 @@
</returns> </returns>
<exception cref="T:System.ArgumentNullException"><paramref name="value" /> is <see langword="null" />.</exception> <exception cref="T:System.ArgumentNullException"><paramref name="value" /> is <see langword="null" />.</exception>
</member> </member>
<member name="M:X10D.Text.StringExtensions.StartsWithAny(System.String,System.String[])">
<summary>
Determines whether the beginning of this string instance matches any of the specified strings using the current
culture for comparison.
</summary>
<param name="value">The value to compare.</param>
<param name="startValues">An array of string to compare.</param>
<returns>
<see langword="true" /> if <paramref name="value" /> starts with any of the <paramref name="startValues" />;
otherwise, <see langword="false" />.
</returns>
<exception cref="T:System.ArgumentNullException">
<paramref name="startValues" />, or at least one of its elements, is <see langword="null" />.
</exception>
</member>
<member name="M:X10D.Text.StringExtensions.StartsWithAny(System.String,System.StringComparison,System.String[])">
<summary>
Determines whether the beginning of this string instance matches any of the specified strings when compared using the
specified comparison option.
</summary>
<param name="value">The value to compare.</param>
<param name="comparison">One of the enumeration values that determines how this string and value are compared.</param>
<param name="startValues">An array of string to compare.</param>
<returns>
<see langword="true" /> if <paramref name="value" /> starts with any of the <paramref name="startValues" />;
otherwise, <see langword="false" />.
</returns>
<exception cref="T:System.ArgumentNullException">
<paramref name="startValues" />, or at least one of its elements, is <see langword="null" />.
</exception>
</member>
<member name="M:X10D.Text.StringExtensions.WithEmptyAlternative(System.String,System.String)"> <member name="M:X10D.Text.StringExtensions.WithEmptyAlternative(System.String,System.String)">
<summary> <summary>
Normalizes a string which may be either <see langword="null" /> or empty to a specified alternative. Normalizes a string which may be either <see langword="null" /> or empty to a specified alternative.

View File

@ -6,7 +6,7 @@
"url": "https://oliverbooth.dev" "url": "https://oliverbooth.dev"
}, },
"displayName": "X10D", "displayName": "X10D",
"version": "3.2.0-nightly.174", "version": "3.2.0-nightly.175",
"unity": "2021.3", "unity": "2021.3",
"description": "Extension methods on crack", "description": "Extension methods on crack",
"keywords": [ "keywords": [