Vector64.CreateScalarUnsafe Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
CreateScalarUnsafe(Single) |
Creates a new Vector64<T> instance with the first element initialized to the specified value and the remaining elements left uninitialized. |
CreateScalarUnsafe(UInt64) |
Creates a new Vector64<T> instance with the first element initialized to the specified value and the remaining elements left uninitialized. |
CreateScalarUnsafe(UInt32) |
Creates a new Vector64<T> instance with the first element initialized to the specified value and the remaining elements left uninitialized. |
CreateScalarUnsafe(UIntPtr) |
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(UInt16) |
Creates a new Vector64<T> instance with the first element initialized to the specified value and the remaining elements left uninitialized. |
CreateScalarUnsafe(Int64) |
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(Int16) |
Creates a new Vector64<T> instance with the first element initialized to the specified value and the remaining elements left uninitialized. |
CreateScalarUnsafe(Double) |
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(IntPtr) |
Creates a new Vector64<T> instance with the first element initialized to the specified value and the remaining elements left uninitialized. |
CreateScalarUnsafe<T>(T) |
Creates a new Vector64<T> instance with the first element initialized to the specified value and the remaining elements left uninitialized. |
CreateScalarUnsafe(Single)
- Source:
- Vector64.cs
- Source:
- Vector64.cs
- Source:
- Vector64.cs
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(UInt64)
- Source:
- Vector64.cs
- Source:
- Vector64.cs
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::UInt64> CreateScalarUnsafe(System::UInt64 value);
[System.CLSCompliant(false)]
public static System.Runtime.Intrinsics.Vector64<ulong> CreateScalarUnsafe (ulong value);
[<System.CLSCompliant(false)>]
static member CreateScalarUnsafe : uint64 -> System.Runtime.Intrinsics.Vector64<uint64>
Public Function CreateScalarUnsafe (value As ULong) As Vector64(Of ULong)
Parameters
- value
- UInt64
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(UInt32)
- Source:
- Vector64.cs
- Source:
- Vector64.cs
- Source:
- Vector64.cs
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(UIntPtr)
- Source:
- Vector64.cs
- Source:
- Vector64.cs
- Source:
- Vector64.cs
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<UIntPtr> CreateScalarUnsafe(UIntPtr value);
[System.CLSCompliant(false)]
public static System.Runtime.Intrinsics.Vector64<UIntPtr> CreateScalarUnsafe (UIntPtr value);
[<System.CLSCompliant(false)>]
static member CreateScalarUnsafe : unativeint -> System.Runtime.Intrinsics.Vector64<unativeint>
Public Function CreateScalarUnsafe (value As UIntPtr) As Vector64(Of UIntPtr)
Parameters
- value
-
UIntPtr
unativeint
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(SByte)
- Source:
- Vector64.cs
- Source:
- Vector64.cs
- Source:
- Vector64.cs
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(UInt16)
- Source:
- Vector64.cs
- Source:
- Vector64.cs
- Source:
- Vector64.cs
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(Int64)
- Source:
- Vector64.cs
- Source:
- Vector64.cs
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<long> CreateScalarUnsafe(long value);
public static System.Runtime.Intrinsics.Vector64<long> CreateScalarUnsafe (long value);
static member CreateScalarUnsafe : int64 -> System.Runtime.Intrinsics.Vector64<int64>
Public Function CreateScalarUnsafe (value As Long) As Vector64(Of Long)
Parameters
- value
- Int64
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)
- Source:
- Vector64.cs
- Source:
- Vector64.cs
- Source:
- Vector64.cs
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.
Applies to
CreateScalarUnsafe(Int16)
- Source:
- Vector64.cs
- Source:
- Vector64.cs
- Source:
- Vector64.cs
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(Double)
- Source:
- Vector64.cs
- Source:
- Vector64.cs
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<double> CreateScalarUnsafe(double value);
public static System.Runtime.Intrinsics.Vector64<double> CreateScalarUnsafe (double value);
static member CreateScalarUnsafe : double -> System.Runtime.Intrinsics.Vector64<double>
Public Function CreateScalarUnsafe (value As Double) As Vector64(Of Double)
Parameters
- value
- Double
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)
- Source:
- Vector64.cs
- Source:
- Vector64.cs
- Source:
- Vector64.cs
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(IntPtr)
- Source:
- Vector64.cs
- Source:
- Vector64.cs
- Source:
- Vector64.cs
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<IntPtr> CreateScalarUnsafe(IntPtr value);
public static System.Runtime.Intrinsics.Vector64<IntPtr> CreateScalarUnsafe (IntPtr value);
static member CreateScalarUnsafe : nativeint -> System.Runtime.Intrinsics.Vector64<nativeint>
Public Function CreateScalarUnsafe (value As IntPtr) As Vector64(Of IntPtr)
Parameters
- value
-
IntPtr
nativeint
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<T>(T)
- Source:
- Vector64.cs
- Source:
- Vector64.cs
Creates a new Vector64<T> instance with the first element initialized to the specified value and the remaining elements left uninitialized.
public:
generic <typename T>
static System::Runtime::Intrinsics::Vector64<T> CreateScalarUnsafe(T value);
public static System.Runtime.Intrinsics.Vector64<T> CreateScalarUnsafe<T> (T value);
static member CreateScalarUnsafe : 'T -> System.Runtime.Intrinsics.Vector64<'T>
Public Function CreateScalarUnsafe(Of T) (value As T) As Vector64(Of T)
Type Parameters
- T
The type of the elements in the vector.
Parameters
- value
- T
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.
Exceptions
The type of value
(T
) is not supported.