Click or drag to resize

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
)

Parameters

u
Type: Meta.Numerics.ExtendedUInt128
The argument.

Return Value

Type: UInt128
The 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