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

Agda.Syntax.Common

Description

Some common syntactic entities are defined in this module.

Synopsis

Documentation

data Hiding Source

Constructors

Hidden 
NotHidden 

data Relevance Source

A function argument can be relevant or irrelevant.

Constructors

Relevant

the argument is (possibly) relevant at compile-time

Irrelevant

the argument is irrelevant at compile- and runtime

Forced

the argument can be skipped during equality checking

ignoreForced :: Relevance -> RelevanceSource

For comparing Relevance ignoring Forced.

irrelevant :: Bool -> RelevanceSource

Relevance from Bool.

data Arg e Source

A function argument can be hidden and/or irrelevant.

Constructors

Arg 

hide :: Arg a -> Arg aSource

withArgsFrom :: [a] -> [Arg b] -> [Arg a]Source

xs withArgsFrom args translates xs into a list of Args, using the elements in args to fill in the non-unArg fields.

Precondition: The two lists should have equal length.

data Named name a Source

Constructors

Named 

Fields

nameOf :: Maybe name
 
namedThing :: a
 

unnamed :: a -> Named name aSource

named :: name -> a -> Named name aSource

type NamedArg a = Arg (Named String a)Source

Only Hidden arguments can have names.

data IsInfix Source

Functions can be defined in both infix and prefix style. See Agda.Syntax.Concrete.LHS.

Constructors

InfixDef 
PrefixDef 

data Access Source

Access modifier.

data IsAbstract Source

Abstract or concrete

Constructors

AbstractDef 
ConcreteDef 

data NameId Source

The unique identifier of a name. Second argument is the top-level module identifier.

Constructors

NameId Nat Integer 

newtype Constr a Source

Constructors

Constr a