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