https://idris2.readthedocs.io/en/latest/tutorial/interfaces.html#notation
useful notation
instead of
foo = do
x' <- bar
case x' of
Nothing -> ...
Just x'' -> ...
one can write
foo = do
case !bar of
Nothing -> ...
Just x'' -> ...