Len returns the size of the list.
()
| 277 | |
| 278 | // Len returns the size of the list. |
| 279 | func (l *TList) Len() int { |
| 280 | return len(l.std) |
| 281 | } |
| 282 | |
| 283 | // ChooseIndex returns a randomly chosen, valid index from the standard slice. |
| 284 | func (l *TList) ChooseIndex(rand *rand.Rand) int { |
no outgoing calls
no test coverage detected