IShiftOperators<TSelf,TOther,TResult>.LeftShift(TSelf, TOther) 运算符

定义

将一个值左移一个给定的量。

public:
 static TResult operator <<(TSelf value, TOther shiftAmount);
public static abstract TResult operator << (TSelf value, TOther shiftAmount);
static member ( <<< ) : 'Self * 'Other -> 'Result
Public Shared Operator << (value As TSelf, shiftAmount As TOther) As TResult

参数

value
TSelf

由 向左 shiftAmount移动的值。

shiftAmount
TOther

向左移动的量 value

返回

TResult

向左shiftAmount移动value的结果。

适用于