Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for toIntArray (0.05 sec)

  1. android/guava/src/com/google/common/primitives/Ints.java

       */
      public static int[] toArray(Collection<? extends Number> collection) {
        if (collection instanceof IntArrayAsList) {
          return ((IntArrayAsList) collection).toIntArray();
        }
    
        Object[] boxedArray = collection.toArray();
        int len = boxedArray.length;
        int[] array = new int[len];
        for (int i = 0; i < len; i++) {
          // checkNotNull for GWT (do not optimize)
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Fri Oct 25 18:05:56 UTC 2024
    - 31K bytes
    - Viewed (0)
Back to top