(val []net.IPNet, p *[]net.IPNet)
| 14 | } |
| 15 | |
| 16 | func newIPNetSliceValue(val []net.IPNet, p *[]net.IPNet) *ipNetSliceValue { |
| 17 | ipnsv := new(ipNetSliceValue) |
| 18 | ipnsv.value = p |
| 19 | *ipnsv.value = val |
| 20 | return ipnsv |
| 21 | } |
| 22 | |
| 23 | // Set converts, and assigns, the comma-separated IPNet argument string representation as the []net.IPNet value of this flag. |
| 24 | // If Set is called on a flag that already has a []net.IPNet assigned, the newly converted values will be appended. |
no outgoing calls
no test coverage detected
searching dependent graphs…