Kelly Schultz

Results 3 comments of Kelly Schultz

I tried fixing this issue on my windows machine by changing this function: ``` function Base.append!(l1::MutableLinkedList{T}, l2::MutableLinkedList{T}) where T l1.node.prev.next = l2.node.next # l1's last's next is now l2's first...

this is also what I encountered in https://github.com/JuliaCollections/DataStructures.jl/issues/739