MapKeys: Take a map and extract array of keys given input: {"tag.1":"news","tag.2":"sports"} mapkeys(match("tag.")) => []string{"news","sports"}
| 334 | // mapkeys(match("tag.")) => []string{"news","sports"} |
| 335 | // |
| 336 | type MapKeys struct{} |
| 337 | |
| 338 | // Type []string aka strings |
| 339 | func (m *MapKeys) Type() value.ValueType { return value.StringsType } |
nothing calls this directly
no outgoing calls
no test coverage detected