get returns true iff key is in the container.
(key uint16)
| 799 | |
| 800 | // get returns true iff key is in the container. |
| 801 | func (rc *runContainer16) contains(key uint16) bool { |
| 802 | _, in, _ := rc.search(int(key)) |
| 803 | return in |
| 804 | } |
| 805 | |
| 806 | // numIntervals returns the count of intervals in the container. |
| 807 | func (rc *runContainer16) numIntervals() int { |