ref: 7d2f32a9e5e2b27faa217fd3d9d2d2092f052861
dir: /lib/Control/Arrow.hs/
module Control.Arrow(module Control.Arrow) where import Prelude() -- do not import Prelude first :: forall a b c . (a -> c) -> (a, b) -> (c, b) first f (a, b) = (f a, b) second :: forall a b c . (b -> c) -> (a, b) -> (a, c) second f (a, b) = (a, f b)