-- stringToInt Value
| 9 | |
| 10 | // -- stringToInt Value |
| 11 | type stringToIntValue struct { |
| 12 | value *map[string]int |
| 13 | changed bool |
| 14 | } |
| 15 | |
| 16 | func newStringToIntValue(val map[string]int, p *map[string]int) *stringToIntValue { |
| 17 | ssv := new(stringToIntValue) |
nothing calls this directly
no outgoing calls
no test coverage detected