Package erjang

Examples of erjang.ENumber.divide()


  @BIF(name = "/", type = Type.GUARD)
  static public ENumber divide$p(EObject v1, double d2) {
    ENumber n1;
    if (d2 != 0.0 && (n1 = v1.testNumber()) != null) {
      return n1.divide(d2);
    }
    return null;
  }

  @BIF(name = "/")
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.