toMutableObservableSet

inline fun <T> Array<out T>.toMutableObservableSet(): ObservableSet<T>

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

See also


inline fun ByteArray.toMutableObservableSet(): ObservableSet<Byte>

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

See also


inline fun CharArray.toMutableObservableSet(): ObservableSet<Char>

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

See also


inline fun ShortArray.toMutableObservableSet(): ObservableSet<Short>

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

See also


inline fun IntArray.toMutableObservableSet(): ObservableSet<Int>

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

See also


inline fun LongArray.toMutableObservableSet(): ObservableSet<Long>

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

See also


inline fun FloatArray.toMutableObservableSet(): ObservableSet<Float>

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

See also


inline fun DoubleArray.toMutableObservableSet(): ObservableSet<Double>

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

See also


inline fun BooleanArray.toMutableObservableSet(): ObservableSet<Boolean>

Returns a new ObservableSet of Boolean filled with all elements of this array.

See also


fun <T> Iterable<T>.toMutableObservableSet(): ObservableSet<T>

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

See also


fun <T> Sequence<T>.toMutableObservableSet(): ObservableSet<T>

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

See also