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
Base.copymutable(a::SVector) currently works using its default method, which calls similar(a) followed by copyto!.
Base.copymutable(a::SVector)
similar(a)
copyto!
Might it be slightly faster to have a specialized copymutable(a) for isbits types (#799) that calls MVector(a)?
copymutable(a)
isbits
MVector(a)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Base.copymutable(a::SVector)
currently works using its default method, which callssimilar(a)
followed bycopyto!
.Might it be slightly faster to have a specialized
copymutable(a)
forisbits
types (#799) that callsMVector(a)
?The text was updated successfully, but these errors were encountered: