BigInt.this

Construct a BigInt from a decimal or hexadecimal string. The number must be in the form of a decimal or hex literal. It may have a leading + or - sign, followed by 0x or 0X if hexadecimal. Underscores are permitted in any location after the 0x and/or the sign of the number.

  1. this(Range s)
  2. this(Range s)
    struct BigInt
    pure
    this
    (
    Range
    )
    (
    Range s
    )
  3. this(bool isNegative, Range magnitude)
  4. this(T x)
  5. this(T x)

Parameters

s Range

a finite bidirectional range of any character type

Throws

std.conv.ConvException if the string doesn't represent a valid number

Meta