Hoogle Search
Within LTS Haskell 24.4 (ghc-9.10.2)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
flip :: (a -> b -> c) -> b -> a -> cihaskell IHaskellPrelude flip f takes its (first) two arguments in the reverse order of f.
flip f x y = f y x
flip . flip = id
Examples
>>> flip (++) "hello" "world" "worldhello"
>>> let (.>) = flip (.) in (+1) .> show $ 5 "6"
flip :: (a -> b -> c) -> b -> a -> cincipit-base Incipit.Base flip f takes its (first) two arguments in the reverse order of f.
flip f x y = f y x
flip . flip = id
Examples
>>> flip (++) "hello" "world" "worldhello"
>>> let (.>) = flip (.) in (+1) .> show $ 5 "6"
flip :: (a -> b -> c) -> b -> a -> cclash-prelude Clash.HaskellPrelude flip f takes its (first) two arguments in the reverse order of f.
flip f x y = f y x
flip . flip = id
Examples
>>> flip (++) "hello" "world" "worldhello"
>>> let (.>) = flip (.) in (+1) .> show $ 5 "6"
flip :: (a -> b -> c) -> b -> a -> cdimensional Numeric.Units.Dimensional.Prelude flip f takes its (first) two arguments in the reverse order of f.
flip f x y = f y x
flip . flip = id
Examples
>>> flip (++) "hello" "world" "worldhello"
>>> let (.>) = flip (.) in (+1) .> show $ 5 "6"
flip :: (a -> b -> c) -> b -> a -> cdistribution-opensuse OpenSuse.Prelude flip f takes its (first) two arguments in the reverse order of f.
flip f x y = f y x
flip . flip = id
Examples
>>> flip (++) "hello" "world" "worldhello"
>>> let (.>) = flip (.) in (+1) .> show $ 5 "6"
flip :: (a -> b -> c) -> b -> a -> cfaktory Faktory.Prelude flip f takes its (first) two arguments in the reverse order of f.
flip f x y = f y x
flip . flip = id
Examples
>>> flip (++) "hello" "world" "worldhello"
>>> let (.>) = flip (.) in (+1) .> show $ 5 "6"
flip :: forall x y (zs :: [Type]) . Predicate (x ': (y ': zs)) -> Predicate (y ': (x ': zs))falsify Test.Falsify.Predicate Analogue of flip
flip :: (a -> b -> c) -> b -> a -> chledger-web Hledger.Web.Import flip f takes its (first) two arguments in the reverse order of f.
flip f x y = f y x
flip . flip = id
Examples
>>> flip (++) "hello" "world" "worldhello"
>>> let (.>) = flip (.) in (+1) .> show $ 5 "6"
flip :: (a -> b -> c) <-> (b -> a -> c)invertible Data.Invertible.Function flip the order of the first two arguments of a function.
flip :: (a -> b -> c) <-> (b -> a -> c)invertible Data.Invertible.Prelude flip the order of the first two arguments of a function.