On this page:
struct
struct/ ctc
Version: 4.2

 (require mzlib/unit)

The mzlib/unit library mostly re-provides scheme/unit, except for struct and struct/ctc from scheme/unit.

(struct id (field-id ...) omit-decl ...)
 
omit-decl = -type
  | -selectors
  | -setters
  | -constructor

A signature form like struct from scheme/unit, but with a different syntax for the options that limit exports.

(struct/ctc id ([field-id contract-expr] ...) omit-decl ...)
 
omit-decl = -type
  | -selectors
  | -setters
  | -constructor

A signature form like struct/ctc from scheme/unit, but with a different syntax for the options that limit exports.