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)

指定した量だけ値を右にシフトします。

適用対象