-- uintSlice Value
| 8 | |
| 9 | // -- uintSlice Value |
| 10 | type uintSliceValue struct { |
| 11 | value *[]uint |
| 12 | changed bool |
| 13 | } |
| 14 | |
| 15 | func newUintSliceValue(val []uint, p *[]uint) *uintSliceValue { |
| 16 | uisv := new(uintSliceValue) |
nothing calls this directly
no outgoing calls
no test coverage detected