Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for newFlatMapSpliterator (1.33 seconds)

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

        /** Factory for constructing {@link FlatMapSpliterator} instances. */
        interface Factory<InElementT extends @Nullable Object, OutSpliteratorT extends Spliterator<?>> {
          OutSpliteratorT newFlatMapSpliterator(
              @Nullable OutSpliteratorT prefix,
              Spliterator<InElementT> fromSplit,
              Function<? super InElementT, @Nullable OutSpliteratorT> function,
              int splitCharacteristics,
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Nov 17 22:50:48 GMT 2025
    - 19.9K bytes
    - Click Count (0)
  2. android/guava/src/com/google/common/collect/CollectSpliterators.java

        @IgnoreJRERequirement // should be redundant with the annotations on *both* enclosing classes
        interface Factory<InElementT extends @Nullable Object, OutSpliteratorT extends Spliterator<?>> {
          OutSpliteratorT newFlatMapSpliterator(
              @Nullable OutSpliteratorT prefix,
              Spliterator<InElementT> fromSplit,
              Function<? super InElementT, @Nullable OutSpliteratorT> function,
              int splitCharacteristics,
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Sat Aug 09 01:14:59 GMT 2025
    - 20.5K bytes
    - Click Count (0)
Back to Top