Vector.ShiftLeft 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
오버로드
ShiftLeft(Vector<UInt32>, Int32) |
지정된 양만큼 왼쪽에 있는 벡터의 각 요소를 이동합니다. |
ShiftLeft(Vector<UIntPtr>, Int32) |
지정된 양만큼 왼쪽에 있는 벡터의 각 요소를 이동합니다. |
ShiftLeft(Vector<UInt16>, Int32) |
지정된 양만큼 왼쪽에 있는 벡터의 각 요소를 이동합니다. |
ShiftLeft(Vector<SByte>, Int32) |
지정된 양만큼 왼쪽에 있는 벡터의 각 요소를 이동합니다. |
ShiftLeft(Vector<UInt64>, Int32) |
지정된 양만큼 왼쪽에 있는 벡터의 각 요소를 이동합니다. |
ShiftLeft(Vector<Int64>, Int32) |
지정된 양만큼 왼쪽에 있는 벡터의 각 요소를 이동합니다. |
ShiftLeft(Vector<Int32>, Int32) |
지정된 양만큼 왼쪽에 있는 벡터의 각 요소를 이동합니다. |
ShiftLeft(Vector<Int16>, Int32) |
지정된 양만큼 왼쪽에 있는 벡터의 각 요소를 이동합니다. |
ShiftLeft(Vector<IntPtr>, Int32) |
지정된 양만큼 왼쪽에 있는 벡터의 각 요소를 이동합니다. |
ShiftLeft(Vector<Byte>, Int32) |
지정된 양만큼 왼쪽에 있는 벡터의 각 요소를 이동합니다. |
ShiftLeft(Vector<UInt32>, Int32)
- Source:
- Vector.cs
- Source:
- Vector.cs
- Source:
- Vector.cs
중요
이 API는 CLS 규격이 아닙니다.
지정된 양만큼 왼쪽에 있는 벡터의 각 요소를 이동합니다.
public:
static System::Numerics::Vector<System::UInt32> ShiftLeft(System::Numerics::Vector<System::UInt32> value, int shiftCount);
[System.CLSCompliant(false)]
public static System.Numerics.Vector<uint> ShiftLeft (System.Numerics.Vector<uint> value, int shiftCount);
[<System.CLSCompliant(false)>]
static member ShiftLeft : System.Numerics.Vector<uint32> * int -> System.Numerics.Vector<uint32>
Public Function ShiftLeft (value As Vector(Of UInteger), shiftCount As Integer) As Vector(Of UInteger)
매개 변수
- shiftCount
- Int32
각 요소를 이동할 비트 수입니다.
반환
요소가 로 왼쪽으로 shiftCount
이동한 벡터입니다.
- 특성
적용 대상
ShiftLeft(Vector<UIntPtr>, Int32)
- Source:
- Vector.cs
- Source:
- Vector.cs
- Source:
- Vector.cs
중요
이 API는 CLS 규격이 아닙니다.
지정된 양만큼 왼쪽에 있는 벡터의 각 요소를 이동합니다.
public:
static System::Numerics::Vector<UIntPtr> ShiftLeft(System::Numerics::Vector<UIntPtr> value, int shiftCount);
[System.CLSCompliant(false)]
public static System.Numerics.Vector<UIntPtr> ShiftLeft (System.Numerics.Vector<UIntPtr> value, int shiftCount);
[<System.CLSCompliant(false)>]
static member ShiftLeft : System.Numerics.Vector<unativeint> * int -> System.Numerics.Vector<unativeint>
Public Function ShiftLeft (value As Vector(Of UIntPtr), shiftCount As Integer) As Vector(Of UIntPtr)
매개 변수
- shiftCount
- Int32
각 요소를 이동할 비트 수입니다.
반환
요소가 로 왼쪽으로 shiftCount
이동한 벡터입니다.
- 특성
적용 대상
ShiftLeft(Vector<UInt16>, Int32)
- Source:
- Vector.cs
- Source:
- Vector.cs
- Source:
- Vector.cs
중요
이 API는 CLS 규격이 아닙니다.
지정된 양만큼 왼쪽에 있는 벡터의 각 요소를 이동합니다.
public:
static System::Numerics::Vector<System::UInt16> ShiftLeft(System::Numerics::Vector<System::UInt16> value, int shiftCount);
[System.CLSCompliant(false)]
public static System.Numerics.Vector<ushort> ShiftLeft (System.Numerics.Vector<ushort> value, int shiftCount);
[<System.CLSCompliant(false)>]
static member ShiftLeft : System.Numerics.Vector<uint16> * int -> System.Numerics.Vector<uint16>
Public Function ShiftLeft (value As Vector(Of UShort), shiftCount As Integer) As Vector(Of UShort)
매개 변수
- shiftCount
- Int32
각 요소를 이동할 비트 수입니다.
반환
요소가 로 왼쪽으로 shiftCount
이동한 벡터입니다.
- 특성
적용 대상
ShiftLeft(Vector<SByte>, Int32)
- Source:
- Vector.cs
- Source:
- Vector.cs
- Source:
- Vector.cs
중요
이 API는 CLS 규격이 아닙니다.
지정된 양만큼 왼쪽에 있는 벡터의 각 요소를 이동합니다.
public:
static System::Numerics::Vector<System::SByte> ShiftLeft(System::Numerics::Vector<System::SByte> value, int shiftCount);
[System.CLSCompliant(false)]
public static System.Numerics.Vector<sbyte> ShiftLeft (System.Numerics.Vector<sbyte> value, int shiftCount);
[<System.CLSCompliant(false)>]
static member ShiftLeft : System.Numerics.Vector<sbyte> * int -> System.Numerics.Vector<sbyte>
Public Function ShiftLeft (value As Vector(Of SByte), shiftCount As Integer) As Vector(Of SByte)
매개 변수
- shiftCount
- Int32
각 요소를 이동할 비트 수입니다.
반환
요소가 로 왼쪽으로 shiftCount
이동한 벡터입니다.
- 특성
적용 대상
ShiftLeft(Vector<UInt64>, Int32)
- Source:
- Vector.cs
- Source:
- Vector.cs
- Source:
- Vector.cs
중요
이 API는 CLS 규격이 아닙니다.
지정된 양만큼 왼쪽에 있는 벡터의 각 요소를 이동합니다.
public:
static System::Numerics::Vector<System::UInt64> ShiftLeft(System::Numerics::Vector<System::UInt64> value, int shiftCount);
[System.CLSCompliant(false)]
public static System.Numerics.Vector<ulong> ShiftLeft (System.Numerics.Vector<ulong> value, int shiftCount);
[<System.CLSCompliant(false)>]
static member ShiftLeft : System.Numerics.Vector<uint64> * int -> System.Numerics.Vector<uint64>
Public Function ShiftLeft (value As Vector(Of ULong), shiftCount As Integer) As Vector(Of ULong)
매개 변수
- shiftCount
- Int32
각 요소를 이동할 비트 수입니다.
반환
요소가 로 왼쪽으로 shiftCount
이동한 벡터입니다.
- 특성
적용 대상
ShiftLeft(Vector<Int64>, Int32)
- Source:
- Vector.cs
- Source:
- Vector.cs
- Source:
- Vector.cs
지정된 양만큼 왼쪽에 있는 벡터의 각 요소를 이동합니다.
public:
static System::Numerics::Vector<long> ShiftLeft(System::Numerics::Vector<long> value, int shiftCount);
public static System.Numerics.Vector<long> ShiftLeft (System.Numerics.Vector<long> value, int shiftCount);
static member ShiftLeft : System.Numerics.Vector<int64> * int -> System.Numerics.Vector<int64>
Public Function ShiftLeft (value As Vector(Of Long), shiftCount As Integer) As Vector(Of Long)
매개 변수
- shiftCount
- Int32
각 요소를 이동할 비트 수입니다.
반환
요소가 로 왼쪽으로 shiftCount
이동한 벡터입니다.
적용 대상
ShiftLeft(Vector<Int32>, Int32)
- Source:
- Vector.cs
- Source:
- Vector.cs
- Source:
- Vector.cs
지정된 양만큼 왼쪽에 있는 벡터의 각 요소를 이동합니다.
public:
static System::Numerics::Vector<int> ShiftLeft(System::Numerics::Vector<int> value, int shiftCount);
public static System.Numerics.Vector<int> ShiftLeft (System.Numerics.Vector<int> value, int shiftCount);
static member ShiftLeft : System.Numerics.Vector<int> * int -> System.Numerics.Vector<int>
Public Function ShiftLeft (value As Vector(Of Integer), shiftCount As Integer) As Vector(Of Integer)
매개 변수
- shiftCount
- Int32
각 요소를 이동할 비트 수입니다.
반환
요소가 로 왼쪽으로 shiftCount
이동한 벡터입니다.
적용 대상
ShiftLeft(Vector<Int16>, Int32)
- Source:
- Vector.cs
- Source:
- Vector.cs
- Source:
- Vector.cs
지정된 양만큼 왼쪽에 있는 벡터의 각 요소를 이동합니다.
public:
static System::Numerics::Vector<short> ShiftLeft(System::Numerics::Vector<short> value, int shiftCount);
public static System.Numerics.Vector<short> ShiftLeft (System.Numerics.Vector<short> value, int shiftCount);
static member ShiftLeft : System.Numerics.Vector<int16> * int -> System.Numerics.Vector<int16>
Public Function ShiftLeft (value As Vector(Of Short), shiftCount As Integer) As Vector(Of Short)
매개 변수
- shiftCount
- Int32
각 요소를 이동할 비트 수입니다.
반환
요소가 로 왼쪽으로 shiftCount
이동한 벡터입니다.
적용 대상
ShiftLeft(Vector<IntPtr>, Int32)
- Source:
- Vector.cs
- Source:
- Vector.cs
- Source:
- Vector.cs
지정된 양만큼 왼쪽에 있는 벡터의 각 요소를 이동합니다.
public:
static System::Numerics::Vector<IntPtr> ShiftLeft(System::Numerics::Vector<IntPtr> value, int shiftCount);
public static System.Numerics.Vector<IntPtr> ShiftLeft (System.Numerics.Vector<IntPtr> value, int shiftCount);
static member ShiftLeft : System.Numerics.Vector<nativeint> * int -> System.Numerics.Vector<nativeint>
Public Function ShiftLeft (value As Vector(Of IntPtr), shiftCount As Integer) As Vector(Of IntPtr)
매개 변수
- shiftCount
- Int32
각 요소를 이동할 비트 수입니다.
반환
요소가 로 왼쪽으로 shiftCount
이동한 벡터입니다.
적용 대상
ShiftLeft(Vector<Byte>, Int32)
- Source:
- Vector.cs
- Source:
- Vector.cs
- Source:
- Vector.cs
지정된 양만큼 왼쪽에 있는 벡터의 각 요소를 이동합니다.
public:
static System::Numerics::Vector<System::Byte> ShiftLeft(System::Numerics::Vector<System::Byte> value, int shiftCount);
public static System.Numerics.Vector<byte> ShiftLeft (System.Numerics.Vector<byte> value, int shiftCount);
static member ShiftLeft : System.Numerics.Vector<byte> * int -> System.Numerics.Vector<byte>
Public Function ShiftLeft (value As Vector(Of Byte), shiftCount As Integer) As Vector(Of Byte)
매개 변수
- shiftCount
- Int32
각 요소를 이동할 비트 수입니다.
반환
요소가 로 왼쪽으로 shiftCount
이동한 벡터입니다.
적용 대상
.NET