()
| 121 | } |
| 122 | |
| 123 | func (m ValueType) IsMap() bool { |
| 124 | switch m { |
| 125 | case MapValueType, MapIntType, MapStringType, MapNumberType, MapTimeType, MapBoolType: |
| 126 | return true |
| 127 | } |
| 128 | return false |
| 129 | } |
| 130 | |
| 131 | func (m ValueType) IsSlice() bool { |
| 132 | switch m { |