()
| 2191 | } |
| 2192 | |
| 2193 | func NewTSortedMap() *TSortedMap { |
| 2194 | return &TSortedMap{ |
| 2195 | im: NewSortedMap[int, int](nil), |
| 2196 | builder: NewSortedMapBuilder[int, int](nil), |
| 2197 | std: make(map[int]int), |
| 2198 | } |
| 2199 | } |
| 2200 | |
| 2201 | func (m *TSortedMap) NewKey(rand *rand.Rand) int { |
| 2202 | for { |
no outgoing calls
no test coverage detected
searching dependent graphs…