|
add |
fun add(element: E): Boolean |
|
ceiling |
fun ceiling(e: E): E |
|
clear |
fun clear(): Unit |
|
close |
fun close(): Unit |
|
comparator |
fun comparator(): Comparator<in E> |
|
contains |
fun contains(element: E): Boolean |
|
descendingIterator |
fun descendingIterator(): MutableIterator<E> |
|
descendingSet |
fun descendingSet(): NavigableSet<E> |
|
equals |
fun equals(other: Any?): Boolean |
|
first |
fun first(): E |
|
floor |
fun floor(e: E): E |
|
headSet |
fun headSet(toElement: E, inclusive: Boolean): NavigableSet<E>
fun headSet(toElement: E): NavigableSet<E> |
|
higher |
fun higher(e: E): E |
|
isEmpty |
fun isEmpty(): Boolean |
|
iterator |
fun iterator(): MutableIterator<E> |
|
last |
fun last(): E |
|
lower |
fun lower(e: E): E |
|
pollFirst |
fun pollFirst(): E |
|
pollLast |
fun pollLast(): E |
|
remove |
fun remove(element: E): Boolean |
|
sizeLong |
fun sizeLong(): Long |
|
subSet |
fun subSet(fromElement: E, fromInclusive: Boolean, toElement: E, toInclusive: Boolean): NavigableSet<E>
fun subSet(fromElement: E, toElement: E): NavigableSet<E> |
|
tailSet |
fun tailSet(fromElement: E, inclusive: Boolean): NavigableSet<E>
fun tailSet(fromElement: E): NavigableSet<E> |
|
toArray |
fun toArray(): Array<Any>
fun <T : Any> toArray(a: Array<T>): Array<T> |