Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for cellSpliterator (0.2 sec)

  1. guava/src/com/google/common/collect/AbstractTable.java

      }
    
      Set<Cell<R, C, V>> createCellSet() {
        return new CellSet();
      }
    
      abstract Iterator<Table.Cell<R, C, V>> cellIterator();
    
      abstract Spliterator<Table.Cell<R, C, V>> cellSpliterator();
    
      @WeakOuter
      class CellSet extends AbstractSet<Cell<R, C, V>> {
        @Override
        public boolean contains(@CheckForNull Object o) {
          if (o instanceof Cell) {
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Thu Jul 15 15:41:16 GMT 2021
    - 6.5K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/ImmutableTable.java

      @Override
      final UnmodifiableIterator<Cell<R, C, V>> cellIterator() {
        throw new AssertionError("should never be called");
      }
    
      @Override
      final Spliterator<Cell<R, C, V>> cellSpliterator() {
        throw new AssertionError("should never be called");
      }
    
      @Override
      public ImmutableCollection<V> values() {
        return (ImmutableCollection<V>) super.values();
      }
    
      @Override
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Thu Nov 30 21:54:06 GMT 2023
    - 17.3K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/ArrayTable.java

          @Override
          protected Cell<R, C, @Nullable V> get(final int index) {
            return getCell(index);
          }
        };
      }
    
      @Override
      Spliterator<Cell<R, C, @Nullable V>> cellSpliterator() {
        return CollectSpliterators.<Cell<R, C, @Nullable V>>indexed(
            size(), Spliterator.ORDERED | Spliterator.NONNULL | Spliterator.DISTINCT, this::getCell);
      }
    
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Thu Feb 22 21:19:52 GMT 2024
    - 26.9K bytes
    - Viewed (0)
Back to top