mirror of
https://github.com/oliverbooth/X10D
synced 2024-11-10 03:25:41 +00:00
Update upm branch (23dee3d2b8
)
This commit is contained in:
parent
5198c26e45
commit
69403256d3
BIN
X10D.Unity.dll
BIN
X10D.Unity.dll
Binary file not shown.
76
X10D.xml
76
X10D.xml
@ -9810,6 +9810,18 @@
|
|||||||
<returns>The concatenated string.</returns>
|
<returns>The concatenated string.</returns>
|
||||||
<exception cref="T:System.ArgumentNullException"><paramref name="conditionFactory" /> is <see langword="null" />.</exception>
|
<exception cref="T:System.ArgumentNullException"><paramref name="conditionFactory" /> is <see langword="null" />.</exception>
|
||||||
</member>
|
</member>
|
||||||
|
<member name="M:X10D.Text.StringExtensions.ConcatIf(System.String,System.Func{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="conditionFactory">
|
||||||
|
The function that returns the condition to evaluate, with <paramref name="value" /> given as an argument.
|
||||||
|
</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})">
|
<member name="M:X10D.Text.StringExtensions.ConcatIf(System.String,System.Boolean,System.Func{System.String})">
|
||||||
<summary>
|
<summary>
|
||||||
Appends a string to the current string if the specified condition evaluates to <see langword="true" />.
|
Appends a string to the current string if the specified condition evaluates to <see langword="true" />.
|
||||||
@ -9818,6 +9830,20 @@
|
|||||||
<param name="condition">The condition to evaluate.</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>
|
<param name="valueFactory">The function that returns the string to append if the condition is true.</param>
|
||||||
<returns>The concatenated string.</returns>
|
<returns>The concatenated string.</returns>
|
||||||
|
<exception cref="T:System.ArgumentNullException"><paramref name="valueFactory" /> is <see langword="null" />.</exception>
|
||||||
|
</member>
|
||||||
|
<member name="M:X10D.Text.StringExtensions.ConcatIf(System.String,System.Boolean,System.Func{System.String,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, with <paramref name="value" /> given as an
|
||||||
|
argument.
|
||||||
|
</param>
|
||||||
|
<returns>The concatenated string.</returns>
|
||||||
|
<exception cref="T:System.ArgumentNullException"><paramref name="valueFactory" /> is <see langword="null" />.</exception>
|
||||||
</member>
|
</member>
|
||||||
<member name="M:X10D.Text.StringExtensions.ConcatIf(System.String,System.Func{System.Boolean},System.Func{System.String})">
|
<member name="M:X10D.Text.StringExtensions.ConcatIf(System.String,System.Func{System.Boolean},System.Func{System.String})">
|
||||||
<summary>
|
<summary>
|
||||||
@ -9827,7 +9853,55 @@
|
|||||||
<param name="conditionFactory">The function that returns the condition to evaluate.</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>
|
<param name="valueFactory">The function that returns the string to append if the condition is true.</param>
|
||||||
<returns>The concatenated string.</returns>
|
<returns>The concatenated string.</returns>
|
||||||
<exception cref="T:System.ArgumentNullException"><paramref name="conditionFactory" /> is <see langword="null" />.</exception>
|
<exception cref="T:System.ArgumentNullException">
|
||||||
|
<paramref name="conditionFactory" /> or <paramref name="valueFactory" /> is <see langword="null" />.
|
||||||
|
</exception>
|
||||||
|
</member>
|
||||||
|
<member name="M:X10D.Text.StringExtensions.ConcatIf(System.String,System.Func{System.Boolean},System.Func{System.String,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, with <paramref name="value" /> given as an
|
||||||
|
argument.
|
||||||
|
</param>
|
||||||
|
<returns>The concatenated string.</returns>
|
||||||
|
<exception cref="T:System.ArgumentNullException">
|
||||||
|
<paramref name="conditionFactory" /> or <paramref name="valueFactory" /> is <see langword="null" />.
|
||||||
|
</exception>
|
||||||
|
</member>
|
||||||
|
<member name="M:X10D.Text.StringExtensions.ConcatIf(System.String,System.Func{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="conditionFactory">
|
||||||
|
The function that returns the condition to evaluate, with <paramref name="value" /> given as an argument.
|
||||||
|
</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" /> or <paramref name="valueFactory" /> is <see langword="null" />.
|
||||||
|
</exception>
|
||||||
|
</member>
|
||||||
|
<member name="M:X10D.Text.StringExtensions.ConcatIf(System.String,System.Func{System.String,System.Boolean},System.Func{System.String,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, with <paramref name="value" /> given as an argument.
|
||||||
|
</param>
|
||||||
|
<param name="valueFactory">
|
||||||
|
The function that returns the string to append if the condition is true, with <paramref name="value" /> given as an
|
||||||
|
argument.
|
||||||
|
</param>
|
||||||
|
<returns>The concatenated string.</returns>
|
||||||
|
<exception cref="T:System.ArgumentNullException">
|
||||||
|
<paramref name="conditionFactory" /> or <paramref name="valueFactory" /> is <see langword="null" />.
|
||||||
|
</exception>
|
||||||
</member>
|
</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>
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
"url": "https://oliverbooth.dev"
|
"url": "https://oliverbooth.dev"
|
||||||
},
|
},
|
||||||
"displayName": "X10D",
|
"displayName": "X10D",
|
||||||
"version": "4.0.0-nightly.233",
|
"version": "4.0.0-nightly.234",
|
||||||
"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