Share via


Vector512.CreateScalarUnsafe 方法

定义

重载

CreateScalarUnsafe(UIntPtr)

创建新的 Vector512<T> 实例,其中第一个元素已初始化为指定值,而其余元素未初始化。

CreateScalarUnsafe(UInt64)

创建新的 Vector512<T> 实例,其中第一个元素已初始化为指定值,而其余元素未初始化。

CreateScalarUnsafe(UInt32)

创建新的 Vector512<T> 实例,其中第一个元素已初始化为指定值,而其余元素未初始化。

CreateScalarUnsafe(Single)

创建新的 Vector512<T> 实例,其中第一个元素已初始化为指定值,而其余元素未初始化。

CreateScalarUnsafe(SByte)

创建新的 Vector512<T> 实例,其中第一个元素已初始化为指定值,而其余元素未初始化。

CreateScalarUnsafe(UInt16)

创建新的 Vector512<T> 实例,其中第一个元素已初始化为指定值,而其余元素未初始化。

CreateScalarUnsafe(Int64)

创建新的 Vector512<T> 实例,其中第一个元素已初始化为指定值,而其余元素未初始化。

CreateScalarUnsafe(Int32)

创建新的 Vector512<T> 实例,其中第一个元素已初始化为指定值,而其余元素未初始化。

CreateScalarUnsafe(Int16)

创建新的 Vector512<T> 实例,其中第一个元素已初始化为指定值,而其余元素未初始化。

CreateScalarUnsafe(Double)

创建新的 Vector512<T> 实例,其中第一个元素已初始化为指定值,而其余元素未初始化。

CreateScalarUnsafe(Byte)

创建新的 Vector512<T> 实例,其中第一个元素已初始化为指定值,而其余元素未初始化。

CreateScalarUnsafe(IntPtr)

创建新的 Vector512<T> 实例,其中第一个元素已初始化为指定值,而其余元素未初始化。

CreateScalarUnsafe<T>(T)

创建新的 Vector512<T> 实例,其中第一个元素已初始化为指定值,而其余元素未初始化。

CreateScalarUnsafe(UIntPtr)

Source:
Vector512.cs
Source:
Vector512.cs

重要

此 API 不符合 CLS。

创建新的 Vector512<T> 实例,其中第一个元素已初始化为指定值,而其余元素未初始化。

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

参数

value
UIntPtr

unativeint

元素 0 的初始化目标值。

返回

Vector512<UIntPtr>

Vector512<unativeint>

一个新的 Vector512<T> 实例,其中第一个元素已初始化为 value,而其余元素未初始化。

属性

适用于

CreateScalarUnsafe(UInt64)

Source:
Vector512.cs
Source:
Vector512.cs

重要

此 API 不符合 CLS。

创建新的 Vector512<T> 实例,其中第一个元素已初始化为指定值,而其余元素未初始化。

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

参数

value
UInt64

元素 0 的初始化目标值。

返回

一个新的 Vector512<T> 实例,其中第一个元素已初始化为 value,而其余元素未初始化。

属性

适用于

CreateScalarUnsafe(UInt32)

Source:
Vector512.cs
Source:
Vector512.cs

重要

此 API 不符合 CLS。

创建新的 Vector512<T> 实例,其中第一个元素已初始化为指定值,而其余元素未初始化。

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

参数

value
UInt32

元素 0 的初始化目标值。

返回

一个新的 Vector512<T> 实例,其中第一个元素已初始化为 value,而其余元素未初始化。

属性

适用于

CreateScalarUnsafe(Single)

Source:
Vector512.cs
Source:
Vector512.cs

创建新的 Vector512<T> 实例,其中第一个元素已初始化为指定值,而其余元素未初始化。

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

参数

value
Single

元素 0 的初始化目标值。

返回

一个新的 Vector512<T> 实例,其中第一个元素已初始化为 value,而其余元素未初始化。

适用于

CreateScalarUnsafe(SByte)

Source:
Vector512.cs
Source:
Vector512.cs

重要

此 API 不符合 CLS。

