mirror of
https://github.com/oliverbooth/X10D
synced 2024-11-22 19:28:48 +00:00
Update upm branch (7222bbb496
)
This commit is contained in:
parent
ac24a3b47d
commit
677d149c5a
BIN
X10D.Unity.dll
BIN
X10D.Unity.dll
Binary file not shown.
125
X10D.xml
125
X10D.xml
@ -5856,6 +5856,19 @@
|
|||||||
LINQ-inspired extension methods for <see cref="T:System.Collections.Generic.IEnumerable`1" />.
|
LINQ-inspired extension methods for <see cref="T:System.Collections.Generic.IEnumerable`1" />.
|
||||||
</summary>
|
</summary>
|
||||||
</member>
|
</member>
|
||||||
|
<member name="M:X10D.Linq.EnumerableExtensions.ConcatOne``1(System.Collections.Generic.IEnumerable{``0},``0)">
|
||||||
|
<summary>
|
||||||
|
Concatenates a single value to the end of a sequence.
|
||||||
|
</summary>
|
||||||
|
<param name="source">The source sequence.</param>
|
||||||
|
<param name="value">The value to concatenate to the end of the source sequence.</param>
|
||||||
|
<typeparam name="TSource">The type of the elements in <paramref name="source" />.</typeparam>
|
||||||
|
<returns>
|
||||||
|
An <see cref="T:System.Collections.Generic.IEnumerable`1" /> that contains the concatenated elements of the input sequence, and the specified
|
||||||
|
value.
|
||||||
|
</returns>
|
||||||
|
<exception cref="T:System.ArgumentNullException"><paramref name="source" /> is <see langword="null" />.</exception>
|
||||||
|
</member>
|
||||||
<member name="M:X10D.Linq.EnumerableExtensions.Except``1(System.Collections.Generic.IEnumerable{``0},``0)">
|
<member name="M:X10D.Linq.EnumerableExtensions.Except``1(System.Collections.Generic.IEnumerable{``0},``0)">
|
||||||
<summary>
|
<summary>
|
||||||
Filters a sequence of values by omitting elements that match a specified value.
|
Filters a sequence of values by omitting elements that match a specified value.
|
||||||
@ -9778,118 +9791,6 @@
|
|||||||
<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.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})">
|
|
||||||
<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>
|
|
||||||
<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 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" /> 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 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.236",
|
"version": "3.2.1-nightly.237",
|
||||||
"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