Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions xml/System.Numerics/Vector.xml
Original file line number Diff line number Diff line change
Expand Up @@ -1870,7 +1870,7 @@ Note that this method returns a <xref:System.Single> instead of an integral type
<param name="right">The second source vector.</param>
<summary>Creates a new single-precision vector with elements selected between two specified single-precision source vectors based on an integral mask vector.</summary>
<returns>The new vector with elements selected based on the mask.</returns>
<remarks>To be added.</remarks>
<remarks>This is equivalent to <paramref name="condition" /> <c>?</c> <paramref name="left" /> <c>:</c> <paramref name="right" /> on a per-bit basis.</remarks>
</Docs>
</Member>
<Member MemberName="ConditionalSelect">
Expand Down Expand Up @@ -1915,7 +1915,7 @@ Note that this method returns a <xref:System.Single> instead of an integral type
<param name="right">The second source vector.</param>
<summary>Creates a new double-precision vector with elements selected between two specified double-precision source vectors based on an integral mask vector.</summary>
<returns>The new vector with elements selected based on the mask.</returns>
<remarks>To be added.</remarks>
<remarks>This is equivalent to <paramref name="condition" /> <c>?</c> <paramref name="left" /> <c>:</c> <paramref name="right" /> on a per-bit basis.</remarks>
</Docs>
</Member>
<Member MemberName="ConditionalSelect&lt;T&gt;">
Expand Down Expand Up @@ -1996,7 +1996,7 @@ Note that this method returns a <xref:System.Single> instead of an integral type
<param name="right">The second source vector.</param>
<summary>Creates a new vector of a specified type with elements selected between two specified source vectors of the same type based on an integral mask vector.</summary>
<returns>The new vector with elements selected based on the mask.</returns>
<remarks>To be added.</remarks>
<remarks>This is equivalent to <paramref name="condition" /> <c>?</c> <paramref name="left" /> <c>:</c> <paramref name="right" /> on a per-bit basis.</remarks>
</Docs>
</Member>
<Member MemberName="ConvertToDouble">
Expand Down
2 changes: 1 addition & 1 deletion xml/System.Runtime.Intrinsics/Vector128.xml
Original file line number Diff line number Diff line change
Expand Up @@ -1728,7 +1728,7 @@
<param name="right">The vector that is selected when the corresponding bit in <paramref name="condition" /> is zero.</param>
<summary>Conditionally selects a value from two vectors on a bitwise basis.</summary>
<returns>A vector whose bits come from <paramref name="left" /> or <paramref name="right" /> based on the value of <paramref name="condition" />.</returns>
<remarks>To be added.</remarks>
<remarks>This is equivalent to <paramref name="condition" /> <c>?</c> <paramref name="left" /> <c>:</c> <paramref name="right" /> on a per-bit basis.</remarks>
<exception cref="T:System.NotSupportedException">The type of <paramref name="condition" />, <paramref name="left" />, and <paramref name="right" /> (<typeparamref name="T" />) is not supported.</exception>
</Docs>
</Member>
Expand Down
2 changes: 1 addition & 1 deletion xml/System.Runtime.Intrinsics/Vector256.xml
Original file line number Diff line number Diff line change
Expand Up @@ -1497,7 +1497,7 @@
<param name="right">The vector that is selected when the corresponding bit in <paramref name="condition" /> is zero.</param>
<summary>Conditionally selects a value from two vectors on a bitwise basis.</summary>
<returns>A vector whose bits come from <paramref name="left" /> or <paramref name="right" /> based on the value of <paramref name="condition" />.</returns>
<remarks>To be added.</remarks>
<remarks>This is equivalent to <paramref name="condition" /> <c>?</c> <paramref name="left" /> <c>:</c> <paramref name="right" /> on a per-bit basis.</remarks>
<exception cref="T:System.NotSupportedException">The type of <paramref name="condition" />, <paramref name="left" />, and <paramref name="right" /> (<typeparamref name="T" />) is not supported.</exception>
</Docs>
</Member>
Expand Down
2 changes: 1 addition & 1 deletion xml/System.Runtime.Intrinsics/Vector512.xml
Original file line number Diff line number Diff line change
Expand Up @@ -1228,7 +1228,7 @@
<param name="right">The vector that is selected when the corresponding bit in <paramref name="condition" /> is zero.</param>
<summary>Conditionally selects a value from two vectors on a bitwise basis.</summary>
<returns>A vector whose bits come from <paramref name="left" /> or <paramref name="right" /> based on the value of <paramref name="condition" />.</returns>
<remarks>To be added.</remarks>
<remarks>This is equivalent to <paramref name="condition" /> <c>?</c> <paramref name="left" /> <c>:</c> <paramref name="right" /> on a per-bit basis.</remarks>
<exception cref="T:System.NotSupportedException">The type of <paramref name="condition" />, <paramref name="left" />, and <paramref name="right" /> (<typeparamref name="T" />) is not supported.</exception>
</Docs>
</Member>
Expand Down
2 changes: 1 addition & 1 deletion xml/System.Runtime.Intrinsics/Vector64.xml
Original file line number Diff line number Diff line change
Expand Up @@ -1391,7 +1391,7 @@
<param name="right">The vector that is selected when the corresponding bit in <paramref name="condition" /> is zero.</param>
<summary>Conditionally selects a value from two vectors on a bitwise basis.</summary>
<returns>A vector whose bits come from <paramref name="left" /> or <paramref name="right" /> based on the value of <paramref name="condition" />.</returns>
<remarks>To be added.</remarks>
<remarks>This is equivalent to <paramref name="condition" /> <c>?</c> <paramref name="left" /> <c>:</c> <paramref name="right" /> on a per-bit basis.</remarks>
<exception cref="T:System.NotSupportedException">The type of <paramref name="condition" />, <paramref name="left" />, and <paramref name="right" /> (<typeparamref name="T" />) is not supported.</exception>
</Docs>
</Member>
Expand Down