Files
Nim/lib/pure/collections
rockcavera dc5c88ca79 Fix #19297 - fixing broken list after adding empty list (#19299)
* Update lists.nim

* Update tlists.nim

* removed check `if b.tail != nil`

The tail of the list being null it is still possible to retrieve its end by going through all nodes from the head. So checking for null from `b.tail` is unnecessary. However, setting `a.tail = b.tail` only if `a.head != nil`, so you don't break a good list with an already broken one.
2021-12-30 21:52:48 +01:00
..
2016-03-31 16:49:56 +02:00
2019-09-21 06:43:37 +02:00
2021-02-21 19:53:28 -08:00
2021-09-11 11:33:52 +02:00