Vector512.CreateScalar Method

Definition

Overloads

CreateScalar(UIntPtr)

Creates a new Vector512<T> instance with the first element initialized to the specified value and the remaining elements initialized to zero.

CreateScalar(UInt64)

Creates a new Vector512<T> instance with the first element initialized to the specified value and the remaining elements initialized to zero.

CreateScalar(UInt32)

Creates a new Vector512<T> instance with the first element initialized to the specified value and the remaining elements initialized to zero.

CreateScalar(UInt16)

Creates a new Vector512<T> instance with the first element initialized to the specified value and the remaining elements initialized to zero.

CreateScalar(SByte)

Creates a new Vector512<T> instance with the first element initialized to the specified value and the remaining elements initialized to zero.

CreateScalar(Single)

Creates a new Vector512<T> instance with the first element initialized to the specified value and the remaining elements initialized to zero.

CreateScalar(Int64)

Creates a new Vector512<T> instance with the first element initialized to the specified value and the remaining elements initialized to zero.

CreateScalar(Int32)

Creates a new Vector512<T> instance with the first element initialized to the specified value and the remaining elements initialized to zero.

CreateScalar(Int16)

Creates a new Vector512<T> instance with the first element initialized to the specified value and the remaining elements initialized to zero.

CreateScalar(Double)

Creates a new Vector512<T> instance with the first element initialized to the specified value and the remaining elements initialized to zero.

CreateScalar(Byte)

Creates a new Vector512<T> instance with the first element initialized to the specified value and the remaining elements initialized to zero.

CreateScalar(IntPtr)

Creates a new Vector512<T> instance with the first element initialized to the specified value and the remaining elements initialized to zero.

CreateScalar<T>(T)

Creates a new Vector512<T> instance with the first element initialized to the specified value and the remaining elements initialized to zero.

CreateScalar(UIntPtr)

Source:
Vector512.cs
Source:
Vector512.cs

Important

This API is not CLS-compliant.

Creates a new Vector512<T> instance with the first element initialized to the specified value and the remaining elements initialized to zero.

public:
 static System::Runtime::Intrinsics::Vector512<UIntPtr> CreateScalar(UIntPtr value);
[System.CLSCompliant(false)]
public static System.Runtime.Intrinsics.Vector512<UIntPtr> CreateScalar (UIntPtr value);
[<System.CLSCompliant(false)>]
static member CreateScalar : unativeint -> System.Runtime.Intrinsics.Vector512<unativeint>
Public Function CreateScalar (value As UIntPtr) As Vector512(Of UIntPtr)

Parameters

value
UIntPtr

unativeint

The value that element 0 will be initialized to.

Returns

Vector512<UIntPtr>

Vector512<unativeint>

A new Vector512<T> instance with the first element initialized to value and the remaining elements initialized to zero.

Attributes

Applies to

CreateScalar(UInt64)

Source:
Vector512.cs
Source:
Vector512.cs

Important

This API is not CLS-compliant.

Creates a new Vector512<T> instance with the first element initialized to the specified value and the remaining elements initialized to zero.

public:
 static System::Runtime::Intrinsics::Vector512<System::UInt64> CreateScalar(System::UInt64 value);
[System.CLSCompliant(false)]
public static System.Runtime.Intrinsics.Vector512<ulong> CreateScalar (ulong value);
[<System.CLSCompliant(false)>]
static member CreateScalar : uint64 -> System.Runtime.Intrinsics.Vector512<uint64>
Public Function CreateScalar (value As ULong) As Vector512(Of ULong)

Parameters

value
UInt64

The value that element 0 will be initialized to.

Returns

A new Vector512<T> instance with the first element initialized to value and the remaining elements initialized to zero.

Attributes

Applies to

CreateScalar(UInt32)

Source:
Vector512.cs
Source:
Vector512.cs

Important

This API is not CLS-compliant.

Creates a new Vector512<T> instance with the first element initialized to the specified value and the remaining elements initialized to zero.

public:
 static System::Runtime::Intrinsics::Vector512<System::UInt32> CreateScalar(System::UInt32 value);
