On this page:
define/ contract
box/ c
vectorof
vector/ c
struct/ c
->
->*
opt->
opt->*
->d
->d*
->r
->pp

 (require mzlib/contract)

This library is designed as a backwards compatible library for old uses of contracts. It should not be used for new libraries; use racket/contract instead.

The main differences: the function contract syntax is more regular and function contracts now support keywords, and union is now or/c.

The mzlib/contract library re-exports many bindings from racket/contract:

  

</c

  

flat-rec-contract

  

<=/c

  

guilty-party

  

=/c

  

integer-in

  

>/c

  

list/c

  

>=/c

  

listof

  

and/c

  

make-none/c

  

any

  

make-proj-contract

  

any/c

  

natural-number/c

  

between/c

  

none/c

  

box-immutable/c

  

not/c

  

build-compound-type-name

  

one-of/c

  

coerce-contract

  

or/c

  

cons/c

  

parameter/c

  

contract

  

printable/c

  

contract-first-order-passes?

  

promise/c

  

contract-violation->string

  

provide/contract

  

contract?

  

raise-contract-error

  

define-contract-struct

  

real-in

  

false/c

  

recursive-contract

  

flat-contract

  

string/len

  

flat-contract-predicate

  

symbols

  

flat-contract?

  

syntax/c

  

flat-murec-contract

  

vector-immutable/c

  

flat-named-contract

  

vector-immutableof

It also provides the old version of the following forms:

(define/contract id contract-expr init-value-expr)
Attaches the contract contract-expr to init-value-expr and binds that to id.

The define/contract form treats individual definitions as units of blame. The definition itself is responsible for positive (co-variant) positions of the contract and each reference to id (including those in the initial value expression) must meet the negative positions of the contract.

Error messages with define/contract are not as clear as those provided by provide/contract, because define/contract cannot detect the name of the definition where the reference to the defined variable occurs. Instead, it uses the source location of the reference to the variable as the name of that definition.

(box/c c)  flat-contract?
  c : flat-contract?
Returns a flat contract that recognizes boxes. The content of the box must match c.

Accepts a flat contract and returns a flat contract that checks for vectors whose elements match the original contract.

(vector/c c ...)  flat-contract?
  c : flat-contract?
Accepts any number of flat contracts and returns a flat contract that recognizes vectors. The number of elements in the vector must match the number of arguments supplied to vector/c, and each element of the vector must match the corresponding flat contract.

(struct/c struct-id flat-contract-expr ...)
Produces a flat contract that recognizes instances of the structure type named by struct-id, and whose field values match the flat contracts produced by the flat-contract-exprs.

(-> contract-dom-expr ... any)
(-> contract-dom-expr ... contract-rng-expr)
This is a restricted form of racket/contract’s -> contract that does not handle keyword arguments or multiple value results.

(->* (contract-dom-expr ...) ->*rng)
(->* (contract-dom-expr ...) contract-rest-expr ->*rng)
 
->*rng = (contract-rng-expr ...)
  | any
The ->* form matches up to racket/contract’s -> and ->*, according to the following rules; each equation on the the left refers to a mzlib/contract combinator; on the right are the racket/contract equivalents.
(->* (contract-dom-expr ...) any) =
(-> contract-dom-expr ... any)
(->* (contract-dom-expr ...) (contract-rng-expr ...)) =
(-> contract-dom-expr ... (values contract-rng-expr))
(->* (contract-expr ...) contract-rest-expr any) =
(->* (contract-expr ...) #:rest contract-rest-expr any)
(->* (contract-expr ...) contract-rest-expr (contract-rng-expr ...)) =
(->* (contract-expr ...)
     #:rest contract-rest-expr
     (values contract-rng-expr ...))

(opt-> (contract-req-expr ...) (contact-opt-expr ...) any)
(opt-> (contract-req-expr ...) (contact-opt-expr ...) contract-rng-expr)

The opt-> form is a simplified verison of racket/contract’s ->* and appearances of opt-> can be simply replaced with ->*.

(opt->* (contract-req-expr ...) (contact-opt-expr ...) any)
(opt->* (contract-req-expr ...) (contact-opt-expr ...) (contract-rng-expr ...))

The opt->* form matches up to racket/contract’s ->*, according to the following rules; each equation on the the left refers to a mzlib/contract combinator; on the right are the racket/contract equivalents.

(opt->* (contract-req-expr ...) (contract-opt-expr ...) any) =
(->* (contract-req-expr ...) (contract-opt-expr ...) any)
(opt->* (contract-req-expr ...)
        (contract-opt-expr ...)
        (contract-rng-expr ...)) =
(->* (contract-req-expr ...)
     (contract-opt-expr ...)
     (values contract-rng-expr ...))

(->d contract-dom-expr ... contract-rng-fun-expr)
The ->d contract constructor is just like ->, except that the range position is expected to be a function that accepts the actual arguments passed to the function, and returns a contract for the range. For example, this is one contract for sqrt:
(->d real?
     (λ (in)
       (and/c real?
              (λ (out)
                (< (abs (- (sqr out) in))
                   0.01)))))
It says that the input must be a real number, and so must the result, and that the square of the result is within 0.01 of input.

(->d* (contract-dom-expr ...) contract-rng-fun-expr)
(->d* (contract-dom-expr ...) contract-rest-expr contract-rng-fun-expr)
The ->d* contract constructor is a generalization of ->d to support multiple values and rest arguments.

In the two sub-expression case, the first sequence of contracts are contracts on the domain of the function and the second subexpression is expected to evaluate to a function that accepts as many arguments as there are expressions in the first position. It should return multiple values: one contract for each result of the function.

In the three sub-expression case, the first and last subexpressions are just like the sub-expressions in the two sub-expression case; the middle sub-expression si expected to evaluate to a contract on the rest argument.

(->r ([dom-x contract-dom-expr] ...) rng)
(->r ([dom-x contract-dom-expr] ...) rest-x contract-rest-expr rng)
 
rng = any
  | (values contract-expr ...)
  | contract-expr
The ->r form is a simplified version of racket/contract’s ->i, where each contract-dom-expr is parameterized over all of the dom-x variables (and does lax checking; see ->d for details).

(->pp ([dom-x contract-dom-expr] ...) pre-cond-expr any)
(->pp ([dom-x contract-dom-expr] ...)
      pre-cond-expr
      (values [rng-x contract-rng-expr] ...)
      post-cond-expr)
(->pp ([dom-x contract-dom-expr] ...)
      pre-cond-expr
      contract-rng-expr
      rng-x
      post-cond-expr)
The ->pp form, like ->r is a simplified version of racket/contract’s ->i, where each contract-dom-expr is parameterized over all of the dom-x variables (and does lax checking; see racket/contract’s ->d for details). Unlike ->r, it also has pre- and post-condition expressions; these expressions are also implicitly parameterized over all of the dom-x variables and the post-condition is also paramterized over rng-x, which is bound to the result of the function.