- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for cellSpliterator (0.06 sec)
-
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) -
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) -
guava/src/com/google/common/collect/StandardTable.java
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Aug 09 01:14:59 UTC 2025 - 30.2K bytes - Viewed (0)