foo x y = x >>= \case Leaf -> .. Branch l r -> ..
Temporary variables clutter up the name space. While reading code you have to look for shadowing, or whether that variable is ever used again.
Temporary variables clutter up the name space. While reading code you have to look for shadowing, or whether that variable is ever used again.