I'm just reading Dependent Types at Work. In the introduction to parametrised types, the author mentions that in this declaration
data List (A : Set) : Set where
[] : List A
_::_ : A → List A → List A
the type of List
is Set → Set
and that A
becomes implicit argument to both constructors, ie.
[] : {A : Set} → List A
_::_ : {A : Set} → A → List A → List A
Well, I tried to rewrite it a bit differently
data List : Set → Set where
[] : {A : Set} → List A
_::_ : {A : Set} → A → List A → List A
which sadly doesn't work (I'm trying to learn Agda for two days or so, but from what I gathered it's because the constructors are parametrised over Set₀
and so List A
must be in Set₁
).
Indeed, the following is accepted
data List : Set₀ → Set₁ where
[] : {A : Set₀} → List A
_::_ : {A : Set₀} → A → List A → List A
however, I'm no longer able to use {A : Set} → ... → List (List A)
(which is perfectly understandable).
So my question: What is the actual difference between List (A : Set) : Set
and List : Set → Set
?
Thanks for your time!
I take the liberty to rename the data types. The first, which is indexed on
Set
will be calledListI
, and the secondListP
, hasSet
as a parameter:In data types parameters go before the colon, and arguments after the colon are called indicies. The constructors can be used in the same way, you can apply the implicit set:
There difference comes when pattern matching. For the indexed version we have:
This cannot be done for
ListP
:The error message is
ListP
can also be defined with a dummy module, asListD
:Perhaps a bit surprising,
ListD
is equal toListP
. We cannot pattern match on the argument toDummy
:This gives the same error message as for
ListP
.ListP
is an example of a parameterised data type, which is simpler thanListI
, which is an inductive family: it "depends" on the indicies, although in this example in a trivial way.Parameterised data types are defined on the wiki, and here is a small introduction.
Inductive families are not really defined, but elaborated on in the wiki with the canonical example of something that seems to need inductive families:
Disregarding the Type index, a simplified version of this could not be written with in the
Dummy
-module way because oflam
constructor.Another good reference is Inductive Families by Peter Dybjer from 1997.
Happy Agda coding!