toList

open fun <T> toList(source: Set<T>): List<T>

Converts a set of objects into a list of objects.

Return

the list of objects.

Parameters

source

the set of objects to be converted.

<T>