class BSON::Decimal128::Builder::FromBigDecimal

def bits

Other tags:
    Since: - 4.2.0

Returns:
  • (Array) - Tuple of the low and high bits.

Other tags:
    Example: Get the bits for the Decimal128 object created from the big decimal. -
def bits
  if special?
    to_special_bits
  else
    to_bits
  end
end