Append adds v to the end of slice and List.
(v int)
| 300 | |
| 301 | // Append adds v to the end of slice and List. |
| 302 | func (l *TList) Append(v int) { |
| 303 | l.prev = l.im |
| 304 | l.im = l.im.Append(v) |
| 305 | l.builder.Append(v) |
| 306 | l.std = append(l.std, v) |
| 307 | } |
| 308 | |
| 309 | // Prepend adds v to the beginning of the slice and List. |
| 310 | func (l *TList) Prepend(v int) { |
no outgoing calls
no test coverage detected