JuliaCollections / DataStructures.jl

Julia implementation of Data structures
https://juliacollections.github.io/DataStructures.jl/latest/
MIT License
679 stars 242 forks source link

[BUG] MutableLinkedList append!() is broken #886

Closed axsk closed 6 months ago

axsk commented 6 months ago
julia> append!(MutableLinkedList{Int}(1), MutableLinkedList{Int}(2))

I would expect this to return a list with 1 and 2. However, displaying the result indicates an infinite list.

axsk commented 6 months ago

Duplicate of #739