flip
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"
Not on Stackage, so not searched.
Variations on flip for multiple arguments
Not on Stackage, so not searched.
e.g. `flip systemctl foo.service start` does `systemctl start foo.service`
Not on Stackage, so not searched.
Wiki
maybeFlipCond c returns Just c' if it is possible to
flip the arguments to the conditional c, and the new
condition should be c'.
Not on Stackage, so not searched.
Not on Stackage, so not searched.
Haskell implementation of aws/cfn-flip
Not on Stackage, so not searched.
A minimally obtrusive feature flag library
Not on Stackage, so not searched.
A minimally obtrusive feature flag library
Not on Stackage, so not searched.
Stop execution with rage.