Package erjang

Examples of erjang.EBitString.toList()


  @BIF
  public static EObject bitstring_to_list(EObject obj) {
    EBitString bin = obj.testBitString();
    if (bin == null)
      throw ERT.badarg(obj);
    return bin.toList();
  }

  @BIF
  public static EString binary_to_list(EObject obj, EObject start, EObject stop) {
    EBinary bin = obj.testBinary();
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.