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