Merge combine two field maps.
(f FieldMap)
| 31 | |
| 32 | // Merge combine two field maps. |
| 33 | func (m FieldMap) Merge(f FieldMap) { |
| 34 | for k := range f { |
| 35 | m[k] = true |
| 36 | } |
| 37 | } |
| 38 | |
| 39 | var opMap = map[string]string{ |
| 40 | // comparison op |
no outgoing calls
no test coverage detected