mirror of
https://github.com/oliverbooth/X10D
synced 2024-11-10 03:25:41 +00:00
Update upm branch (6f3a667e37
)
This commit is contained in:
parent
c1158db3e5
commit
5198c26e45
BIN
X10D.Unity.dll
BIN
X10D.Unity.dll
Binary file not shown.
38
X10D.xml
38
X10D.xml
@ -9791,6 +9791,44 @@
|
|||||||
<paramref name="destinationEncoding" /> is <see langword="null" />.
|
<paramref name="destinationEncoding" /> is <see langword="null" />.
|
||||||
</exception>
|
</exception>
|
||||||
</member>
|
</member>
|
||||||
|
<member name="M:X10D.Text.StringExtensions.ConcatIf(System.String,System.Boolean,System.String)">
|
||||||
|
<summary>
|
||||||
|
Appends a string to the current string if the specified condition evaluates to <see langword="true" />.
|
||||||
|
</summary>
|
||||||
|
<param name="value">The current string.</param>
|
||||||
|
<param name="condition">The condition to evaluate.</param>
|
||||||
|
<param name="appendValue">The string to append if the condition is true.</param>
|
||||||
|
<returns>The concatenated string.</returns>
|
||||||
|
</member>
|
||||||
|
<member name="M:X10D.Text.StringExtensions.ConcatIf(System.String,System.Func{System.Boolean},System.String)">
|
||||||
|
<summary>
|
||||||
|
Appends a string to the current string if the specified condition evaluates to <see langword="true" />.
|
||||||
|
</summary>
|
||||||
|
<param name="value">The current string.</param>
|
||||||
|
<param name="conditionFactory">The function that returns the condition to evaluate.</param>
|
||||||
|
<param name="appendValue">The string to append if the condition is true.</param>
|
||||||
|
<returns>The concatenated string.</returns>
|
||||||
|
<exception cref="T:System.ArgumentNullException"><paramref name="conditionFactory" /> is <see langword="null" />.</exception>
|
||||||
|
</member>
|
||||||
|
<member name="M:X10D.Text.StringExtensions.ConcatIf(System.String,System.Boolean,System.Func{System.String})">
|
||||||
|
<summary>
|
||||||
|
Appends a string to the current string if the specified condition evaluates to <see langword="true" />.
|
||||||
|
</summary>
|
||||||
|
<param name="value">The current string.</param>
|
||||||
|
<param name="condition">The condition to evaluate.</param>
|
||||||
|
<param name="valueFactory">The function that returns the string to append if the condition is true.</param>
|
||||||
|
<returns>The concatenated string.</returns>
|
||||||
|
</member>
|
||||||
|
<member name="M:X10D.Text.StringExtensions.ConcatIf(System.String,System.Func{System.Boolean},System.Func{System.String})">
|
||||||
|
<summary>
|
||||||
|
Appends a string to the current string if the specified condition evaluates to <see langword="true" />.
|
||||||
|
</summary>
|
||||||
|
<param name="value">The current string.</param>
|
||||||
|
<param name="conditionFactory">The function that returns the condition to evaluate.</param>
|
||||||
|
<param name="valueFactory">The function that returns the string to append if the condition is true.</param>
|
||||||
|
<returns>The concatenated string.</returns>
|
||||||
|
<exception cref="T:System.ArgumentNullException"><paramref name="conditionFactory" /> is <see langword="null" />.</exception>
|
||||||
|
</member>
|
||||||
<member name="M:X10D.Text.StringExtensions.CountSubstring(System.Span{System.Char},System.Char)">
|
<member name="M:X10D.Text.StringExtensions.CountSubstring(System.Span{System.Char},System.Char)">
|
||||||
<summary>
|
<summary>
|
||||||
Counts the occurrences of a character within the current character span.
|
Counts the occurrences of a character within the current character span.
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
"url": "https://oliverbooth.dev"
|
"url": "https://oliverbooth.dev"
|
||||||
},
|
},
|
||||||
"displayName": "X10D",
|
"displayName": "X10D",
|
||||||
"version": "4.0.0-nightly.232",
|
"version": "4.0.0-nightly.233",
|
||||||
"unity": "2021.3",
|
"unity": "2021.3",
|
||||||
"description": "Extension methods on crack",
|
"description": "Extension methods on crack",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
|
Loading…
Reference in New Issue
Block a user