mirror of
https://github.com/roc-lang/roc.git
synced 2025-08-04 20:28:02 +00:00
Add ! and ? to desugaring table
This commit is contained in:
parent
be4e3b5983
commit
74639aee80
1 changed files with 2 additions and 0 deletions
|
@ -2326,6 +2326,8 @@ Here are various Roc expressions involving operators, and what they desugar to.
|
|||
| `!a` | `Bool.not a` |
|
||||
| <code>a \|> f</code> | `f a` |
|
||||
| <code>f a b \|> g x y</code> | `g (f a b) x y` |
|
||||
| `f!` | `Task.await f` |
|
||||
| `f?` | `Result.try f` |
|
||||
|
||||
</section>
|
||||
<script type="text/javascript" src="/builtins/search.js" defer></script>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue