keys

All keys of this map.

Here's a simple usage example:

val map: NotEmptyMap<Char, Int> = notEmptyMapOf('a' to 1, 'b' to 2)
val keys: NotEmptySet<Char> = map.keys
println(keys) // [a, b]