fay-base-0.21.2.0: The base package for Fay.
Safe HaskellNone
LanguageHaskell2010

Data.Function

Description

Functions

Synopsis

Documentation

on :: (b -> b -> c) -> (a -> b) -> a -> a -> c Source #

(*) on f = x y -> f x * f y.

fmap :: (a -> b) -> Fay a -> Fay b Source #

The "f" is for "Fay", not "Functor" ;)

ap :: Fay (a -> b) -> Fay a -> Fay b Source #

See <*>.

(<*>) :: Fay (a -> b) -> Fay a -> Fay b Source #

A la Control.Applicative.