-
Notifications
You must be signed in to change notification settings - Fork 708
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
">>>" operator is not supported #2755
Comments
Oh interesting! I see the operator in the spec, but num, int, and double don't seem to implement it. I suspect it's available for specialized number classes. /cc @lrhn for guidance on how to cover this in the language tour |
The When we introduce it into the implementations, then we will probably also add a |
We might want to mention somewhere that |
One would wonder why there isn't a matching <<< then. |
There is an infinity of possible operators that we can add to the language. We can (and do) consider whether we should introduce larger regular families of operators, or just stick with the ones we have. Until such time, we'll probably only add specific operators that we actually need. The |
dart-lang/language#1417 has a plan for implementing |
For reference, the 2.14 dev builds now include the necessary implementation, with a changelog entry here: https://github.com/dart-lang/sdk/blob/master/CHANGELOG.md#language |
Closing in favor of #3455 which will see the Thanks for opening the issue! |
I see the ">>>" operator in the document, but I get an error when I use it. Is this an oversight of the document?
The text was updated successfully, but these errors were encountered: