IShiftOperators<TSelf,TOther,TResult> 介面

定義

定義以另一個值移動值的機制。

generic <typename TSelf, typename TOther, typename TResult>
 where TSelf : IShiftOperators<TSelf, TOther, TResult>public interface class IShiftOperators
public interface IShiftOperators<TSelf,TOther,TResult> where TSelf : IShiftOperators<TSelf,TOther,TResult>
type IShiftOperators<'Self, 'Other, 'Result (requires 'Self :> IShiftOperators<'Self, 'Other, 'Result>)> = interface
Public Interface IShiftOperators(Of TSelf, TOther, TResult)

類型參數

TSelf

實作這個介面的型別。

TOther

用來指定應該移位之數量 TSelf 的類型。

TResult

型別,其中包含 由 TResult 移轉 TSelf 的結果。

衍生

運算子

LeftShift(TSelf, TOther)

將指定數量留下的值移位。

RightShift(TSelf, TOther)

以指定的數量向右移位值。

UnsignedRightShift(TSelf, TOther)

以指定的數量向右移位值。

適用於