Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for RandomAccessPartition (0.31 sec)

  1. android/guava/src/com/google/common/collect/Lists.java

        }
    
        @Override
        public boolean isEmpty() {
          return list.isEmpty();
        }
      }
    
      private static class RandomAccessPartition<T extends @Nullable Object> extends Partition<T>
          implements RandomAccess {
        RandomAccessPartition(List<T> list, int size) {
          super(list, size);
        }
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 29 16:48:36 UTC 2024
    - 41.5K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/Lists.java

        }
    
        @Override
        public boolean isEmpty() {
          return list.isEmpty();
        }
      }
    
      private static class RandomAccessPartition<T extends @Nullable Object> extends Partition<T>
          implements RandomAccess {
        RandomAccessPartition(List<T> list, int size) {
          super(list, size);
        }
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 29 16:48:36 UTC 2024
    - 41.9K bytes
    - Viewed (0)
Back to top