Sha256: cbeb7a5a16d382523a05f5cfbba59426e9966b9718dba9f1cb0f0bc8eafc48e8
Contents?: true
Size: 821 Bytes
Versions: 75
Compression:
Stored size: 821 Bytes
Contents
package j2me.lang; public class ArrayMe { public static int[] clone(int[] arThis) { //TODO: clone throw new RuntimeException("Not Implemented - ArrayMe::int[] clone(int[] arThis)"); //return arThis; } public static byte[] clone(byte[] arThis) { //TODO: clone throw new RuntimeException("Not Implemented - ArrayMe::byte[] clone(byte[] arThis)"); //return arThis; } public static char[] clone(char[] arThis) { //TODO: clone throw new RuntimeException("Not Implemented - ArrayMe::char[] clone(char[] arThis)"); //return arThis; } public static Object[] clone(Object[] arThis) { Object[] copy = new Object[arThis.length]; for( int i = 0; i < arThis.length; i++ ) copy[i] = arThis[i]; return copy; } }
Version data entries
75 entries across 75 versions & 1 rubygems