-
-
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
Compact printing of Array{Char}s? #19845
Comments
That works well if all the chars have Also is a bit problematic if you have a lot of whitespace chars. |
@andreasnoack, that's #3721. It seems to be really hard to solve unless the whole software stack (terminal on up) agrees on the width of the characters. |
Also, charwidth-0 characters (e.g. combining characters) are going to look odd. |
@stevengj combining characters already print odd (they combine with the initial single quote), so that will not be a new issue. |
given variable width chars, this is probably a bad idea. |
@alanedelman brought up that
Array{Char}
s can be useful for summarizing numerical arrays but that it would be better if the printing ofArray{Char}
was more compact. I.e. instead ofit was proposed that we follow our competitor and print it like
Thoughts?
The text was updated successfully, but these errors were encountered: