category-extras-0.44.4: src/Control/Applicative/Parameterized.hs
{-# OPTIONS -fglasgow-exts #-}
-----------------------------------------------------------------------------
-- |
-- Module : Control.Applicative.Paramterized
-- Copyright : (C) 2008 Edward Kmett
-- License : BSD-style (see the file LICENSE)
--
-- Maintainer : Edward Kmett <ekmett@gmail.com>
-- Stability : experimental
-- Portability : portable
--
----------------------------------------------------------------------------
module Control.Applicative.Parameterized
( PApplicative(..)
, PPointed(..)
) where
import Control.Bifunctor.Pointed
class PPointed f => PApplicative f where
pap :: f (a -> b) c -> f a c -> f b c