base-compat-0.10.5: A compatibility layer for base

Safe HaskellSafe
LanguageHaskell98

Data.Function.Compat

Synopsis

Documentation

(&) :: a -> (a -> b) -> b infixl 1 #

& is a reverse application operator. This provides notational convenience. Its precedence is one higher than that of the forward application operator $, which allows & to be nested in $.

>>> 5 & (+1) & show
"6"

Since: base-4.8.0.0