Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for cellSpliterator (0.08 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
      private final class CellSet extends AbstractSet<Cell<R, C, V>> {
        @Override
        public boolean contains(@Nullable Object o) {
          if (o instanceof Cell) {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Aug 09 01:14:59 UTC 2025
    - 6.4K 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
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue May 13 17:27:14 UTC 2025
    - 17.3K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/ArrayTable.java

          @Override
          protected Cell<R, C, @Nullable V> get(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);
      }
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Aug 13 19:39:21 UTC 2025
    - 26.8K bytes
    - Viewed (0)
  4. guava/src/com/google/common/collect/StandardTable.java

           */
          if (requireNonNull(rowEntry).getValue().isEmpty()) {
            rowIterator.remove();
            rowEntry = null;
          }
        }
      }
    
      @Override
      Spliterator<Cell<R, C, V>> cellSpliterator() {
        return CollectSpliterators.flatMap(
            backingMap.entrySet().spliterator(),
            (Entry<R, Map<C, V>> rowEntry) ->
                CollectSpliterators.map(
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Aug 09 01:14:59 UTC 2025
    - 30.2K bytes
    - Viewed (0)
Back to top