UInt128BitwiseOr Operator

Computes the bitwise OR of two arguments.

Definition

Namespace: Meta.Numerics.Extended
Assembly: Meta.Numerics (in Meta.Numerics.dll) Version: 4.2.0+6d77d64445f7d5d91b12e331399c4362ecb25333
C#
public static UInt128 operator |(
	UInt128 a,
	UInt128 b
)

Parameters

a  UInt128
The first argument.
b  UInt128
The second argument.

Return Value

UInt128
The logical OR of the two arguments.

Remarks

The bitwise OR of two arguements has a 0 in each position which is 0 in both arguments, and a 1 in all other positions.

See Also