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
Bytes('a') + Bytes('b') will report type check error because of this: https://github.com/algorand/pyteal/blob/master/pyteal/ast/expr.py#L72-L73
Bytes('a') + Bytes('b')
pyteal/pyteal/ast/expr.py
Lines 72 to 73 in 1a1c93f
Bytes('a') + Bytes('b') returns Concat(Bytes('a'),Bytes('b')), or Bytes('ab')
Concat(Bytes('a'),Bytes('b'))
Bytes('ab')
Ergonomic feature, not urgent.
The text was updated successfully, but these errors were encountered:
dupe of #496
Sorry, something went wrong.
Sorry @barnjamin
No branches or pull requests
Problem
Bytes('a') + Bytes('b')
will report type check error because of this: https://github.com/algorand/pyteal/blob/master/pyteal/ast/expr.py#L72-L73pyteal/pyteal/ast/expr.py
Lines 72 to 73 in 1a1c93f
Solution
Bytes('a') + Bytes('b')
returnsConcat(Bytes('a'),Bytes('b'))
, orBytes('ab')
Dependencies
Urgency
Ergonomic feature, not urgent.
The text was updated successfully, but these errors were encountered: