Then there's the both prefix and postfix alternative:
"Any keyword that operates on an expression may be written before the expression, or after the expression if chained with a dot"
await future
would be equal to:
future.await
match foo {...}
would be equal to:
foo.match {...}