You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// <summary>Computes the bitwise-and of two vectors.</summary>
103
103
/// <param name="left">The vector to bitwise-and with <paramref name="right" />.</param>
104
104
/// <param name="right">The vector to bitwise-and with <paramref name="left" />.</param>
105
-
/// <returns>The bitwise-and of <paramref name="left" /> and <paramref name="right"/>.</returns>
105
+
/// <returns>The bitwise-and of <paramref name="left" /> and <paramref name="right"/>.</returns>
106
106
/// <exception cref="NotSupportedException">The type of <paramref name="left" /> and <paramref name="right" /> (<typeparamref name="T" />) is not supported.</exception>
/// <summary>Computes the bitwise-or of two vectors.</summary>
110
110
/// <param name="left">The vector to bitwise-or with <paramref name="right" />.</param>
111
111
/// <param name="right">The vector to bitwise-or with <paramref name="left" />.</param>
112
-
/// <returns>The bitwise-or of <paramref name="left" /> and <paramref name="right"/>.</returns>
112
+
/// <returns>The bitwise-or of <paramref name="left" /> and <paramref name="right"/>.</returns>
113
113
/// <exception cref="NotSupportedException">The type of <paramref name="left" /> and <paramref name="right" /> (<typeparamref name="T" />) is not supported.</exception>
/// <param name="left">The vector to multiply with <paramref name="right" />.</param>
521
521
/// <param name="right">The vector to multiply with <paramref name="left" />.</param>
522
522
/// <returns>The element-wise product of <paramref name="left" /> and <paramref name="right" />.</returns>
523
-
/// <exception cref="NotSupportedException">The type of <paramref name="left" /> and <paramref name="right"/> (<typeparamref name="T" />) is not supported.</exception>
523
+
/// <exception cref="NotSupportedException">The type of <paramref name="left" /> and <paramref name="right"/> (<typeparamref name="T" />) is not supported.</exception>
/// <summary>Multiplies a vector by a scalar to compute their product.</summary>
527
527
/// <param name="left">The vector to multiply with <paramref name="right" />.</param>
528
528
/// <param name="right">The scalar to multiply with <paramref name="left" />.</param>
529
529
/// <returns>The product of <paramref name="left" /> and <paramref name="right" />.</returns>
530
-
/// <exception cref="NotSupportedException">The type of <paramref name="left" /> and <paramref name="right"/> (<typeparamref name="T" />) is not supported.</exception>
530
+
/// <exception cref="NotSupportedException">The type of <paramref name="left" /> and <paramref name="right"/> (<typeparamref name="T" />) is not supported.</exception>
/// <para>On hardware that natively supports <c>FusedMultiplyAdd</c>, this may return a result that was rounded as one ternary operation.</para>
540
-
/// <para>On hardware without specialized support, this may just return (<paramref name="left"/> * <paramref name="right"/>) + <paramref name="addend"/>.</para>
540
+
/// <para>On hardware without specialized support, this may just return (<paramref name="left"/> * <paramref name="right"/>) + <paramref name="addend"/>.</para>
0 commit comments