You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
divide (\x -> (x, x)) :: Divisible f => f a -> f a -> f a is equivalent to divide :: (a -> (b, c)) -> f b -> f c -> f a and surely more convenient. Could it be added to the typeclass signature?
divide (\x -> (x, x)) :: Divisible f => f a -> f a -> f ais equivalent todivide :: (a -> (b, c)) -> f b -> f c -> f aand surely more convenient. Could it be added to the typeclass signature?