Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 10 for ImmutableSortedMultiset (0.2 seconds)

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

        Collection<String> c = ImmutableSortedMultiset.of("a");
        assertThat(ImmutableSortedMultiset.copyOf(c)).isSameInstanceAs(c);
      }
    
      public void testCopyOf_shortcut_immutableMultiset() {
        Collection<String> c = ImmutableSortedMultiset.of("a", "b", "c");
        assertThat(ImmutableSortedMultiset.copyOf(c)).isSameInstanceAs(c);
      }
    
      public void testForEachEntry() {
        ImmutableSortedMultiset<String> multiset =
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Fri Mar 13 13:01:07 GMT 2026
    - 22.8K bytes
    - Click Count (0)
  2. android/guava-tests/test/com/google/common/collect/ImmutableSortedMultisetTest.java

        Collection<String> c = ImmutableSortedMultiset.of("a");
        assertThat(ImmutableSortedMultiset.copyOf(c)).isSameInstanceAs(c);
      }
    
      public void testCopyOf_shortcut_immutableMultiset() {
        Collection<String> c = ImmutableSortedMultiset.of("a", "b", "c");
        assertThat(ImmutableSortedMultiset.copyOf(c)).isSameInstanceAs(c);
      }
    
      public void testBuilderAdd() {
        ImmutableSortedMultiset<String> multiset =
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Fri Mar 13 13:01:07 GMT 2026
    - 19.6K bytes
    - Click Count (0)
  3. android/guava-testlib/src/com/google/common/testing/FreshValueGenerator.java

        multiset.add(freshElement);
        return multiset;
      }
    
      @Generates
      static <E extends Comparable<E>> ImmutableSortedMultiset<E> generateImmutableSortedMultiset(
          E freshElement) {
        return ImmutableSortedMultiset.of(freshElement);
      }
    
      @Generates
      static <K, V> Map<K, V> generateMap(@Nullable K key, @Nullable V value) {
        return generateHashdMap(key, value);
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Tue Mar 17 16:45:58 GMT 2026
    - 28.1K bytes
    - Click Count (0)
  4. android/guava-testlib/test/com/google/common/testing/FreshValueGeneratorTest.java

    import com.google.common.collect.ImmutableSet;
    import com.google.common.collect.ImmutableSetMultimap;
    import com.google.common.collect.ImmutableSortedMap;
    import com.google.common.collect.ImmutableSortedMultiset;
    import com.google.common.collect.ImmutableSortedSet;
    import com.google.common.collect.ImmutableTable;
    import com.google.common.collect.LinkedHashMultimap;
    import com.google.common.collect.LinkedHashMultiset;
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Mar 12 17:47:10 GMT 2026
    - 17.4K bytes
    - Click Count (0)
  5. guava-testlib/src/com/google/common/testing/FreshValueGenerator.java

        multiset.add(freshElement);
        return multiset;
      }
    
      @Generates
      static <E extends Comparable<E>> ImmutableSortedMultiset<E> generateImmutableSortedMultiset(
          E freshElement) {
        return ImmutableSortedMultiset.of(freshElement);
      }
    
      @Generates
      static <K, V> Map<K, V> generateMap(@Nullable K key, @Nullable V value) {
        return generateHashdMap(key, value);
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Tue Mar 17 16:45:58 GMT 2026
    - 28.7K bytes
    - Click Count (0)
  6. android/guava/src/com/google/common/collect/Comparators.java

      /*
       * If we make these calls inline inside the lambda inside emptiesFirst()/emptiesLast(), we get an
       * Animal Sniffer error, despite the @IgnoreJRERequirement annotation there. For details, see
       * ImmutableSortedMultiset.
       */
      private static <T> @Nullable T orElseNull(Optional<T> optional) {
        return optional.orElse(null);
      }
    
      /**
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Feb 23 19:19:10 GMT 2026
    - 11.5K bytes
    - Click Count (0)
  7. guava-testlib/test/com/google/common/testing/FreshValueGeneratorTest.java

    import com.google.common.collect.ImmutableSet;
    import com.google.common.collect.ImmutableSetMultimap;
    import com.google.common.collect.ImmutableSortedMap;
    import com.google.common.collect.ImmutableSortedMultiset;
    import com.google.common.collect.ImmutableSortedSet;
    import com.google.common.collect.ImmutableTable;
    import com.google.common.collect.LinkedHashMultimap;
    import com.google.common.collect.LinkedHashMultiset;
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Mar 12 17:47:10 GMT 2026
    - 18.6K bytes
    - Click Count (0)
  8. android/guava/src/com/google/common/io/CharSource.java

      /*
       * If we make these calls inline inside the lambda inside lines(), we get an Animal Sniffer error,
       * despite the @IgnoreJRERequirement annotation there. For details, see ImmutableSortedMultiset.
       */
      private static void closeUnchecked(Closeable closeable) {
        try {
          closeable.close();
        } catch (IOException e) {
          throw new UncheckedIOException(e);
        }
      }
    
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Feb 23 19:19:10 GMT 2026
    - 25.7K bytes
    - Click Count (0)
  9. android/guava/src/com/google/common/collect/Multiset.java

     * multiset. Undefined behavior and bugs will result.
     *
     * <h3>Implementations</h3>
     *
     * <ul>
     *   <li>{@link ImmutableMultiset}
     *   <li>{@link ImmutableSortedMultiset}
     *   <li>{@link HashMultiset}
     *   <li>{@link LinkedHashMultiset}
     *   <li>{@link TreeMultiset}
     *   <li>{@link EnumMultiset}
     *   <li>{@link ConcurrentHashMultiset}
     * </ul>
     *
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Feb 23 19:19:10 GMT 2026
    - 19.5K bytes
    - Click Count (0)
  10. guava/src/com/google/common/collect/Multiset.java

     * multiset. Undefined behavior and bugs will result.
     *
     * <h3>Implementations</h3>
     *
     * <ul>
     *   <li>{@link ImmutableMultiset}
     *   <li>{@link ImmutableSortedMultiset}
     *   <li>{@link HashMultiset}
     *   <li>{@link LinkedHashMultiset}
     *   <li>{@link TreeMultiset}
     *   <li>{@link EnumMultiset}
     *   <li>{@link ConcurrentHashMultiset}
     * </ul>
     *
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Feb 23 19:19:10 GMT 2026
    - 20.9K bytes
    - Click Count (0)
Back to Top