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>Reinterprets a <see cref="Vector128{T}" /> as a new <see cref="Vector128{U}" />.</summary>
114
+
/// <summary>Reinterprets a <see cref="Vector128{TFrom}" /> as a new <see cref="Vector128{TTo}" />.</summary>
115
115
/// <typeparam name="TFrom">The type of the input vector.</typeparam>
116
116
/// <typeparam name="TTo">The type of the vector <paramref name="vector" /> should be reinterpreted as.</typeparam>
117
117
/// <param name="vector">The vector to reinterpret.</param>
118
-
/// <returns><paramref name="vector" /> reinterpreted as a new <see cref="Vector128{U}" />.</returns>
118
+
/// <returns><paramref name="vector" /> reinterpreted as a new <see cref="Vector128{TTo}" />.</returns>
119
119
/// <exception cref="NotSupportedException">The type of <paramref name="vector" /> (<typeparamref name="TFrom" />) or the type of the target (<typeparamref name="TTo" />) is not supported.</exception>
/// <summary>Reinterprets a <see cref="Vector256{T}" /> as a new <see cref="Vector256{U}" />.</summary>
115
+
/// <summary>Reinterprets a <see cref="Vector256{TFrom}" /> as a new <see cref="Vector256{TTo}" />.</summary>
116
116
/// <typeparam name="TFrom">The type of the input vector.</typeparam>
117
117
/// <typeparam name="TTo">The type of the vector <paramref name="vector" /> should be reinterpreted as.</typeparam>
118
118
/// <param name="vector">The vector to reinterpret.</param>
119
-
/// <returns><paramref name="vector" /> reinterpreted as a new <see cref="Vector256{U}" />.</returns>
119
+
/// <returns><paramref name="vector" /> reinterpreted as a new <see cref="Vector256{TTo}" />.</returns>
120
120
/// <exception cref="NotSupportedException">The type of <paramref name="vector" /> (<typeparamref name="TFrom" />) or the type of the target (<typeparamref name="TTo" />) is not supported.</exception>
/// <summary>Reinterprets a <see cref="Vector64{T}" /> as a new <see cref="Vector64{U}" />.</summary>
91
+
/// <summary>Reinterprets a <see cref="Vector64{TFrom}" /> as a new <see cref="Vector64{TTo}" />.</summary>
92
92
/// <typeparam name="TFrom">The type of the input vector.</typeparam>
93
93
/// <typeparam name="TTo">The type of the vector <paramref name="vector" /> should be reinterpreted as.</typeparam>
94
94
/// <param name="vector">The vector to reinterpret.</param>
95
-
/// <returns><paramref name="vector" /> reinterpreted as a new <see cref="Vector64{U}" />.</returns>
95
+
/// <returns><paramref name="vector" /> reinterpreted as a new <see cref="Vector64{TTo}" />.</returns>
96
96
/// <exception cref="NotSupportedException">The type of <paramref name="vector" /> (<typeparamref name="TFrom" />) or the type of the target (<typeparamref name="TTo" />) is not supported.</exception>
0 commit comments