papa-base-0.1.0: src/Papa/Control/Applicative.hs
{-# LANGUAGE NoImplicitPrelude #-}
module Papa.Control.Applicative(
const
, return
) where
import Control.Applicative(Applicative(pure))
const ::
Applicative f =>
a
-> f a
const =
pure
return ::
Applicative f =>
a
-> f a
return =
pure