As is known:
((.).(.)) :: (b -> c) -> (a -> a1 -> b) -> a -> a1 -> c
I can use this compound operator prefix-style like this:
((.).(.)) f g
But it appears I cannot use it infix like this:
f ((.).(.)) g
Is there a way to use this infix style without defining another operator or using a predefined one in a package?