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
This is related to #34341
The formatstring {:#>b} does compile although the docs say the syntax is:
{:#>b}
format_spec := [[fill]align][sign]['#']['0'][width]['.' precision][type]
The string {:>#b} would be correct for the above example. I think more syntax-tests are required.
{:>#b}
The text was updated successfully, but these errors were encountered:
Sorry, I was wrong, the # is the fill character before the alignment and so {:#>#8b} works as expected.
#
{:#>#8b}
Sorry, something went wrong.
No branches or pull requests
This is related to #34341
The formatstring
{:#>b}
does compile although the docs say the syntax is:The string
{:>#b}
would be correct for the above example.I think more syntax-tests are required.
The text was updated successfully, but these errors were encountered: