Vector64<T> Struct
Definition
generic <typename T>
where T : value classpublic value class Vector64 : IEquatable<System::Runtime::Intrinsics::Vector64<T>>
public struct Vector64<T> : IEquatable<System.Runtime.Intrinsics.Vector64<T>> where T : struct
type Vector64<'T (requires 'T : struct)> = struct
Public Structure Vector64(Of T)
Implements IEquatable(Of Vector64(Of T))
Type Parameters
- T
- Inheritance
- Implements
-
IEquatable<Vector64<T>>
Properties
Count |
Gets the number of |
Zero |
Gets a new Vector64<T> with all elements initialized to zero. |
Methods
Equals(Object) |
Determines whether the specified object is equal to the current instance. |
Equals(Vector64<T>) |
Determines whether the specified Vector64<T> is equal to the current instance. |
GetHashCode() |
Gets the hash code for the instance. |
ToString() |
Converts the current instance to an equivalent string representation. |
Extension Methods
As<T,U>(Vector64<T>) |
Reinterprets a Vector64<T> of type |
AsByte<T>(Vector64<T>) |
Reinterprets a Vector64<T> as a new Vector64 of type Byte. |
AsDouble<T>(Vector64<T>) |
Reinterprets a Vector64<T> as a new Vector64 of type Double. |
AsInt16<T>(Vector64<T>) |
Reinterprets a Vector64<T> as a new Vector64 of type Int16. |
AsInt32<T>(Vector64<T>) |
Reinterprets a Vector64<T> as a new Vector64 of type Int32. |
AsInt64<T>(Vector64<T>) |
Reinterprets a Vector64<T> as a new Vector64 of type Int64. |
AsSByte<T>(Vector64<T>) |
Reinterprets a Vector64<T> as a new Vector64 of type SByte. |
AsSingle<T>(Vector64<T>) |
Reinterprets a Vector64<T> as a new Vector64 of type Single. |
AsUInt16<T>(Vector64<T>) |
Reinterprets a Vector64<T> as a new Vector64 of type UInt16. |
AsUInt32<T>(Vector64<T>) |
Reinterprets a Vector64<T> as a new Vector64 of type UInt32. |
AsUInt64<T>(Vector64<T>) |
Reinterprets a Vector64<T> as a new Vector64 of type UInt64. |
GetElement<T>(Vector64<T>, Int32) |
Gets the element at the specified index. |
ToScalar<T>(Vector64<T>) |
Converts the given vector to a scalar containing the value of the first element. |
ToVector128<T>(Vector64<T>) |
Converts the given vector to a new Vector128<T> with the lower 64-bits set to the value of the given vector and the upper 64-bits initialized to zero. |
ToVector128Unsafe<T>(Vector64<T>) |
Converts the given vector to a new Vector128<T> with the lower 64-bits set to the value of the given vector and the upper 64-bits left uninitialized. |
WithElement<T>(Vector64<T>, Int32, T) |
Creates a new Vector64<T> with the element at the specified index set to the specified value and the remaining elements set to the same value as that in the given vector. |