type-expander/scribblings/contracts-to-types.scrbl
2017-05-05 03:34:17 +02:00

44 lines
2.0 KiB
Racket

#lang scribble/manual
@require[(for-label racket/contract/base)
scribble/example]
@title{Using contract syntax to specify types}
@defmodule[type-expander/contracts-to-types]
@defform*[{(contract→type contract)
(contract->type contract)}]{
This is a simple type expander which translates common contracts to types.
Note that it only supports a limited number of contract constructors. The
following are supported: @racket[or/c], @racket[and/c] (the translation may
produce a type too complex for Typed/Racket to understand properly, though),
@racket[listof], @racket[list/c], @racket[*list/c], @racket[vectorof],
@racket[vector/c], @racket[cons/c], @racket[number?], @racket[integer?],
@racket[string?], @racket[symbol?], @racket[char?], @racket[boolean?],
@racket[bytes?], @racket[void?], @racket[null?], @racket[empty?],
@racket[list?], @racket[exact-nonnegative-integer?],
@racket[exact-positive-integer?], @racket[syntax/c], @racket[parameter/c],
@racket[promise/c], @racket[suggest/c], @racket[flat-rec-contract], some uses
of @racket[->] and @racket[->*], @racket['quoted-datum],
@racket[`quasiquoted-datum-with-unquoted-types]. Literal data (numbers,
strings, characters, booleans, byte strings, regular expressions and byte
regular expressions) are also interpreted as singleton types.
Furthermore, using @racket[,] anywhere outside of a quoted datum will leave
the type @racket[] unchaged, allowing the user to manually convert to types
only the parts which cannot be converted automatically.}
@defform*[{(:contract→type contract)
(:contract->type contract)}]{
Prints a representation of the contract translated as a type. It is then
possible to copy-paste that result into the code.
@examples[
(require type-expander/lang
racket/contract/base
type-expander/contracts-to-types)
(:contract→type (list/c 1 2 "str" (or/c integer? string?)))]
}