Hi, I think it will be fast question/answer. Is there an opportunity to define typeApplications for infix functions?
I would like to move this
catch @ArithException (throw DivideByZero) (\ e -> print $ "lol: " <> show e)
to this, somehow
throw DivideByZero `catch` @ArithException (\ e -> print $ "lol: " <> show e)
is that possible? I read GHC guide, and didn’t find it
Also, I’ve tried different combinations for infix function but it didn’t work
as always, your answers will help me a lot
thanks