From 63f19f992d330a1a80ef47d2c228dd74db609b57 Mon Sep 17 00:00:00 2001
From: bringert Transfer language reference
Author: Björn Bringert <bringert@cs.chalmers.se>
-Last update: Wed Dec 7 12:50:46 2005
+Last update: Wed Dec 7 13:24:23 2005
Transfer is a dependently typed functional programming language -with eager evaluation. +with eager evaluation. The language supports generalized algebraic +datatypes, pattern matching and function overloading.
-To give the block structure of a piece of code without using layout
-syntax, you can enclose the block in curly braces ({ }) and
-separate the parts of the blocks with semicolons (;).
+To give the block structure without using layout
+syntax, you can enclose the block in curly braces and
+separate the parts of the blocks with semicolons.
For example, this case expression: @@ -113,7 +114,7 @@ is equivalent to this one:
Here the layout is insignificant, as the structure is given with -braces and semicolons. Thus the above is equivalent to: +braces and semicolons. Thus it is equivalent to:
case x of { p1 -> e1 ; p2 -> e2 }
@@ -122,13 +123,16 @@ braces and semicolons. Thus the above is equivalent to:
Imports
-A Transfer module start with some imports. Most modules will have to
+A Transfer module starts with some imports. Most modules will have to
import the prelude, which contains definitons used by most programs:
import prelude
+
+For more information about the standard prelude, see Standard prelude.
+
Function declarations
@@ -145,19 +149,38 @@ where f is the function's name, and T its type. See
are written.
-The definition of the function is the given as a sequence of pattern
+The definition of the function is then given as a sequence of pattern
equations. The first equation whose patterns match the function arguments
is used when the function is called. Pattern equations are on the form:
- f p11 ... p1m = exp
+ f p11 ... p1m = exp1
...
- f pn1 ... pnm = exp
+ f pn1 ... pnm = expn
where p11 to pnm are patterns, see Patterns.
+
+Pattern equations can also have guards, boolean expressions which determine
+whether to use the equation when the pattern has been matched. Pattern equations
+with guards are written:
+
+
+ f p11 ... p1m | guard1 = exp1
+ ...
+ f pn1 ... pnm | guardn = expn
+
+
+
+Pattern equations with and without guards can be mixed in the definiton of
+a function.
+
+
+Any variables bound in the patterns are in scope in the guards and
+right hand sides of each pattern equation.
+
Data type declarations
@@ -176,6 +199,9 @@ Here D is the name of the data type, T is the type of
constructor, c1 to cn are the data constructor names, and
Tc1 to Tcn are their types.
+
+FIXME: explain the constraints on the types of type and data constructors.
+
Lambda expressions
@@ -202,6 +228,11 @@ To give local definition to some names, use:
in exp
+
+Here, the variables x1 to xn are in scope in all the expressions
+exp1 to expn, and in exp. Thus let-defined functions can be
+mutually recursive.
+
To write functions which take more than one argument, we use currying. -A function which takes n arguments is a function which takes 1 +A function which takes n arguments is a function which takes one argument and returns a function which takes n-1 arguments. Thus,
@@ -234,7 +265,7 @@ or, equivalently, since -> associates to the right:
-is the type of functions which take 2 arguments, the first of type
+is the type of functions which take teo arguments, the first of type
A and the second of type B. This arrangement lets us do
partial application of function to fewer arguments than the function
is declared to take, returning a new function which takes the rest
@@ -246,19 +277,19 @@ In a function type, the value of an argument can be used later
in the type. Such dependent function types are written:
- (x1 : T1) -> ... -> (xn : Tn) -> T + (x : A) -> B
-Here, x1 can be used in T2 to Tn, x1 can be used
-in T2 to Tn.
+Here, x is in scope in B.
The type of integers is called Integer.
-standard decmial integer literals are used to represent values of this type.
+Standard decmial integer literals, such as 0 and 1234 are used to
+represent values of this type.
@@ -268,14 +299,16 @@ in decimal notation, e.g. 123.456.
-There is a primitive String type. This might be replaced by a list of
-characters representation in the future. String literals are written
+There is a primitive String type. String literals are written
with double quotes, e.g. "this is a string".
+FIXME: This might be replaced by a list of
+characters representation in the future.
Booleans are not a built-in type, though some features of the Transfer language
-depend on them.
+depend on them. The Bool type is defined in the
+Standard prelude.
data Bool : Type where @@ -317,7 +350,7 @@ Record values are constructed usingrecexpressions:Record projection
-Fields are selection from records using the
.operator. This expression selects +Fields are selected from records using the.operator. This expression selects the fieldlfrom the record valuer:@@ -348,7 +381,7 @@ A record of some type R1 can be used as a record of any type R2 such that for every fieldp1 : T1in R2,p1 : T1is also a field of T1. - +Tuples
Tuples on the form: @@ -373,19 +406,19 @@ The list type is declared as:
data List : Type -> Type where - Nil : (A:Type) -> List A + Nil : (A:Type) -> List A Cons : (A:Type) -> A -> List A -> List A-The empty lists can be written as
[]. There is a operator::which can +The empty list can be written as[]. There is an operator::which can be used instead ofCons. These are just syntactic sugar for expressions usingNilandCons, with the type arguments hidden.Case expressions
-Pattern matching is done in pattern equations and by using the +Pattern matching is done in pattern equations and with the
caseconstruct:@@ -424,9 +457,8 @@ Constructor patterns are written as:where
Cis a data constructor which takesnarguments. -If the value to be matched is the constructorCapplied to -argumentsv1tovn, thenv1tovnwill be matched -againstp1topn. +If the value to be matched isC v1 ... vn, +thenv1tovnwill be matched againstp1topn.Variable patterns
@@ -440,11 +472,14 @@ A variable pattern is a single identifier:A variable pattern matches any value, and binds the variable name to the value. A variable may not occur more than once in a pattern. +Note that variable patterns may not use the same identifier as data constructors +which are in scope, since they will then be interpreted as constructor +patterns.
Wildcard patterns
-Wildcard patterns are written as with a single underscore: +Wildcard patterns are written with a single underscore:
_ @@ -463,12 +498,12 @@ Record patterns match record values:-A record value matches a record pattern, if the record value has all the +A record value matches a record pattern if the record value has all the fields
l1toln, and their values matchp1topn.-Note that a record value may have more fields than the record pattern and -they will still match. +Note that a record value may have more fields than the record pattern. +The values of these fields do not influence the pattern matching.
Disjunctive patterns
@@ -486,8 +521,8 @@ FIXME: talk about how this is expandedList patterns
-When pattern matching in lists, there are two special constructs. -A whole list can be matched be a list of patterns: +When pattern matching on lists, there are two special constructs. +A whole list can by matched be a list of patterns:
[p1, ... , pn] @@ -512,7 +547,7 @@ Non-empty lists can also be matched with::-patterns:-This pattern matches a non-empty lists such that the first element of +This pattern matches non-empty lists such that the first element of the list matches
@@ -525,7 +560,8 @@ Tuples patterns on the form:p1and the rest of the list matchesp2.-are syntactic sugar for record patterns, in the same way as tuple expressions. +are syntactic sugar for record patterns, in the same way as +tuple expressions, see Tuples.
String literal patterns
@@ -540,14 +576,14 @@ Integer literals can be used as patterns.Metavariables
-Metavariable are written as questions marks: +Metavariables are written as questions marks:
?-A metavariable is a way to the the type checker that: +A metavariable is a way to tell the type checker that: "you should be able to figure out what this should be, I can't be bothered to tell you".
@@ -560,7 +596,7 @@ and dictionary arguments explicitly.In Transfer, functions can be overloaded by having them take a record of functions as an argument. For example, the functions for equality -and inequality in the Transfer prelude module are defined as: +and inequality in the Transfer Prelude are defined as:
Eq : Type -> Type @@ -577,7 +613,7 @@ and inequality in the Transfer prelude module are defined as: We callEqa type class, though it's actually just a record type used to pass function implementations to overloaded functions. We call a value of typeEq Aan Eq dictionary for the type A. -The dictionary is used to look up the version of the function for the +The dictionary is used to look up the version of some function for the particular type we want to use the function on. Thus, in order to use theeqfunction on two integers, we need a dictionary of typeEq Integer: @@ -598,7 +634,7 @@ can then call the overloadedeqfunction with the dictionary:Giving the type at which to use the overloaded function, and the appropriate -dictionary is cumbersome. Metavariables come to the rescue: +dictionary can be cumbersome. Metavariables come to the rescue:
eq ? ? x y @@ -628,24 +664,30 @@ class for orderings:To extend an existing class, we keep the fields of the class we want to extend, and add any new fields that we want. Because of record subtyping, -for any type A, a value of type
Ord Ais also a value of typeEq A. +for any typeA, a value of typeOrd Ais also a value of typeEq A.Extending multiple classes
A type class can also extend several classes, by simply having all the fields -from all the classes we want to extend. The
- +Numclass described below is -an example of this. +from all the classes we want to extend. TheNumclass in the +Standard prelude is an example of this.Standard prelude
-The standard prelude, see prelude.tra +The standard prelude, see prelude.tra, contains definitions of a number of standard types, functions and type classes.
Operators
++Most built-in operators in the Transfer language are translated +to calls to overloaded functions. This means that they can be +used at any type for which there is a dictionary for the type class +in question. +
Unary operators
- |
-10 | --x => negate ? ? x |
+10 | +-x => negate ? ? x |