UInt128OnesComplement Operator
            Computes the bitwise negation of the argument.
            
Namespace: Meta.Numerics.ExtendedAssembly: Meta.Numerics (in Meta.Numerics.dll) Version: 4.2.0+6d77d64445f7d5d91b12e331399c4362ecb25333
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.
- u  UInt128
 - The argument.
 
UInt128The bitwise complement of 
u.
 The bitwise negation of a binary value flips every bit value. (Each
            0 becomes a 1, and each 1 becomes a 0.)