IShiftOperators<TSelf,TOther,TResult> Interface
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Defines a mechanism for shifting a value by another value.
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)
Type Parameters
- TSelf
The type that implements this interface.
- TOther
The type used to specify the amount by which TSelf
should be shifted.
- TResult
The type that contains the result of shifting TSelf
by TResult
.
- Derived
Operators
LeftShift(TSelf, TOther) |
Shifts a value left by a given amount. |
RightShift(TSelf, TOther) |
Shifts a value right by a given amount. |
UnsignedRightShift(TSelf, TOther) |
Shifts a value right by a given amount. |
Applies to
Colaborați cu noi pe GitHub
Sursa pentru acest conținut poate fi găsită pe GitHub, unde puteți, de asemenea, să creați și să consultați probleme și solicitări de tragere. Pentru mai multe informații, consultați ghidul nostru pentru colaboratori.