Java Long Number Create toLong(int[] a)

Here you can find the source of toLong(int[] a)

Description

to Long

License

Apache License

Declaration

public static final long[] toLong(int[] a) 

Method Source Code

//package com.java2s;
//License from project: Apache License 

public class Main {
    public static final long[] toLong(int[] a) {
        long[] b = new long[a.length];
        for (int i = 0; i < a.length; i++) {
            b[i] = a[i];/*ww w. ja v a2 s . c  o m*/
        }
        return b;
    }
}

Related

  1. toLong(final String value)
  2. toLong(final String value)
  3. toLong(int numBytes, long value)
  4. toLong(int value)
  5. toLong(int x, int z)
  6. toLong(int[] x, int length, int M)
  7. toLong(Integer i)
  8. toLong(long[] array)
  9. toLong(Number n)