UInt128OnesComplement Operator

Computes the bitwise negation of the argument.

Definition

Namespace: Meta.Numerics.Extended
Assembly: Meta.Numerics (in Meta.Numerics.dll) Version: 4.2.0+6d77d64445f7d5d91b12e331399c4362ecb25333
C#
public static UInt128 operator ~(
	UInt128 u
)

Parameters

u  UInt128
The argument.

Return Value

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