toSet

fun <T> Sequence<T>.toSet(): Set<T>(source)

Returns a Set of all elements.

The returned set preserves the element iteration order of the original sequence.

The operation is terminal.

Since Kotlin

1.0