Click or drag to resize

UInt128BitwiseOr Operator

Computes the bitwise OR of two arguments.

Namespace:  Meta.Numerics.Extended
Assembly:  Meta.Numerics (in Meta.Numerics.dll) Version: 4.1.4
Syntax
public static UInt128 operator |(
	UInt128 a,
	UInt128 b
)

Parameters

a
Type: Meta.Numerics.ExtendedUInt128
The first argument.
b
Type: Meta.Numerics.ExtendedUInt128
The second argument.

Return Value

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