Changeset 3408
- Timestamp:
- Feb 14, 2008, 12:35:58 AM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
to-imperative/trunk/java/runtime/org/refal/plus/Native.java
r3407 r3408 124 124 } 125 125 126 // T[] toArray(Expr expr, T[] arr)126 // T[] arrayValue (Expr expr, T[] arr) 127 127 128 public static boolean[] toArray(Expr expr, boolean[] arr) {128 public static boolean[] arrayValue (Expr expr, boolean[] arr) { 129 129 assert expr.length() == arr.length; 130 130 int length = arr.length; … … 134 134 } 135 135 136 public static char[] toArray(Expr expr, char[] arr) {136 public static char[] arrayValue (Expr expr, char[] arr) { 137 137 assert expr.length() == arr.length; 138 138 int length = arr.length; … … 142 142 } 143 143 144 public static byte[] toArray(Expr expr, byte[] arr) {144 public static byte[] arrayValue (Expr expr, byte[] arr) { 145 145 assert expr.length() == arr.length; 146 146 int length = arr.length; … … 150 150 } 151 151 152 public static short[] toArray(Expr expr, short[] arr) {152 public static short[] arrayValue (Expr expr, short[] arr) { 153 153 assert expr.length() == arr.length; 154 154 int length = arr.length; … … 158 158 } 159 159 160 public static int[] toArray(Expr expr, int[] arr) {160 public static int[] arrayValue (Expr expr, int[] arr) { 161 161 assert expr.length() == arr.length; 162 162 int length = arr.length; … … 166 166 } 167 167 168 public static long[] toArray(Expr expr, long[] arr) {168 public static long[] arrayValue (Expr expr, long[] arr) { 169 169 assert expr.length() == arr.length; 170 170 int length = arr.length; … … 174 174 } 175 175 176 public static Object[] toArray(Expr expr, Object[] arr) {176 public static Object[] arrayValue (Expr expr, Object[] arr) { 177 177 assert expr.length() == arr.length; 178 178 int length = arr.length;
Note: See TracChangeset
for help on using the changeset viewer.