toMutableList

fun <T> Sequence<T>.toMutableList(): MutableList<T>

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

The operation is terminal.