IShiftOperators<TSelf,TOther,TResult> Interfaz

Definición

Define un mecanismo para cambiar un valor por otro valor.

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)

Parámetros de tipo

TSelf

Tipo que implementa esta interfaz.

TOther

Tipo utilizado para especificar la cantidad por la que TSelf se debe desplazar.

TResult

Tipo que contiene el resultado de cambiar TSelf por TResult.

Derivado

Operadores

LeftShift(TSelf, TOther)

Desplaza un valor a la izquierda por una cantidad determinada.

RightShift(TSelf, TOther)

Desplaza un valor a la derecha por una cantidad determinada.

UnsignedRightShift(TSelf, TOther)

Desplaza un valor a la derecha por una cantidad determinada.

Se aplica a