UInt128OnesComplement Operator |
Computes the bitwise negation of the argument.
Namespace:
Meta.Numerics.Extended
Assembly:
Meta.Numerics (in Meta.Numerics.dll) Version: 4.1.4
Syntax public static UInt128 operator ~(
UInt128 u
)
Public Shared Operator ~ (
u As UInt128
) As UInt128
public:
static UInt128 operator ~(
UInt128 u
)
F# does not support this operator.
Parameters
- u
- Type: Meta.Numerics.ExtendedUInt128
The argument.
Return Value
Type:
UInt128The bitwise complement of
u.
Remarks The bitwise negation of a binary value flips every bit value. (Each
0 becomes a 1, and each 1 becomes a 0.)
See Also