NewTList returns a new instance of TList.
()
| 269 | |
| 270 | // NewTList returns a new instance of TList. |
| 271 | func NewTList() *TList { |
| 272 | return &TList{ |
| 273 | im: NewList[int](), |
| 274 | builder: NewListBuilder[int](), |
| 275 | } |
| 276 | } |
| 277 | |
| 278 | // Len returns the size of the list. |
| 279 | func (l *TList) Len() int { |
no outgoing calls
no test coverage detected
searching dependent graphs…