(key string)
| 100 | } |
| 101 | |
| 102 | func (m MetaMapType) GetMap(key string) MetaMapType { |
| 103 | if v, ok := m[key]; ok { |
| 104 | if mval, ok := v.(map[string]any); ok { |
| 105 | return MetaMapType(mval) |
| 106 | } |
| 107 | } |
| 108 | return nil |
| 109 | } |
| 110 | |
| 111 | func (m MetaMapType) GetArray(key string) []any { |
| 112 | if v, ok := m[key]; ok { |
no test coverage detected