Keys returns all keys of the map as a slice.
()
| 184 | |
| 185 | // Keys returns all keys of the map as a slice. |
| 186 | func (m *StrStrMap) Keys() []string { |
| 187 | m.lazyInit() |
| 188 | return m.KVMap.Keys() |
| 189 | } |
| 190 | |
| 191 | // Values returns all values of the map as a slice. |
| 192 | func (m *StrStrMap) Values() []string { |