Version: 5.2
2 Special Form Reference
Typed Racket provides a variety of special forms above and beyond
those in Racket. They are used for annotating variables with types,
creating new types, and annotating expressions.
2.1 Binding Forms
loop, f, a, and v are names, t is a type.
e is an expression and body is a block.
(let: ([v : t e] ...) . body) |
(let: loop : t0 ([v : t e] ...) . body) |
Local bindings, like
let, each with
associated types. In the second form,
t0 is the type of the
result of
loop (and thus the result of the entire
expression as well as the final
expression in
body).
Type annotations are optional.
|
(let*: ([v : t e] ...) . body) |
|
|
|
|
2.2 Anonymous Functions
(lambda: formals . body) |
|
formals | | = | | ([v : t] ...) | | | | | | ([v : t] ... v : t *) | | | | | | ([v : t] ... v : t ...) |
|
A function of the formal arguments
v, where each formal
argument has the associated type. If a rest argument is present, then
it has type
(Listof t).
An alias for the same form using
lambda:.
A polymorphic function, abstracted over the type variables
a. The type variables a are bound in both the types
of the formal, and in any type expressions in the body.
A function of multiple arities. Note that each formals must have a
different arity.
For the type declaration of
add-map look at
case-lambda.
A polymorphic function of multiple arities.
(opt-lambda: formals . body) |
|
formals | | = | | ([v : t] ... [v : t default] ...) | | | | | | ([v : t] ... [v : t default] ... v : t *) | | | | | | ([v : t] ... [v : t default] ... v : t ...) |
|
A function with optional arguments.
A polymorphic function with optional arguments.
2.3 Loops
(for: type-ann-maybe (for-clause ...) | expr ...+) |
|
|
type-ann-maybe | | = | | | | | | | | : u | | | | | | for:-clause | | = | | [id : t seq-expr] | | | | | | [id seq-expr] | | | | | | #:when guard |
|
Like
for, but each
id having the associated type
t. Since the return type is always
Void, annotating
the return type of a
for form is optional. Unlike
for, multi-valued
seq-exprs are not supported.
Type annotations in clauses are optional for all
for:
variants.
(for/list: type-ann-maybe (for:-clause ...) expr ...+) |
|
(for/hash: type-ann-maybe (for:-clause ...) expr ...+) |
|
(for/hasheq: type-ann-maybe (for:-clause ...) expr ...+) |
|
|
(for/vector: type-ann-maybe (for:-clause ...) expr ...+) |
|
|
(for/and: type-ann-maybe (for:-clause ...) expr ...+) |
|
(for/or: type-ann-maybe (for:-clause ...) expr ...+) |
|
(for/first: type-ann-maybe (for:-clause ...) expr ...+) |
|
(for/last: type-ann-maybe (for:-clause ...) expr ...+) |
|
(for/sum: type-ann-maybe (for:-clause ...) expr ...+) |
|
|
(for*/list: type-ann-maybe (for:-clause ...) expr ...+) |
|
(for*/hash: type-ann-maybe (for:-clause ...) expr ...+) |
|
|
|
|
|
(for*/and: type-ann-maybe (for:-clause ...) expr ...+) |
|
(for*/or: type-ann-maybe (for:-clause ...) expr ...+) |
|
(for*/first: type-ann-maybe (for:-clause ...) expr ...+) |
|
(for*/last: type-ann-maybe (for:-clause ...) expr ...+) |
|
(for*/sum: type-ann-maybe (for:-clause ...) expr ...+) |
|
|
These behave like their non-annotated counterparts, with the exception
that
#:when clauses can only appear as the last
for:-clause. The return value of the entire form must be of
type
u. For example, a
for/list: form would be
annotated with a
Listof type. All annotations are optional.
(for/lists: type-ann-maybe ([id : t] ...) | (for:-clause ...) | expr ...+) |
|
|
(for/fold: type-ann-maybe ([id : t init-expr] ...) | (for:-clause ...) | expr ...+) |
|
|
These behave like their non-annotated counterparts. Unlike the above,
#:when clauses can be used freely with these.
(for*: void-ann-maybe (for-clause ...) | expr ...+) |
|
|
(for*/lists: type-ann-maybe ([id : t] ...) | (for:-clause ...) | expr ...+) |
|
|
(for*/fold: type-ann-maybe ([id : t init-expr] ...) | (for:-clause ...) | expr ...+) |
|
|
These behave like their non-annotated counterparts.
These are identical to
for and
for*, but provide additional annotations to help the typechecker.
(do: : u ([id : t init-expr step-expr-maybe] ...) | (stop?-expr finish-expr ...) | expr ...+) |
|
|
step-expr-maybe | | = | | | | | | | | step-expr |
|
Like
do, but each
id having the associated type
t, and
the final body
expr having the type
u. Type
annotations are optional.
2.4 Definitions
These forms define variables, with annotated types. The first form
defines
v with type
t and value
e. The
second and third forms defines a function
f with appropriate
types. In most cases, use of
: is preferred to use of
define:.
2.5 Structure Definitions
(struct: maybe-type-vars name-spec ([f : t] ...) options ...) |
|
maybe-type-vars | | = | | | | | | | | (v ...) | | | | | | name-spec | | = | | name | | | | | | name parent | | | | | | options | | = | | #:transparent | | | | | | #:mutable |
|
Defines a
structure with the name
name, where the
fields
f have types
t, similar to the behavior of
struct.
When
parent is present, the
structure is a substructure of
parent. When
maybe-type-vars is present, the structure is polymorphic in the type
variables
v.
Options provided have the same meaning as for the struct form.
(define-struct: maybe-type-vars name-spec ([f : t] ...) options ...) |
|
maybe-type-vars | | = | | | | | | | | (v ...) | | | | | | name-spec | | = | | name | | | | | | (name parent) | | | | | | options | | = | | #:transparent | | | | | | #:mutable |
|
2.6 Names for Types
The first form defines
name as type, with the same meaning as
t. The second form is equivalent to
(define-type name (All (v ...) t)). Type names may
refer to other types defined in the same module, but
cycles among them are prohibited.
2.7 Generating Predicates Automatically
Defines
name as a predicate for the type
t.
name has the type
(Any -> Boolean : t).
t may not contain function types.
2.8 Type Annotation and Instantiation
This declares that v has type t.
The definition of v must appear after this declaration. This
can be used anywhere a definition form may be used.
This declares that the vs have
the types t, and also provides all of the vs.
This declares that the variable v has type
t. This is legal only for binding occurrences of v.
Ensure that e has type t, or
some subtype. The entire expression has type t.
This is legal only in expression contexts.
A reader abbreviation for
(ann e t).
Instantiate the type of
e with types
t ....
e must have a polymorphic type with the
appropriate number of type variables. This is legal only in expression
contexts.
Examples: |
> (: fold-list : (All (A) (Listof A) -> (Listof A))) | | > (fold-list (list "1" "2" "3" "4")) | - : (Listof String) | '("4" "3" "2" "1") |
|
A reader abbreviation for
(inst e t ...).
2.9 Require
Here, m is a module spec, pred is an identifier
naming a predicate, and r is an optionally-renamed identifier.
(require/typed m rt-clause ...) |
|
rt-clause | | = | | [r t] | | | | | | [struct name ([f : t] ...) | struct-option ...] |
| | | | | | [struct (name parent) ([f : t] ...) | struct-option ...] |
| | | | | | [opaque t pred] | | | | | | struct-option | | = | | #:constructor-name constructor-id | | | | | | #:extra-constructor-name constructor-id |
|
{This form requires identifiers from the module m, giving
them the specified types.
The first form requires r, giving it type t.
The second and third forms require the struct with name name
with fields f ..., where each field has type t. The
third form allows a parent structure type to be specified.
The parent type must already be a structure type known to Typed
Racket, either built-in or via require/typed. The
structure predicate has the appropriate Typed Racket filter type so
that it may be used as a predicate in if expressions in Typed
Racket.
The fourth case defines a new type t. pred, imported from
module m, is a predicate for this type. The type is defined
as precisely those values to which pred produces
#t. pred must have type (Any -> Boolean).
Opaque types must be required lexically before they are used.
In all cases, the identifiers are protected with contracts which
enforce the specified types. If this contract fails, the module
m is blamed.
Some types, notably the types of predicates such as number?,
cannot be converted to contracts and raise a static error when used in
a require/typed form. Here is an example of using
case-> in require/typed.
file-or-directory-modify-seconds has some arguments which are optional,
so we need to use case->.}
2.10 Other Forms
Identical to
with-handlers, but provides additional annotations to help the typechecker.
Performs type checking of forms entered at the read-eval-print loop. The
#%top-interaction form also prints the type of
form after
type checking.