kotlin.collections.linkedSetOf

linkedSetOf

inline fun <T> linkedSetOf(): LinkedHashSet<T>

Platform and version requirements: Kotlin 1.1

Returns an empty new LinkedHashSet.

fun <T> linkedSetOf(vararg elements: T): LinkedHashSet<T>

Returns a new LinkedHashSet with the given elements. Elements of the set are iterated in the order they were specified.<