toMutableObservableList

inline fun <T> Array<out T>.toMutableObservableList(): ObservableList<T>

Returns a new ObservableList filled with all elements of this array.

See also


fun <T> Iterable<T>.toMutableObservableList(): ObservableList<T>
inline fun <T> Collection<T>.toMutableObservableList(): ObservableList<T>

Returns a new ObservableList filled with all elements of this collection.

See also


fun <T> Sequence<T>.toMutableObservableList(): ObservableList<T>

Returns a new ObservableList filled with all elements of this sequence.

See also