half static method

Implementation

static LexoDecimal half(LexoNumeralSystem sys) {
  final mid = (sys.getBase() / 2).round() | 0;
  return LexoDecimal.make(LexoInteger.make(sys, 1, [mid]), 1);
}