We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
append!
append
Hi,
I noticed append! doesn't work when the first list is empty and that is not equivalent to what append does, which just works.
I think there's some bug in append!'s implementation, that relies on the first element having a cdr which it may not have.
cdr
I'll try to find a fix and propose it.
Thanks!
The text was updated successfully, but these errors were encountered:
So, digging in the code append! is calling concatenate! which also has the same issue.
concatenate!
Sorry, something went wrong.
Merge pull request #945 from ekaitz-zarraga/concatenate!
cc6a3d1
Fix #944: concatenate! work with empty lists in any position
Successfully merging a pull request may close this issue.
Hi,
I noticed
append!
doesn't work when the first list is empty and that is not equivalent to whatappend
does, which just works.I think there's some bug in
append!
's implementation, that relies on the first element having acdr
which it may not have.I'll try to find a fix and propose it.
Thanks!
The text was updated successfully, but these errors were encountered: