tail

All entries of this map except the first one.

Here's a simple usage example:

val map: NotEmptyMap<Char, Int> =
notEmptyMapOf('a' to 1, 'b' to 2, 'c' to 3)
val tail: NotEmptyMap<Char, Int>? = map.tail
println(tail) // {b=2, c=3}