Agda-2.3.0: A dependently typed functional programming language and proof assistant

Agda.TypeChecking.Telescope

Synopsis

Documentation

renameP :: Subst t => Permutation -> t -> tSource

The permutation should permute the corresponding telescope. (left-to-right list)

renaming :: Permutation -> [Term]Source

If permute  : [a] -> [a], then substs (renaming ) : Term  -> Term 

renamingR :: Permutation -> [Term]Source

If permute  : [a] -> [a], then substs (renamingR ) : Term  -> Term 

flattenTel :: Telescope -> [Arg Type]Source

Flatten telescope: ( : Tel) -> [Type ]

reorderTel :: [Arg Type] -> Maybe PermutationSource

Order a flattened telescope in the correct dependeny order:  -> Permutation ( -> ~)

unflattenTel :: [String] -> [Arg Type] -> TelescopeSource

Unflatten: turns a flattened telescope into a proper telescope. Must be properly ordered.

teleNames :: Telescope -> [String]Source

Get the suggested names from a telescope

data SplitTel Source

A telescope split in two.

splitTelescope :: VarSet -> Telescope -> SplitTelSource

Split a telescope into the part that defines the given variables and the part that doesn't.

telViewUpTo :: Int -> Type -> TCM TelViewSource

telViewUpTo n t takes off the first n function types of t. Takes off all if $n < 0$.

piApplyM :: Type -> Args -> TCM TypeSource

A safe variant of piApply.