IShiftOperators<TSelf,TOther,TResult> Interfaccia
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Definisce un meccanismo per lo spostamento di un valore in base a un altro valore.
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)
Parametri di tipo
- TSelf
Tipo che implementa questa interfaccia.
- TOther
Tipo utilizzato per specificare la quantità in base alla quale TSelf
deve essere spostata.
- TResult
Tipo contenente il risultato dello spostamento TSelf
in base TResult
a .
- Derivato
Operatori
LeftShift(TSelf, TOther) |
Sposta un valore lasciato da una determinata quantità. |
RightShift(TSelf, TOther) |
Sposta un valore a destra in base a una determinata quantità. |
UnsignedRightShift(TSelf, TOther) |
Sposta un valore a destra in base a una determinata quantità. |