-
Notifications
You must be signed in to change notification settings - Fork 12
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
JRFC 17 - <base>b<digits> -- ascii string encoding base prefixes #17
Comments
The need to maintain a table of alphabets may be a reason to use different prefixing entirely. In a sense, |
Erlang does this already, up to base 36: 3.2 Number There are two types of numeric literals, integers and floats. Besides the conventional notation, there are two Erlang-specific notations: $char base#value |
Oh cool! 👍 hmm the problem with |
When ascii encoding numbers of different bases, we either (a) signal elsewhere what the base is (non self describing and to be avoided), or (b) prefix the characters with a base identifier:
But what about other bases? base32, base64, base58 are all popular. What about this encoding:
The text was updated successfully, but these errors were encountered: