from static method

LexoDecimal from(
  1. LexoInteger integer
)

Implementation

static LexoDecimal from(LexoInteger integer) {
  return LexoDecimal.make(integer, 0);
}