Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
Original file line number Diff line number Diff line change
Expand Up @@ -3162,7 +3162,7 @@ public static Vector128<T> WithLower<T>(this Vector128<T> vector, Vector64<T> va
}
}

/// <summary>Creates a new <see cref="Vector128{T}" /> with the upper 64-bits set to the specified value and the upper 64-bits set to the same value as that in the given vector.</summary>
/// <summary>Creates a new <see cref="Vector128{T}" /> with the upper 64-bits set to the specified value and the lower 64-bits set to the same value as that in the given vector.</summary>
/// <typeparam name="T">The type of the elements in the vector.</typeparam>
/// <param name="vector">The vector to get the lower 64-bits from.</param>
/// <param name="value">The value of the upper 64-bits as a <see cref="Vector64{T}" />.</param>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3130,7 +3130,7 @@ public static Vector256<T> WithLower<T>(this Vector256<T> vector, Vector128<T> v
}
}

/// <summary>Creates a new <see cref="Vector256{T}" /> with the upper 128-bits set to the specified value and the upper 128-bits set to the same value as that in the given vector.</summary>
/// <summary>Creates a new <see cref="Vector256{T}" /> with the upper 128-bits set to the specified value and the lower 128-bits set to the same value as that in the given vector.</summary>
/// <typeparam name="T">The type of the input vector.</typeparam>
/// <param name="vector">The vector to get the lower 128-bits from.</param>
/// <param name="value">The value of the upper 128-bits as a <see cref="Vector128{T}" />.</param>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3104,7 +3104,7 @@ public static Vector512<T> WithLower<T>(this Vector512<T> vector, Vector256<T> v
return result;
}

/// <summary>Creates a new <see cref="Vector512{T}" /> with the upper 256-bits set to the specified value and the upper 256-bits set to the same value as that in the given vector.</summary>
/// <summary>Creates a new <see cref="Vector512{T}" /> with the upper 256-bits set to the specified value and the lower 256-bits set to the same value as that in the given vector.</summary>
/// <typeparam name="T">The type of the input vector.</typeparam>
/// <param name="vector">The vector to get the lower 256-bits from.</param>
/// <param name="value">The value of the upper 256-bits as a <see cref="Vector256{T}" />.</param>
Expand Down