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

GHC.Core.PatSyn

Synopsis

Main data types

data PatSyn Source #

Pattern Synonym

See Note [Pattern synonym representation] See Note [Pattern synonym signature contexts]

Instances

Instances details
Data PatSyn Source # 
Instance details

Defined in GHC.Core.PatSyn

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> PatSyn -> c PatSyn Source #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c PatSyn Source #

toConstr :: PatSyn -> Constr Source #

dataTypeOf :: PatSyn -> DataType Source #

dataCast1 :: Typeable t => (forall d. Data d => c (t d)) -> Maybe (c PatSyn) Source #

dataCast2 :: Typeable t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c PatSyn) Source #

gmapT :: (forall b. Data b => b -> b) -> PatSyn -> PatSyn Source #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> PatSyn -> r Source #

gmapQr :: forall r r'. (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> PatSyn -> r Source #

gmapQ :: (forall d. Data d => d -> u) -> PatSyn -> [u] Source #

gmapQi :: Int -> (forall d. Data d => d -> u) -> PatSyn -> u Source #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> PatSyn -> m PatSyn Source #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> PatSyn -> m PatSyn Source #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> PatSyn -> m PatSyn Source #

NamedThing PatSyn Source # 
Instance details

Defined in GHC.Core.PatSyn

Uniquable PatSyn Source # 
Instance details

Defined in GHC.Core.PatSyn

Outputable PatSyn Source # 
Instance details

Defined in GHC.Core.PatSyn

Methods

ppr :: PatSyn -> SDoc Source #

OutputableBndr PatSyn Source # 
Instance details

Defined in GHC.Core.PatSyn

Eq PatSyn Source # 
Instance details

Defined in GHC.Core.PatSyn

Methods

(==) :: PatSyn -> PatSyn -> Bool #

(/=) :: PatSyn -> PatSyn -> Bool #

mkPatSyn Source #

Arguments

:: Name 
-> Bool

Is the pattern synonym declared infix?

-> ([InvisTVBinder], ThetaType)

Universially-quantified type variables and required dicts

-> ([InvisTVBinder], ThetaType)

Existentially-quantified type variables and provided dicts

-> [FRRType]

Original arguments

-> Type

Original result type

-> PatSynMatcher

Matcher

-> PatSynBuilder

Builder

-> [FieldLabel]

Names of fields for a record pattern synonym

-> PatSyn 

Build a new pattern synonym

Type deconstruction

patSynName :: PatSyn -> Name Source #

The Name of the PatSyn, giving it a unique, rooted identification

patSynArity :: PatSyn -> Arity Source #

Arity of the pattern synonym

patSynIsInfix :: PatSyn -> Bool Source #

Should the PatSyn be presented infix?

isVanillaPatSyn :: PatSyn -> Bool Source #

Is this a 'vanilla' pattern synonym (no existentials, no provided constraints)?

patSynFieldType :: PatSyn -> FieldLabelString -> Type Source #

Extract the type for any given labelled field of the DataCon

pprPatSynType :: PatSyn -> SDoc Source #

Print the type of a pattern synonym. The foralls are printed explicitly