toNotEmptySet

@SinceKotoolsTypes(version = "1.3")
inline fun <E> Array<E>.toNotEmptySet(): NotEmptySet<E>

Returns a not empty set containing all the elements of this array, or throws an IllegalArgumentException if this array is empty.


@SinceKotoolsTypes(version = "1.3")
inline fun <E> Collection<E>.toNotEmptySet(): NotEmptySet<E>

Returns a not empty set containing all the elements of this collection, or throws an IllegalArgumentException if this collection is empty.