ghc-9.0.2: The GHC API
Safe HaskellSafe-Inferred
LanguageHaskell2010

GHC.Cmm.Monad

Documentation

newtype PD a Source #

Constructors

PD 

Fields

Instances

Instances details
Applicative PD Source # 
Instance details

Defined in GHC.Cmm.Monad

Methods

pure :: a -> PD a Source #

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

liftA2 :: (a -> b -> c) -> PD a -> PD b -> PD c Source #

(*>) :: PD a -> PD b -> PD b Source #

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

Functor PD Source # 
Instance details

Defined in GHC.Cmm.Monad

Methods

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

(<$) :: a -> PD b -> PD a Source #

Monad PD Source # 
Instance details

Defined in GHC.Cmm.Monad

Methods

(>>=) :: PD a -> (a -> PD b) -> PD b Source #

(>>) :: PD a -> PD b -> PD b Source #

return :: a -> PD a Source #

HasDynFlags PD Source # 
Instance details

Defined in GHC.Cmm.Monad

liftP :: P a -> PD a Source #