[System.CLSCompliant(false)]
public static System.Runtime.Intrinsics.Vector512<uint> CreateScalar (uint value);
[<System.CLSCompliant(false)>]
static member CreateScalar : uint32 -> System.Runtime.Intrinsics.Vector512<uint32>
Public Function CreateScalar (value As UInteger) As Vector512(Of UInteger)

Parameters

value
UInt32

The value that element 0 will be initialized to.

Returns

A new Vector512<T> instance with the first element initialized to value and the remaining elements initialized to zero.

Attributes

Applies to

CreateScalar(UInt16)

Source:
Vector512.cs
Source:
Vector512.cs

Important

This API is not CLS-compliant.

Creates a new Vector512<T> instance with the first element initialized to the specified value and the remaining elements initialized to zero.

public:
 static System::Runtime::Intrinsics::Vector512<System::UInt16> CreateScalar(System::UInt16 value);
[System.CLSCompliant(false)]
public static System.Runtime.Intrinsics.Vector512<ushort> CreateScalar (ushort value);
[<System.CLSCompliant(false)>]
static member CreateScalar : uint16 -> System.Runtime.Intrinsics.Vector512<uint16>
Public Function CreateScalar (value As UShort) As Vector512(Of UShort)

Parameters

value
UInt16

The value that element 0 will be initialized to.

Returns

A new Vector512<T> instance with the first element initialized to value and the remaining elements initialized to zero.

Attributes

Applies to

CreateScalar(SByte)

Source:
Vector512.cs
Source:
Vector512.cs

Important

This API is not CLS-compliant.

Creates a new Vector512<T> instance with the first element initialized to the specified value and the remaining elements initialized to zero.

public:
 static System::Runtime::Intrinsics::Vector512<System::SByte> CreateScalar(System::SByte value);
[System.CLSCompliant(false)]
public static System.Runtime.Intrinsics.Vector512<sbyte> CreateScalar (sbyte value);
[<System.CLSCompliant(false)>]
static member CreateScalar : sbyte -> System.Runtime.Intrinsics.Vector512<sbyte>
Public Function CreateScalar (value As SByte) As Vector512(Of SByte)

Parameters

value
SByte

The value that element 0 will be initialized to.

Returns

A new Vector512<T> instance with the first element initialized to value and the remaining elements initialized to zero.

Attributes

Applies to

CreateScalar(Single)

Source:
Vector512.cs
Source:
Vector512.cs

Creates a new Vector512<T> instance with the first element initialized to the specified value and the remaining elements initialized to zero.

public:
 static System::Runtime::Intrinsics::Vector512<float> CreateScalar(float value);
public static System.Runtime.Intrinsics.Vector512<float> CreateScalar (float value);
static member CreateScalar : single -> System.Runtime.Intrinsics.Vector512<single>
Public Function CreateScalar (value As Single) As Vector512(Of Single)

Parameters

value
Single

The value that element 0 will be initialized to.

Returns

A new Vector512<T> instance with the first element initialized to value and the remaining elements initialized to zero.

Applies to

CreateScalar(Int64)

Source:
Vector512.cs
Source:
Vector512.cs

Creates a new Vector512<T> instance with the first element initialized to the specified value and the remaining elements initialized to zero.

public:
 static System::Runtime::Intrinsics::Vector512<long> CreateScalar(long value);
public static System.Runtime.Intrinsics.Vector512<long> CreateScalar (long value);
static member CreateScalar : int64 -> System.Runtime.Intrinsics.Vector512<int64>
Public Function CreateScalar (value As Long) As Vector512(Of Long)

Parameters

value
Int64

The value that element 0 will be initialized to.

Returns

A new Vector512<T> instance with the first element initialized to value and the remaining elements initialized to zero.

Applies to

CreateScalar(Int32)

Source:
Vector512.cs
Source:
Vector512.cs

Creates a new Vector512<T> instance with the first element initialized to the specified value and the remaining elements initialized to zero.

public:
 static System::Runtime::Intrinsics::Vector512<int> CreateScalar(int value);
