module MonadStuff (nop) where -- Useful for "if this, then mutate that, else do nothing" nop :: Monad m => m () nop = return ()