|(_:_:)

Bitwise or operator - behaves as if two’s complement representation were used

BigInt.swift:640
static func | (x: BInt, y: BInt) -> BInt

Parameters

x

First value

y

Second value

Returns

BInt(signed: x.asSignedBytes() | y.asSignedBytes())