Examples of EBig


Examples of erjang.EBig

    @Override
    public BigInt testBigInt() {return this;}

    @Override
    public EObject literalValue() {return new EBig(value);}
View Full Code Here

Examples of erjang.EBig

    @Override
    public EObject literalValue() {return new EBig(value);}

    public EObject toSymbolic() {
      return ETuple.make(INTEGER_ATOM, new EBig(value));
    }
View Full Code Here

Examples of erjang.EBig

    ESmall r = radix.testSmall();
    if (i == null || r == null || r.value < 2 || r.value > 36)
      throw ERT.badarg(arg, radix);

    String out;
    EBig big;
    ESmall small;
    if ((small=i.testSmall()) != null) {
      out = Integer.toString(small.value, r.value);
    } else if ((big=i.testBig()) != null) {
      out = big.value.toString(r.value);
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.