of
@ExperimentalSince(version = KotoolsTypesVersion.V4_5_0)
Creates a NotEmptyMap starting with the head and containing all the entries of the optional tail.
Calling from Kotlin
Here's an example of calling this function from Kotlin code:
val map: NotEmptyMap<Char, Int> = NotEmptyMap.of('a' to 1, 'b' to 2)
assertEquals(expected = "{a=1, b=2}", actual = "$map")
Content copied to clipboard
The NotEmptyMap type being an inline value class, this function is not available yet for Java users.