Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 6 of 6 for flatMapToLong (0.09 seconds)

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

       * function} returns {@code null} for an input, it is replaced with an empty stream.)
       */
      static <InElementT extends @Nullable Object> Spliterator.OfLong flatMapToLong(
          Spliterator<InElementT> fromSpliterator,
          Function<? super InElementT, Spliterator.@Nullable OfLong> function,
          int topCharacteristics,
          long topSize) {
        checkArgument(
    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

       * function} returns {@code null} for an input, it is replaced with an empty stream.)
       */
      static <InElementT extends @Nullable Object> Spliterator.OfLong flatMapToLong(
          Spliterator<InElementT> fromSpliterator,
          Function<? super InElementT, Spliterator.@Nullable OfLong> function,
          int topCharacteristics,
          long topSize) {
        checkArgument(
    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)
  3. android/guava/src/com/google/common/collect/Streams.java

      /**
       * Returns a {@link LongStream} containing the elements of the first stream, followed by the
       * elements of the second stream, and so on.
       *
       * <p>This is equivalent to {@code Stream.of(streams).flatMapToLong(stream -> stream)}, but the
       * returned stream may perform better.
       *
       * @see LongStream#concat(LongStream, LongStream)
       */
      public static LongStream concat(LongStream... streams) {
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Feb 23 19:19:10 GMT 2026
    - 36.8K bytes
    - Click Count (0)
  4. guava/src/com/google/common/collect/Streams.java

      /**
       * Returns a {@link LongStream} containing the elements of the first stream, followed by the
       * elements of the second stream, and so on.
       *
       * <p>This is equivalent to {@code Stream.of(streams).flatMapToLong(stream -> stream)}, but the
       * returned stream may perform better.
       *
       * @see LongStream#concat(LongStream, LongStream)
       */
      public static LongStream concat(LongStream... streams) {
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Feb 23 19:19:10 GMT 2026
    - 36.4K bytes
    - Click Count (0)
  5. guava-tests/test/com/google/common/collect/CollectSpliteratorsTest.java

                        4))
            .expect(1, 1, 2, 3);
      }
    
      public void testFlatMapToLong_nullStream() {
        SpliteratorTester.ofLong(
                () ->
                    CollectSpliterators.flatMapToLong(
                        Arrays.spliterator(new Long[] {1L, 0L, 1L, 2L, 3L}),
                        (Long i) -> i == 0L ? null : LongStream.of(i).spliterator(),
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Nov 17 22:50:48 GMT 2025
    - 4.2K bytes
    - Click Count (0)
  6. android/guava-tests/test/com/google/common/collect/CollectSpliteratorsTest.java

                        4))
            .expect(1, 1, 2, 3);
      }
    
      public void testFlatMapToLong_nullStream() {
        SpliteratorTester.ofLong(
                () ->
                    CollectSpliterators.flatMapToLong(
                        Arrays.spliterator(new Long[] {1L, 0L, 1L, 2L, 3L}),
                        (Long i) -> i == 0L ? null : LongStream.of(i).spliterator(),
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Tue May 13 17:27:14 GMT 2025
    - 4.1K bytes
    - Click Count (0)
Back to Top