JuliaCollections / DataStructures.jl

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

fix append! iterable to MutableLinkedList #883

Closed chengchingwen closed 10 months ago

chengchingwen commented 10 months ago

Currently append!(MutableLinkedList{Int}(), [3]) would try to push the vector into the linked list instead of pushing elements into the linked list.

chengchingwen commented 10 months ago

@oxinabox Could you help review this PR?