entries

All entries of this map.

Here's a simple usage example:

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