Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for transformAndConcat (1.18 sec)

  1. android/guava/src/com/google/common/collect/FluentIterable.java

       * streams, not iterables).
       *
       * @since 13.0 (required {@code Function<E, Iterable<T>>} until 14.0)
       */
      public <T extends @Nullable Object> FluentIterable<T> transformAndConcat(
          Function<? super E, ? extends Iterable<? extends T>> function) {
        return FluentIterable.concat(transform(function));
      }
    
      /**
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 35.3K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/FluentIterable.java

       * streams, not iterables).
       *
       * @since 13.0 (required {@code Function<E, Iterable<T>>} until 14.0)
       */
      public <T extends @Nullable Object> FluentIterable<T> transformAndConcat(
          Function<? super E, ? extends Iterable<? extends T>> function) {
        return FluentIterable.concat(transform(function));
      }
    
      /**
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 34.8K bytes
    - Viewed (0)
Back to top