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.headprintln(head) // (a, 1)