fay-base-0.20.0.1: The base package for Fay.

Safe HaskellNone
LanguageHaskell98

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.