abstract class Sink<E, R>
<init> |
Sink() |
create |
abstract fun create(): R |
put |
abstract fun put(e: E): Unit |
putAll |
fun putAll(i: Iterable<E>): Unit fun putAll(i: Iterator<E>): Unit |
Sink |
abstract class Sink<K, V> : Sink<<ERROR CLASS><K, V>, SortedTableMap<K, V>> |
TreeMapSink |
abstract class TreeMapSink<K, V> : Sink<<ERROR CLASS><K, V>, BTreeMap<K, V>> |