newRunContainerRange makes a new container made of just the specified closed interval [rangestart,rangelast]
(rangestart uint16, rangelast uint16)
| 150 | |
| 151 | // newRunContainerRange makes a new container made of just the specified closed interval [rangestart,rangelast] |
| 152 | func newRunContainer16Range(rangestart uint16, rangelast uint16) *runContainer16 { |
| 153 | rc := &runContainer16{} |
| 154 | rc.iv = append(rc.iv, newInterval16Range(rangestart, rangelast)) |
| 155 | return rc |
| 156 | } |
| 157 | |
| 158 | // newRunContainer16FromVals makes a new container from vals. |
| 159 | // |
searching dependent graphs…