Christopher Murphy
Christopher Murphy
There seems to be a problem with some of the other list operations too. ```julia julia> get_lists_members_show(slug="Developers", owner_screen_name="Twitter", screen_name="TwitterDev") ERROR: KeyError: key "members" not found Stacktrace: [1] getindex(::Dict{String,Any}, ::SubString{String}) at...
I think the best option might be to make the current `LinkedList` immutable and move it to something like `FunctionalList` and then rewrite a new mutable `LinkedList` from scratch. With...
> Making the current LinkedList immutable is a breaking change. That's why I also suggested changing the name. I guess there might also need to be a few more changes...
I guess this works with the existing implementation: ```julia function setindex!(l::LinkedList{T}, value::T, idx::Int) where T 0 < idx
There also seems to be an issue with the current implementation when trying to delete the first element of a list (it's not a problem for any other element). For...
Hey @oxinabox—no, sorry, things got hectic this past semester with everything going on in the world and I lost track of it. I'll try to finish putting something together over...