Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for Reimplement (0.17 sec)

  1. guava-tests/test/com/google/common/primitives/ByteArrayAsListTest.java

          int i = 0;
          for (Object e : elements) {
            array[i++] = (Byte) e;
          }
          return create(array);
        }
    
        /**
         * Creates a new collection containing the given elements; implement this method instead of
         * {@link #create(Object...)}.
         */
        protected abstract List<Byte> create(Byte[] elements);
    
        @Override
        public Byte[] createArray(int length) {
    Java
    - Registered: Fri Apr 12 12:43:09 GMT 2024
    - Last Modified: Thu Jun 01 09:32:35 GMT 2023
    - 5.5K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/primitives/ByteArrayAsListTest.java

          int i = 0;
          for (Object e : elements) {
            array[i++] = (Byte) e;
          }
          return create(array);
        }
    
        /**
         * Creates a new collection containing the given elements; implement this method instead of
         * {@link #create(Object...)}.
         */
        protected abstract List<Byte> create(Byte[] elements);
    
        @Override
        public Byte[] createArray(int length) {
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Thu Jun 01 09:32:35 GMT 2023
    - 5.5K bytes
    - Viewed (0)
Back to top