head

val head: Pair<K, V>

The first entry of this map.

Here's a simple usage example:

val map: NotEmptyMap<Char, Int> = notEmptyMapOf('a' to 1, 'b' to 2)
val head: Pair<Char, Int> = map.head
println(head) // (a, 1)