public static System.Runtime.Intrinsics.Vector512<int> CreateScalar (int value);
static member CreateScalar : int -> System.Runtime.Intrinsics.Vector512<int>
Public Function CreateScalar (value As Integer) As Vector512(Of Integer)

Parameters

value
Int32

The value that element 0 will be initialized to.

Returns

A new Vector512<T> instance with the first element initialized to value and the remaining elements initialized to zero.

Applies to

CreateScalar(Int16)

Source:
Vector512.cs
Source:
Vector512.cs

Creates a new Vector512<T> instance with the first element initialized to the specified value and the remaining elements initialized to zero.

public:
 static System::Runtime::Intrinsics::Vector512<short> CreateScalar(short value);
public static System.Runtime.Intrinsics.Vector512<short> CreateScalar (short value);
static member CreateScalar : int16 -> System.Runtime.Intrinsics.Vector512<int16>
Public Function CreateScalar (value As Short) As Vector512(Of Short)

Parameters

value
Int16

The value that element 0 will be initialized to.

Returns

A new Vector512<T> instance with the first element initialized to value and the remaining elements initialized to zero.

Applies to

CreateScalar(Double)

Source:
Vector512.cs
Source:
Vector512.cs

Creates a new Vector512<T> instance with the first element initialized to the specified value and the remaining elements initialized to zero.

public:
 static System::Runtime::Intrinsics::Vector512<double> CreateScalar(double value);
public static System.Runtime.Intrinsics.Vector512<double> CreateScalar (double value);
static member CreateScalar : double -> System.Runtime.Intrinsics.Vector512<double>
Public Function CreateScalar (value As Double) As Vector512(Of Double)

Parameters

value
Double

The value that element 0 will be initialized to.

Returns

A new Vector512<T> instance with the first element initialized to value and the remaining elements initialized to zero.

Applies to

CreateScalar(Byte)

Source:
Vector512.cs
Source:
Vector512.cs

Creates a new Vector512<T> instance with the first element initialized to the specified value and the remaining elements initialized to zero.

public:
 static System::Runtime::Intrinsics::Vector512<System::Byte> CreateScalar(System::Byte value);
public static System.Runtime.Intrinsics.Vector512<byte> CreateScalar (byte value);
static member CreateScalar : byte -> System.Runtime.Intrinsics.Vector512<byte>
Public Function CreateScalar (value As Byte) As Vector512(Of Byte)

Parameters

value
Byte

The value that element 0 will be initialized to.

Returns

A new Vector512<T> instance with the first element initialized to value and the remaining elements initialized to zero.

Applies to

CreateScalar(IntPtr)

Source:
Vector512.cs
Source:
Vector512.cs

Creates a new Vector512<T> instance with the first element initialized to the specified value and the remaining elements initialized to zero.

public:
 static System::Runtime::Intrinsics::Vector512<IntPtr> CreateScalar(IntPtr value);
public static System.Runtime.Intrinsics.Vector512<IntPtr> CreateScalar (IntPtr value);
static member CreateScalar : nativeint -> System.Runtime.Intrinsics.Vector512<nativeint>
Public Function CreateScalar (value As IntPtr) As Vector512(Of IntPtr)

Parameters

value
IntPtr

nativeint

The value that element 0 will be initialized to.

Returns

Vector512<IntPtr>

Vector512<nativeint>

A new Vector512<T> instance with the first element initialized to value and the remaining elements initialized to zero.

Applies to

CreateScalar<T>(T)

Source:
Vector512.cs
Source:
Vector512.cs

Creates a new Vector512<T> instance with the first element initialized to the specified value and the remaining elements initialized to zero.

public:
generic <typename T>
 static System::Runtime::Intrinsics::Vector512<T> CreateScalar(T value);
public static System.Runtime.Intrinsics.Vector512<T> CreateScalar<T> (T value);
static member CreateScalar : 'T -> System.Runtime.Intrinsics.Vector512<'T>
Public Function CreateScalar(Of T) (value As T) As Vector512(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 Vector512<T> instance with the first element initialized to value and the remaining elements initialized to zero.

Exceptions

The type of value (T) is not supported.

Applies to