Examples of RTIndirection


Examples of org.openquark.cal.internal.runtime.lecc.RTIndirection

  /**
   * f1S
   * This method implements the function logic of the CAL function Cal.Core.Prelude.repeat
   */
  public final RTValue f1S(RTValue valueToRepeat, RTExecutionContext $ec) throws CALExecutorException {
    RTIndirection letVar_repeatedValueList = new RTIndirection();

    letVar_repeatedValueList.setResult(
      new TYPE_List.CAL_Cons(valueToRepeat, letVar_repeatedValueList));
    // Top level supercombinator logic
    return letVar_repeatedValueList;
  }
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.