Vector<T>.LeftShift(Vector<T>, Int32) Operator
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
ベクターの各要素を指定した量だけシフトします。
public:
static System::Numerics::Vector<T> operator <<(System::Numerics::Vector<T> value, int shiftCount);
public static System.Numerics.Vector<T> operator << (System.Numerics.Vector<T> value, int shiftCount);
static member ( <<< ) : System.Numerics.Vector<'T> * int -> System.Numerics.Vector<'T>
Public Shared Operator << (value As Vector(Of T), shiftCount As Integer) As Vector(Of T)
パラメーター
- value
- Vector<T>
要素をシフトするベクター。
- shiftCount
- Int32
各要素をシフトするビット数。
戻り値
によって左 shiftCount
にシフトされた要素を持つベクター。
適用対象
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET