Keys returns all the keys from the map.
()
| 113 | |
| 114 | // Keys returns all the keys from the map. |
| 115 | func (m *Map) Keys() []string { |
| 116 | return m.keys |
| 117 | } |
| 118 | |
| 119 | // UnorderedData returns all the data from the map. |
| 120 | func (m *Map) UnorderedData() map[string]any { |
no outgoing calls