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
julia> import Base.byteliteral julia> macro n_str(s...); ex = byteliteral(s...); :(($ex).data); end # Exact copy of @b_str julia> n"AC" 2-element Uint8 Array: 0x41 0x43 julia> n"AC$a" 4-element Uint8 Array: 0x41 0x43 0x24 0x61 julia> a "ACAC" julia> b"AC$a" 6-element Uint8 Array: 0x41 0x43 0x41 0x43 0x41 0x43
The text was updated successfully, but these errors were encountered:
Nope, see the discussion in #2301.
Sorry, something went wrong.
No branches or pull requests
The text was updated successfully, but these errors were encountered: