Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 3 of 3 for flatMapToDouble (0.29 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  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.OfDouble flatMapToDouble(
          Spliterator<InElementT> fromSpliterator,
          Function<? super InElementT, Spliterator.@Nullable OfDouble> 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.OfDouble flatMapToDouble(
          Spliterator<InElementT> fromSpliterator,
          Function<? super InElementT, Spliterator.@Nullable OfDouble> 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 DoubleStream} 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).flatMapToDouble(stream -> stream)}, but the
       * returned stream may perform better.
       *
       * @see DoubleStream#concat(DoubleStream, DoubleStream)
       */
      public static DoubleStream concat(DoubleStream... 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)
Back to Top