LexoInteger constructor

LexoInteger(
  1. LexoNumeralSystem system,
  2. int sign,
  3. List<int> mag
)

Implementation

LexoInteger(LexoNumeralSystem system, int sign, List<int> mag) {
  sys = system;
  this.sign = sign;
  this.mag = mag;
}