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
Bitstr
<<X/string, Y/binary>>
binary:app(list_to_bin(X), Y)
The text was updated successfully, but these errors were encountered:
References:
Sorry, something went wrong.
A = <<(B=C):(C=2)>>. * 1: variable 'C' is unbound
and
A = <<(B=1):(C=B)>>. <<1:1>>
These two suggest that, for <<exp1:exp2>>, exp1 should be evaluated before exp2.
<<exp1:exp2>>
exp1
exp2
However,
A = <<(B=1):(if (B == 3) -> 5; true -> 6 end)>>. * 1: variable 'B' is unbound
yuezato
No branches or pull requests
Bitstr
variant to Ast.constant<<X/string, Y/binary>>
-> likebinary:app(list_to_bin(X), Y)
The text was updated successfully, but these errors were encountered: