toMutableObservableList

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

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

See also


inline fun ByteArray.toMutableObservableList(): ObservableList<Byte>

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

See also


inline fun CharArray.toMutableObservableList(): ObservableList<Char>

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

See also


inline fun ShortArray.toMutableObservableList(): ObservableList<Short>

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

See also


inline fun IntArray.toMutableObservableList(): ObservableList<Int>

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

See also


inline fun LongArray.toMutableObservableList(): ObservableList<Long>

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

See also


inline fun FloatArray.toMutableObservableList(): ObservableList<Float>

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

See also


inline fun DoubleArray.toMutableObservableList(): ObservableList<Double>

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

See also


inline fun BooleanArray.toMutableObservableList(): ObservableList<Boolean>

Returns a new ObservableList of Boolean 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