(rand *rand.Rand)
| 1323 | } |
| 1324 | |
| 1325 | func (m *TMap) ExistingKey(rand *rand.Rand) int { |
| 1326 | if len(m.keys) == 0 { |
| 1327 | return 0 |
| 1328 | } |
| 1329 | return m.keys[rand.Intn(len(m.keys))] |
| 1330 | } |
| 1331 | |
| 1332 | func (m *TMap) Set(k, v int) { |
| 1333 | m.prev = m.im |
no outgoing calls
no test coverage detected