-
-
Notifications
You must be signed in to change notification settings - Fork 5.5k
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
excise Base64 stuff from Base #24222
Comments
The Many of the uses of |
I've made a faster base64 encoder with the same interfaces of Base. The performance improvement is more than 10 times and it would be good to move it to the standard library (the code is here: https://gist.github.com/bicycle1885/f3db61e15ba08b291435bb3e2b2b67c5). I guess the best way to deprecate the current base64 tools is to keep them as is, deprecate them, and create a new module under the stdlib directory, right? |
Also note that there a a number of different Base64 variants and this only implements one of them. Stranger than baking one particular data encoding into the base language is picking one particular variant of one particular data encoding and baking just that into the base language. |
I recently needed a |
I've made a Base32 encoder/decoder in CodecBase.jl, so it is trivial to implement those functions. |
closed by #24361 |
Base64
would be fine in the standard library, but should really not stay inBase
.The text was updated successfully, but these errors were encountered: