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