public static UInt128 operator |(
	UInt128 a,
	UInt128 b
)Public Shared Operator Or ( 
	a As UInt128,
	b As UInt128
) As UInt128public:
static UInt128 operator |(
	UInt128 a, 
	UInt128 b
)static let inline (|||)
        a : UInt128 * 
        b : UInt128  : UInt128The bitwise OR of two arguements has a 0 in each position which is 0 in both arguments, and a 1 in all other positions.