Portability | non-portable (GHC Extensions) |
---|---|
Stability | experimental |
Maintainer | Patrick Bahr <paba@diku.dk> |
Safe Haskell | Safe-Infered |
This module implements the decomposition of terms into function symbols and arguments resp. variables.
Documentation
This type represents decompositions of functorial values.
type DecompTerm f v = Decomp f v (Term f)Source
This type represents decompositions of terms.
class (HasVars f v, Functor f, Foldable f) => Decompose f v whereSource
This class specifies the decomposability of a functorial value.
structure :: Functor f => f a -> Const fSource
This function computes the structure of a functorial value.
arguments :: Foldable f => f a -> [a]Source
This function computes the arguments of a functorial value.
decompose :: Decompose f v => Term f -> DecompTerm f vSource
This function decomposes a term.