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>Narrows two vector of <see cref="double"/> instances into one vector of <see cref="float" /> using a saturating conversion.</summary>
2737
+
/// <summary>Narrows two vector of <see cref="double"/> instances into one vector of <see cref="float" /> using a saturating conversion.</summary>
2738
2738
/// <param name="lower">The vector that will be narrowed to the lower half of the result vector.</param>
2739
2739
/// <param name="upper">The vector that will be narrowed to the upper half of the result vector.</param>
2740
2740
/// <returns>A vector of <see cref="float" /> containing elements narrowed with saturation from <paramref name="lower" /> and <paramref name="upper" />.</returns>
/// <summary>Narrows two vector of <see cref="short"/> instances into one vector of <see cref="sbyte" /> using a saturating conversion.</summary>
2746
+
/// <summary>Narrows two vector of <see cref="short"/> instances into one vector of <see cref="sbyte" /> using a saturating conversion.</summary>
2747
2747
/// <param name="lower">The vector that will be narrowed to the lower half of the result vector.</param>
2748
2748
/// <param name="upper">The vector that will be narrowed to the upper half of the result vector.</param>
2749
2749
/// <returns>A vector of <see cref="sbyte" /> containing elements narrowed with saturation from <paramref name="lower" /> and <paramref name="upper" />.</returns>
@@ -2753,7 +2753,7 @@ public static Vector128<float> NarrowWithSaturation(Vector128<double> lower, Vec
/// <summary>Narrows two vector of <see cref="int"/> instances into one vector of <see cref="short" /> using a saturating conversion.</summary>
2756
+
/// <summary>Narrows two vector of <see cref="int"/> instances into one vector of <see cref="short" /> using a saturating conversion.</summary>
2757
2757
/// <param name="lower">The vector that will be narrowed to the lower half of the result vector.</param>
2758
2758
/// <param name="upper">The vector that will be narrowed to the upper half of the result vector.</param>
2759
2759
/// <returns>A vector of <see cref="short" /> containing elements narrowed with saturation from <paramref name="lower" /> and <paramref name="upper" />.</returns>
@@ -2762,7 +2762,7 @@ public static Vector128<sbyte> NarrowWithSaturation(Vector128<short> lower, Vect
/// <summary>Narrows two vector of <see cref="long"/> instances into one vector of <see cref="int" /> using a saturating conversion.</summary>
2765
+
/// <summary>Narrows two vector of <see cref="long"/> instances into one vector of <see cref="int" /> using a saturating conversion.</summary>
2766
2766
/// <param name="lower">The vector that will be narrowed to the lower half of the result vector.</param>
2767
2767
/// <param name="upper">The vector that will be narrowed to the upper half of the result vector.</param>
2768
2768
/// <returns>A vector of <see cref="int" /> containing elements narrowed with saturation from <paramref name="lower" /> and <paramref name="upper" />.</returns>
@@ -2771,7 +2771,7 @@ public static Vector128<short> NarrowWithSaturation(Vector128<int> lower, Vector
/// <summary>Narrows two vector of <see cref="byte"/> instances into one vector of <see cref="ushort" /> using a saturating conversion.</summary>
2774
+
/// <summary>Narrows two vector of <see cref="ushort" /> instances into one vector of <see cref="byte" /> using a saturating conversion.</summary>
2775
2775
/// <param name="lower">The vector that will be narrowed to the lower half of the result vector.</param>
2776
2776
/// <param name="upper">The vector that will be narrowed to the upper half of the result vector.</param>
2777
2777
/// <returns>A vector of <see cref="byte" /> containing elements narrowed with saturation from <paramref name="lower" /> and <paramref name="upper" />.</returns>
@@ -2781,7 +2781,7 @@ public static Vector128<int> NarrowWithSaturation(Vector128<long> lower, Vector1
/// <summary>Narrows two vector of <see cref="uint"/> instances into one vector of <see cref="ushort" /> using a saturating conversion.</summary>
2784
+
/// <summary>Narrows two vector of <see cref="uint"/> instances into one vector of <see cref="ushort" /> using a saturating conversion.</summary>
2785
2785
/// <param name="lower">The vector that will be narrowed to the lower half of the result vector.</param>
2786
2786
/// <param name="upper">The vector that will be narrowed to the upper half of the result vector.</param>
2787
2787
/// <returns>A vector of <see cref="ushort" /> containing elements narrowed with saturation from <paramref name="lower" /> and <paramref name="upper" />.</returns>
@@ -2791,7 +2791,7 @@ public static Vector128<byte> NarrowWithSaturation(Vector128<ushort> lower, Vect
/// <summary>Narrows two vector of <see cref="ulong"/> instances into one vector of <see cref="uint" /> using a saturating conversion.</summary>
2794
+
/// <summary>Narrows two vector of <see cref="ulong"/> instances into one vector of <see cref="uint" /> using a saturating conversion.</summary>
2795
2795
/// <param name="lower">The vector that will be narrowed to the lower half of the result vector.</param>
2796
2796
/// <param name="upper">The vector that will be narrowed to the upper half of the result vector.</param>
2797
2797
/// <returns>A vector of <see cref="uint" /> containing elements narrowed with saturation from <paramref name="lower" /> and <paramref name="upper" />.</returns>
0 commit comments