-
-
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
map on an AbstractString, if no more specific map method found, returns UTF8String always #11464
Comments
|
OK, that makes sense, but where it is just different encodings of Unicode (as opposed to a subset, like |
Yes. |
ScottPJones
added a commit
to ScottPJones/julia
that referenced
this issue
Jun 17, 2015
ScottPJones
added a commit
to ScottPJones/julia
that referenced
this issue
Jun 19, 2015
ScottPJones
added a commit
to ScottPJones/julia
that referenced
this issue
Jun 19, 2015
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This affects map on UTF16String, in particular, showing up in #11460, as currently uppercase/lowercase both use map for UTF16String, and that can be solved by making more specific (and much faster) uppercase/lowercase methods for UTF16String (as is done for ASCIIString), however, the general case also needs to be fixed... map on an AbstractString should always return the same type.
The text was updated successfully, but these errors were encountered: