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)

将值右移一个给定的量。

适用于