Home | History | Annotate | Download | only in collect

Lines Matching defs:of

6  * You may obtain a copy of the License at
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
34 * GWT emulation of {@link ImmutableSortedSet}.
75 public static <E> ImmutableSortedSet<E> of() {
79 public static <E extends Comparable<? super E>> ImmutableSortedSet<E> of(
85 public static <E extends Comparable<? super E>> ImmutableSortedSet<E> of(
91 public static <E extends Comparable<? super E>> ImmutableSortedSet<E> of(
97 public static <E extends Comparable<? super E>> ImmutableSortedSet<E> of(
103 public static <E extends Comparable<? super E>> ImmutableSortedSet<E> of(
109 public static <E extends Comparable<? super E>> ImmutableSortedSet<E> of(
115 // This is messed up. See TODO at top of file.
193 // a subset of another, to avoid memory leak.
235 // This reference is only used by GWT compiler to infer the elements of the
244 * GWT emulation of ImmutableSortedSet) creates an empty sortedDelegate,
248 * implementation of iterator() to define its contents, and methods like
249 * contains() are implemented in terms of that method (though they will
253 * implemented in terms of sortedDelegate (except comparator()).