(key string)
| 12 | } |
| 13 | |
| 14 | func (sm StructMap) Get(key string) (interface{}, bool) { |
| 15 | if idx := sm.indexOf(key); idx == -1 { |
| 16 | return nil, false |
| 17 | } |
| 18 | return sm.val.FieldByName(key).Interface(), true |
| 19 | } |
| 20 | |
| 21 | func (sm StructMap) Size() int { |
| 22 | return sm.size |