Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for mergeSorted (0.03 sec)

  1. android/guava-tests/test/com/google/common/collect/IterablesTest.java

    import static com.google.common.collect.Iterables.find;
    import static com.google.common.collect.Iterables.frequency;
    import static com.google.common.collect.Iterables.getOnlyElement;
    import static com.google.common.collect.Iterables.mergeSorted;
    import static com.google.common.collect.Iterables.removeIf;
    import static com.google.common.collect.Iterables.skip;
    import static com.google.common.collect.Iterables.tryFind;
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Tue Oct 28 18:44:53 UTC 2025
    - 45.6K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/Iterables.java

       * compare as equal, A will be returned before B if iterable 1 was passed before iterable 2.
       *
       * @since 11.0
       */
      public static <T extends @Nullable Object> Iterable<T> mergeSorted(
          Iterable<? extends Iterable<? extends T>> iterables, Comparator<? super T> comparator) {
        checkNotNull(iterables, "iterables");
        checkNotNull(comparator, "comparator");
        Iterable<T> iterable =
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Tue Sep 16 18:35:28 UTC 2025
    - 43.8K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/Iterables.java

       * compare as equal, A will be returned before B if iterable 1 was passed before iterable 2.
       *
       * @since 11.0
       */
      public static <T extends @Nullable Object> Iterable<T> mergeSorted(
          Iterable<? extends Iterable<? extends T>> iterables, Comparator<? super T> comparator) {
        checkNotNull(iterables, "iterables");
        checkNotNull(comparator, "comparator");
        Iterable<T> iterable =
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Mon Nov 17 22:50:48 UTC 2025
    - 43.6K bytes
    - Viewed (0)
Back to top