Package erjang

Examples of erjang.ENumber.subtract()


  @BIF(name = "-", type = Type.GUARD)
  static public ENumber minus$g(EObject v1, ESmall i2) {
    ENumber n1;
    if ((n1 = v1.testNumber()) != null) {
      return n1.subtract(i2.value);
    }
    return null;
  }

  @BIF(name = "*", type=Type.GUARD)
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.