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