Vector64.CreateScalarUnsafe Method
Definition
Overloads
CreateScalarUnsafe(UInt32) |
Creates a new Vector64<T> instance with the first element initialized to the specified value and the remaining elements left uninitialized. |
CreateScalarUnsafe(UInt16) |
Creates a new Vector64<T> instance with the first element initialized to the specified value and the remaining elements left uninitialized. |
CreateScalarUnsafe(Single) |
Creates a new Vector64<T> instance with the first element initialized to the specified value and the remaining elements left uninitialized. |
CreateScalarUnsafe(SByte) |
Creates a new Vector64<T> instance with the first element initialized to the specified value and the remaining elements left uninitialized. |
CreateScalarUnsafe(Int16) |
Creates a new Vector64<T> instance with the first element initialized to the specified value and the remaining elements left uninitialized. |
CreateScalarUnsafe(Byte) |
Creates a new Vector64<T> instance with the first element initialized to the specified value and the remaining elements left uninitialized. |
CreateScalarUnsafe(Int32) |
Creates a new Vector64<T> instance with the first element initialized to the specified value and the remaining elements left uninitialized. |
CreateScalarUnsafe(UInt32)
Important
This API is not CLS-compliant.
Creates a new Vector64<T> instance with the first element initialized to the specified value and the remaining elements left uninitialized.
public:
static System::Runtime::Intrinsics::Vector64<System::UInt32> CreateScalarUnsafe(System::UInt32 value);
[System.CLSCompliant(false)]
public static System.Runtime.Intrinsics.Vector64<uint> CreateScalarUnsafe (uint value);
[<System.CLSCompliant(false)>]
static member CreateScalarUnsafe : uint32 -> System.Runtime.Intrinsics.Vector64<uint32>
Public Function CreateScalarUnsafe (value As UInteger) As Vector64(Of UInteger)
Parameters
- value
- UInt32
The value that element 0 will be initialized to.
Returns
A new Vector64<T> instance with the first element initialized to value
and the remaining elements left uninitialized.
- Attributes
Applies to
CreateScalarUnsafe(UInt16)
Important
This API is not CLS-compliant.
Creates a new Vector64<T> instance with the first element initialized to the specified value and the remaining elements left uninitialized.
public:
static System::Runtime::Intrinsics::Vector64<System::UInt16> CreateScalarUnsafe(System::UInt16 value);
[System.CLSCompliant(false)]
public static System.Runtime.Intrinsics.Vector64<ushort> CreateScalarUnsafe (ushort value);
[<System.CLSCompliant(false)>]
static member CreateScalarUnsafe : uint16 -> System.Runtime.Intrinsics.Vector64<uint16>
Public Function CreateScalarUnsafe (value As UShort) As Vector64(Of UShort)
Parameters
- value
- UInt16
The value that element 0 will be initialized to.
Returns
A new Vector64<T> instance with the first element initialized to value
and the remaining elements left uninitialized.
- Attributes
Applies to
CreateScalarUnsafe(Single)
Creates a new Vector64<T> instance with the first element initialized to the specified value and the remaining elements left uninitialized.
public:
static System::Runtime::Intrinsics::Vector64<float> CreateScalarUnsafe(float value);
public static System.Runtime.Intrinsics.Vector64<float> CreateScalarUnsafe (float value);
static member CreateScalarUnsafe : single -> System.Runtime.Intrinsics.Vector64<single>
Public Function CreateScalarUnsafe (value As Single) As Vector64(Of Single)
Parameters
- value
- Single
The value that element 0 will be initialized to.
Returns
A new Vector64<T> instance with the first element initialized to value
and the remaining elements left uninitialized.
Applies to
CreateScalarUnsafe(SByte)
Important
This API is not CLS-compliant.
Creates a new Vector64<T> instance with the first element initialized to the specified value and the remaining elements left uninitialized.
public:
static System::Runtime::Intrinsics::Vector64<System::SByte> CreateScalarUnsafe(System::SByte value);
[System.CLSCompliant(false)]
public static System.Runtime.Intrinsics.Vector64<sbyte> CreateScalarUnsafe (sbyte value);
[<System.CLSCompliant(false)>]
static member CreateScalarUnsafe : sbyte -> System.Runtime.Intrinsics.Vector64<sbyte>
Public Function CreateScalarUnsafe (value As SByte) As Vector64(Of SByte)
Parameters
- value
- SByte
The value that element 0 will be initialized to.
Returns
A new Vector64<T> instance with the first element initialized to value
and the remaining elements left uninitialized.
- Attributes
Applies to
CreateScalarUnsafe(Int16)
Creates a new Vector64<T> instance with the first element initialized to the specified value and the remaining elements left uninitialized.
public:
static System::Runtime::Intrinsics::Vector64<short> CreateScalarUnsafe(short value);
public static System.Runtime.Intrinsics.Vector64<short> CreateScalarUnsafe (short value);
static member CreateScalarUnsafe : int16 -> System.Runtime.Intrinsics.Vector64<int16>
Public Function CreateScalarUnsafe (value As Short) As Vector64(Of Short)
Parameters
- value
- Int16
The value that element 0 will be initialized to.
Returns
A new Vector64<T> instance with the first element initialized to value
and the remaining elements left uninitialized.
Applies to
CreateScalarUnsafe(Byte)
Creates a new Vector64<T> instance with the first element initialized to the specified value and the remaining elements left uninitialized.
public:
static System::Runtime::Intrinsics::Vector64<System::Byte> CreateScalarUnsafe(System::Byte value);
public static System.Runtime.Intrinsics.Vector64<byte> CreateScalarUnsafe (byte value);
static member CreateScalarUnsafe : byte -> System.Runtime.Intrinsics.Vector64<byte>
Public Function CreateScalarUnsafe (value As Byte) As Vector64(Of Byte)
Parameters
- value
- Byte
The value that element 0 will be initialized to.
Returns
A new Vector64<T> instance with the first element initialized to value
and the remaining elements left uninitialized.
Applies to
CreateScalarUnsafe(Int32)
Creates a new Vector64<T> instance with the first element initialized to the specified value and the remaining elements left uninitialized.
public:
static System::Runtime::Intrinsics::Vector64<int> CreateScalarUnsafe(int value);
public static System.Runtime.Intrinsics.Vector64<int> CreateScalarUnsafe (int value);
static member CreateScalarUnsafe : int -> System.Runtime.Intrinsics.Vector64<int>
Public Function CreateScalarUnsafe (value As Integer) As Vector64(Of Integer)
Parameters
- value
- Int32
The value that element 0 will be initialized to.
Returns
A new Vector64<T> instance with the first element initialized to value
and the remaining elements left uninitialized.