newRunContainer16CopyIv creates a run container, initializing with a copy of the supplied iv slice.
(iv []interval16)
| 976 | // newRunContainer16CopyIv creates a run container, initializing |
| 977 | // with a copy of the supplied iv slice. |
| 978 | func newRunContainer16CopyIv(iv []interval16) *runContainer16 { |
| 979 | rc := &runContainer16{ |
| 980 | iv: make([]interval16, len(iv)), |
| 981 | } |
| 982 | copy(rc.iv, iv) |
| 983 | return rc |
| 984 | } |
| 985 | |
| 986 | func (rc *runContainer16) Clone() *runContainer16 { |
| 987 | rc2 := newRunContainer16CopyIv(rc.iv) |
no outgoing calls
searching dependent graphs…