创建新的 Vector512<T> 实例,其中第一个元素已初始化为指定值,而其余元素未初始化。

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

参数

value
SByte

元素 0 的初始化目标值。

返回

一个新的 Vector512<T> 实例,其中第一个元素已初始化为 value,而其余元素未初始化。

属性

适用于

CreateScalarUnsafe(UInt16)

Source:
Vector512.cs
Source:
Vector512.cs

重要

此 API 不符合 CLS。

创建新的 Vector512<T> 实例,其中第一个元素已初始化为指定值,而其余元素未初始化。

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

参数

value
UInt16

元素 0 的初始化目标值。

返回

一个新的 Vector512<T> 实例,其中第一个元素已初始化为 value,而其余元素未初始化。

属性

适用于

CreateScalarUnsafe(Int64)

Source:
Vector512.cs
Source:
Vector512.cs

创建新的 Vector512<T> 实例,其中第一个元素已初始化为指定值,而其余元素未初始化。

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

参数

value
Int64

元素 0 的初始化目标值。

返回

一个新的 Vector512<T> 实例,其中第一个元素已初始化为 value,而其余元素未初始化。

适用于

CreateScalarUnsafe(Int32)

Source:
Vector512.cs
Source:
Vector512.cs

创建新的 Vector512<T> 实例,其中第一个元素已初始化为指定值,而其余元素未初始化。

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

参数

value
Int32

元素 0 的初始化目标值。

返回

一个新的 Vector512<T> 实例,其中第一个元素已初始化为 value,而其余元素未初始化。

适用于

CreateScalarUnsafe(Int16)

Source:
Vector512.cs
Source:
Vector512.cs

创建新的 Vector512<T> 实例,其中第一个元素已初始化为指定值,而其余元素未初始化。

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

参数

value
Int16

元素 0 的初始化目标值。

返回

一个新的 Vector512<T> 实例,其中第一个元素已初始化为 value,而其余元素未初始化。

适用于

CreateScalarUnsafe(Double)

Source:
Vector512.cs
Source:
Vector512.cs

创建新的 Vector512<T> 实例,其中第一个元素已初始化为指定值,而其余元素未初始化。

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

参数

value
Double

元素 0 的初始化目标值。

返回

一个新的 Vector512<T> 实例,其中第一个元素已初始化为 value,而其余元素未初始化。

适用于

CreateScalarUnsafe(Byte)

Source:
Vector512.cs
Source:
Vector512.cs

创建新的 Vector512<T> 实例,其中第一个元素已初始化为指定值,而其余元素未初始化。

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

参数

value
Byte

元素 0 的初始化目标值。

返回

一个新的 Vector512<T> 实例,其中第一个元素已初始化为 value,而其余元素未初始化。

适用于

CreateScalarUnsafe(IntPtr)

Source:
Vector512.cs
Source:
Vector512.cs

创建新的 Vector512<T> 实例,其中第一个元素已初始化为指定值,而其余元素未初始化。

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

参数

value
IntPtr

nativeint

元素 0 的初始化目标值。

返回

Vector512<IntPtr>

Vector512<nativeint>

一个新的 Vector512<T> 实例,其中第一个元素已初始化为 value,而其余元素未初始化。

适用于

CreateScalarUnsafe<T>(T)

Source:
Vector512.cs
Source:
Vector512.cs

创建新的 Vector512<T> 实例,其中第一个元素已初始化为指定值,而其余元素未初始化。

public:
generic <typename T>
 static System::Runtime::Intrinsics::Vector512<T> CreateScalarUnsafe(T value);
public static System.Runtime.Intrinsics.Vector512<T> CreateScalarUnsafe<T> (T value);
static member CreateScalarUnsafe : 'T -> System.Runtime.Intrinsics.Vector512<'T>
Public Function CreateScalarUnsafe(Of T) (value As T) As Vector512(Of T)

类型参数

T

向量中元素的类型。

参数

value
T

元素 0 的初始化目标值。

返回

一个新的 Vector512<T> 实例,其中第一个元素已初始化为 value,而其余元素未初始化。

例外

不支持 value 类型 (T)。

适用于