Watchable List
A Watchable which may also be modified or bound. Use watchableListOf to create.
interface WatchableList<T> : MutableWatchable<MutableList<T>, ListChange<T>> , ReadOnlyWatchableList<T>
Content copied to clipboard
Functions
addAll
Link copied to clipboard
batch
Link copied to clipboard
abstract override fun batch(scope: CoroutineScope, period: Long, func: SuspendFunction1<List<ListChange<T>>, Unit>): Watcher
Content copied to clipboard
bind
Link copied to clipboard
contains
Link copied to clipboard
containsAll
Link copied to clipboard
equals
Link copied to clipboard
forEach
Link copied to clipboard
get
Link copied to clipboard
indexOf
Link copied to clipboard
invoke
Link copied to clipboard
abstract suspend operator override fun <U> invoke(func: MutableList<T>.() -> U): U
Content copied to clipboard
isEmpty
Link copied to clipboard
iterator
Link copied to clipboard
lastIndexOf
Link copied to clipboard
listIterator
Link copied to clipboard
minusAssign
Link copied to clipboard
parallelStream
Link copied to clipboard
plusAssign
Link copied to clipboard
readOnly
Link copied to clipboard
remove
Link copied to clipboard
removeAll
Link copied to clipboard
retainAll
Link copied to clipboard
simple
Link copied to clipboard
open override fun simple(scope: CoroutineScope, period: Long, func: SuspendFunction1<ListChange.Simple<T>, Unit>): Watcher
Content copied to clipboard
spliterator
Link copied to clipboard
subList
Link copied to clipboard
twoWayBind
Link copied to clipboard
abstract override fun twoWayBind(scope: CoroutineScope, other: MutableWatchable<MutableList<T>, ListChange<T>>): Watcher
Content copied to clipboard
abstract override fun <M2, C2 : Change> twoWayBind(scope: CoroutineScope, other: MutableWatchable<M2, C2>, update: MutableList<T>.(C2) -> Unit, updateOther: M2.(ListChange<T>) -> Unit): Watcher
Content copied to clipboard
waitFor
Link copied to clipboard
watch
Link copied to clipboard
open override fun watch(scope: CoroutineScope, period: Long, func: SuspendFunction1<ListChange<T>, Unit>): Watcher
Content copied to clipboard