Package org.openquark.cal_Cal_Core_Prelude

Examples of org.openquark.cal_Cal_Core_Prelude.TYPE_List$CAL_Cons


      }
      // Top level supercombinator logic
      if (nElements <= 0) {
        return list.getValue();
      } else {
        TYPE_List $case2;

        switch (($case2 = (((TYPE_List)(java.lang.Object)list.getValue()))).getOrdinalValue()) {

          case 0: {
            // Cal.Core.Prelude.Nil
            return Drop.i_Nil;
          }

          case 1: {
            // Cal.Core.Prelude.Cons
            // Decompose data type to access members.
            RTValue listTail = $case2.get_tail();

            nElements = (nElements - 1);
            list = listTail.evaluate($ec);
            continue TRLoop;
          }
View Full Code Here

TOP

Related Classes of org.openquark.cal_Cal_Core_Prelude.TYPE_List$CAL_Cons

Copyright © 2018 www.massapicom. 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.