neworldlt
List
/** * Returns a [List] containing all elements. */ public fun <T> Sequence<T>.toList(): List<T> { return this.toMutableList() }