Note
Access to this page requires authorization. You can try signing in or .
Access to this page requires authorization. You can try .
IBitwiseOperators<TSelf,TOther,TResult> Interface
Definition
- Namespace:
- System.Numerics
- Assembly:
- System.Runtime.dll
- Source:
- IBitwiseOperators.cs
- Source:
- IBitwiseOperators.cs
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 performing bitwise operations over two values.
generic <typename TSelf, typename TOther, typename TResult>
where TSelf : IBitwiseOperators<TSelf, TOther, TResult>public interface class IBitwiseOperators
public interface IBitwiseOperators<TSelf,TOther,TResult> where TSelf : IBitwiseOperators<TSelf,TOther,TResult>
type IBitwiseOperators<'Self, 'Other, 'Result (requires 'Self :> IBitwiseOperators<'Self, 'Other, 'Result>)> = interface
Public Interface IBitwiseOperators(Of TSelf, TOther, TResult)
Type Parameters
- TSelf
The type that implements this interface.
- TOther
The type that is used in the operation with TSelf.
- TResult
The type that contains the result of TSelf op TOther.
- Derived
Operators
| Name | Description |
|---|---|
| BitwiseAnd(TSelf, TOther) |
Computes the bitwise-and of two values. |
| BitwiseOr(TSelf, TOther) |
Computes the bitwise-or of two values. |
| ExclusiveOr(TSelf, TOther) |
Computes the exclusive-or of two values. |
| OnesComplement(TSelf) |
Computes the ones-complement representation of a given value. |
Applies to
Feedback
Was this page helpful?
