-
-
Notifications
You must be signed in to change notification settings - Fork 5.6k
New issue
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
replace function doesn't work on Tuples #33782
Comments
Do we expect Still an issue on
|
Do we just need to define something like _similar_or_copy(x::Tuple) = copy(x) so that the following works? Lines 555 to 564 in 8a52ea4
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Just ran into this by chance:
replace()
seems broken forTuple
s. It accepts aTuple
, but the generic implementation can't handle it:Might be useful to add a specialized
replace(::Tuple, ...)
at some point (gen func for high performance?).The text was updated successfully, but these errors were encountered: