notEmptySetOf
@Since(version = KotoolsTypesVersion.V4_0_0)
Creates a NotEmptySet starting with a head and containing all the elements of the optional tail.
Here's a simple usage example:
val integers: NotEmptySet<Int> = notEmptySetOf(1, 2, 3, 1)
println(integers) // [1, 2, 3]
Content copied to clipboard