geniplate-mirror-0.7.5: Use Template Haskell to generate Uniplate-like functions.

Safe HaskellNone
LanguageHaskell98

Data.Generics.Geniplate

Synopsis

Documentation

genUniverseBi #

Arguments

:: Name

function of type S -> [T]

-> Q Exp 

Generate TH code for a function that extracts all subparts of a certain type. The argument to genUniverseBi is a name with the type S -> [T], for some types S and T. The function will extract all subparts of type T from S.

genUniverseBiT #

Arguments

:: [TypeQ]

types not touched by universeBi

-> Name

function of type S -> [T]

-> Q Exp 

Same as genUniverseBi, but does not look inside any types mention in the list of types.

genTransformBi #

Arguments

:: Name

function of type (S->S) -> T -> T

-> Q Exp 

Generate TH code for a function that transforms all subparts of a certain type. The argument to genTransformBi is a name with the type (S->S) -> T -> T, for some types S and T. The function will transform all subparts of type S inside T using the given function.

genTransformBiT :: [TypeQ] -> Name -> Q Exp #

Same as genTransformBi, but does not look inside any types mention in the list of types.

class UniverseBi s t where #

Class for universeBi.

Minimal complete definition

universeBi

Methods

universeBi :: s -> [t] #

universe :: UniverseBi a a => a -> [a] #

instanceUniverseBi #

Arguments

:: TypeQ

(source, target) types

-> Q [Dec] 

Create a UniverseBi instance. The TypeQ argument should be a pair; the source and target types for universeBi.

instanceUniverseBiT #

Arguments

:: [TypeQ]

types not touched by universeBi

-> TypeQ

(source, target) types

-> Q [Dec] 

Create a UniverseBi instance with certain types being abstract. The TypeQ argument should be a pair; the source and target types for universeBi.

class TransformBi s t where #

Class for transformBi.

Minimal complete definition

transformBi

Methods

transformBi :: (s -> s) -> t -> t #

transform :: TransformBi a a => (a -> a) -> a -> a #

instanceTransformBi #

Arguments

:: TypeQ

(inner, outer) types

-> Q [Dec] 

Create a TransformBi instance. The TypeQ argument should be a pair; the inner and outer types for transformBi.

instanceTransformBiT #

Arguments

:: [TypeQ]

types not touched by transformBi

-> TypeQ

(inner, outer) types

-> Q [Dec] 

Create a TransformBi instance with certain types being abstract. The TypeQ argument should be a pair; the inner and outer types for transformBi.

class TransformBiM m s t where #

Class for transformBiM.

Minimal complete definition

transformBiM

Methods

transformBiM :: (s -> m s) -> t -> m t #

transformM :: TransformBiM m a a => (a -> m a) -> a -> m a #

instanceTransformBiM :: TypeQ -> TypeQ -> Q [Dec] #

Create a TransformBiM instance.

instanceTransformBiMT :: [TypeQ] -> TypeQ -> TypeQ -> Q [Dec] #

Create a TransformBiM instance with certain types being abstract.

class DescendBiM m s t where #

Class for descendBiM.

Minimal complete definition

descendBiM

Methods

descendBiM :: (s -> m s) -> t -> m t #

instanceDescendBiM :: TypeQ -> TypeQ -> Q [Dec] #

Create a DescendBiM instance.

instanceDescendBiMT :: [TypeQ] -> TypeQ -> TypeQ -> Q [Dec] #

Create a DescendBiM instance with certain types being abstract.

class DescendM m t where #

Class for descendM.

Minimal complete definition

descendM

Methods

descendM :: (t -> m t) -> t -> m t #

descend :: DescendM Identity a => (a -> a) -> a -> a #

instanceDescendM :: TypeQ -> TypeQ -> Q [Dec] #

Create a DescendBiM instance.

instanceDescendMT :: [TypeQ] -> TypeQ -> TypeQ -> Q [Dec] #

Create a DescendBiM instance with certain types being abstract.