List is an immutable linked list data structure.
Type Definition
Constructors
nil
Creates an emptyList.
cons
Prepends an element to aList.
make
Creates aList from values.
Operations
head
Retrieves the first element.tail
Retrieves all but the first element.map
Transforms elements in aList.