Keys, values, and member access that tolerates a missing key
| Function | What it does |
|---|
get | A member of a map or array, or nil when it is absent — unlike a.b, which fails |
keys | The keys of a map, in no particular order |
values | The values of a map, in the same order as keys() returns its keys |