Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for concatNoDefensiveCopy (0.19 sec)

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

       *
       * @since 20.0
       */
      public static <T extends @Nullable Object> FluentIterable<T> concat(
          Iterable<? extends T> a, Iterable<? extends T> b) {
        return concatNoDefensiveCopy(a, b);
      }
    
      /**
       * Returns a fluent iterable that combines three iterables. The returned iterable has an iterator
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Tue Jan 30 00:14:39 GMT 2024
    - 35.7K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/FluentIterable.java

       *
       * @since 20.0
       */
      public static <T extends @Nullable Object> FluentIterable<T> concat(
          Iterable<? extends T> a, Iterable<? extends T> b) {
        return concatNoDefensiveCopy(a, b);
      }
    
      /**
       * Returns a fluent iterable that combines three iterables. The returned iterable has an iterator
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Tue Jan 30 00:14:39 GMT 2024
    - 35.3K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/Iterators.java

       *
       * @throws NullPointerException if any of the provided iterators is null
       */
      @SafeVarargs
      public static <T extends @Nullable Object> Iterator<T> concat(Iterator<? extends T>... inputs) {
        return concatNoDefensiveCopy(Arrays.copyOf(inputs, inputs.length));
      }
    
      /**
       * Combines multiple iterators into a single iterator. The returned iterator iterates across the
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Sat Apr 20 03:33:06 GMT 2024
    - 50.6K bytes
    - Viewed (0)
  4. guava/src/com/google/common/collect/Iterators.java

       *
       * @throws NullPointerException if any of the provided iterators is null
       */
      @SafeVarargs
      public static <T extends @Nullable Object> Iterator<T> concat(Iterator<? extends T>... inputs) {
        return concatNoDefensiveCopy(Arrays.copyOf(inputs, inputs.length));
      }
    
      /**
       * Combines multiple iterators into a single iterator. The returned iterator iterates across the
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Tue Jan 30 00:14:39 GMT 2024
    - 50.5K bytes
    - Viewed (0)
Back to top