5.1 Defining Structure Types: struct
Programmer-Defined Datatypes in The Racket Guide introduces struct.
syntax
(struct id maybe-super (field ...) struct-option ...)
maybe-super =
| super-id field = field-id | [field-id field-option ...] struct-option = #:mutable | #:super super-expr | #:inspector inspector-expr | #:auto-value auto-expr | #:guard guard-expr | #:property prop-expr val-expr | #:transparent | #:prefab | #:constructor-name constructor-id | #:extra-constructor-name constructor-id | #:reflection-name symbol-expr | #:methods gen:name method-defs | #:omit-define-syntaxes | #:omit-define-values field-option = #:mutable | #:auto method-defs = (definition ...)
gen:name : identifier?
A struct form with n fields defines up to 4+2n names:
struct:id, a structure type descriptor value that represents the structure type.
constructor-id (which defaults to id), a constructor procedure that takes m arguments and returns a new instance of the structure type, where m is the number of fields that do not include an #:auto option.
id, a transformer binding that encapsulates information about the structure type declaration. This binding is used to define subtypes, and it also works with the shared and match forms. For detailed information about the binding of id, see Structure Type Transformer Binding.
The constructor-id and id can be the same, in which case id performs both roles. In that case, the expansion of id as an expression produces an otherwise inaccessible identifier that is bound to the constructor procedure; the expanded identifier has a 'constructor-for property whose value is an identifier that is free-identifier=? to id as well as a syntax property accessible via syntax-procedure-alias-property with an identifier that is free-identifier=? to id.
id?, a predicate procedure that returns #t for instances of the structure type (constructed by constructor-id or the constructor for a subtype) and #f for any other value.
id-field-id, for each field; an accessor procedure that takes an instance of the structure type and extracts the value for the corresponding field.
set-id-field-id!, for each field that includes a #:mutable option, or when the #:mutable option is specified as a struct-option; a mutator procedure that takes an instance of the structure type and a new field value. The structure is destructively updated with the new value, and #<void> is returned.
If super-id is provided, it must have a transformer binding of the same sort bound to id (see Structure Type Transformer Binding), and it specifies a supertype for the structure type. Alternately, the #:super option can be used to specify an expression that must produce a structure type descriptor. See Structures for more information on structure subtypes and supertypes. If both super-id and #:super are provided, a syntax error is reported.
Examples: | |||||||||
|
If the #:mutable option is specified for an individual field, then the field can be mutated in instances of the structure type, and a mutator procedure is bound. Supplying #:mutable as a struct-option is the same as supplying it for all fields. If #:mutable is specified as both a field-option and struct-option, a syntax error is reported.
Examples: | |||||||||
|
The #:inspector, #:auto-value, and #:guard options specify an inspector, value for automatic fields, and guard procedure, respectively. See make-struct-type for more information on these attributes of a structure type. The #:property option, which is the only one that can be supplied multiple times, attaches a property value to the structure type; see Structure Type Properties for more information on properties. The #:transparent option is a shorthand for #:inspector #f.
Examples: | |||||||||||||||
|
Use the prop:procedure property to implement an applicable structure, use prop:evt to create a structure type whose instances are synchronizable events, and so on. By convention, property names start with prop:.
The #:prefab option obtains a prefab (pre-defined, globally shared) structure type, as opposed to creating a new structure type. Such a structure type is inherently transparent and cannot have a guard or properties, so using #:prefab with #:transparent, #:inspector, #:guard, or #:property is a syntax error. If a supertype is specified, it must also be a prefab structure type.
Examples: | |||||||
|
If constructor-id is supplied, then the transformer binding of id records constructor-id as the constructor binding; as a result, for example, struct-out includes constructor-id as an export. If constructor-id is supplied via #:extra-constructor-name and it is not id, applying object-name on the constructor produces the symbolic form of id rather than constructor-id. If constructor-id is supplied via #:constructor-name and it is not the same as id, then id does not serve as a constructor, and object-name on the constructor produces the symbolic form of constructor-id. Only one of #:extra-constructor-name and #:constructor-name can be provided within a struct form.
Examples: | ||||||||||
|
If #:reflection-name symbol-expr is provided, then symbol-expr must produce a symbol that is used to identify the structure type in reflective operations such as struct-type-info. It corresponds to the first argument of make-struct-type. Structure printing uses the reflective name, as do the various procedures that are bound by struct.
Examples: | |||||||||
|
If #:methods gen:name method-defs is provided, then gen:name must be a transformer binding for the static information about a generic interface produced by define-generics. The method-defs define the methods of the gen:name interface. A define/generic form or auxiliary definitions and expressions may also appear in method-defs.
Examples: | |||||||||||||
|
If the #:omit-define-syntaxes option is supplied, then id is not bound as a transformer. If the #:omit-define-values option is supplied, then none of the usual variables are bound, but id is bound. If both are supplied, then the struct form is equivalent to (begin).
Examples: | |||||||||||||||||
|
If #:auto is supplied as a field-option, then the constructor procedure for the structure type does not accept an argument corresponding to the field. Instead, the structure type’s automatic value is used for the field, as specified by the #:auto-value option, or as defaults to #f when #:auto-value is not supplied. The field is mutable (e.g., through reflective operations), but a mutator procedure is bound only if #:mutable is specified.
If a field includes the #:auto option, then all fields after it must also include #:auto, otherwise a syntax error is reported. If any field-option or struct-option keyword is repeated, other than #:property, a syntax error is reported.
Examples: | ||||||||||||
|
(struct color-posn posn (hue) #:mutable) (define cp (color-posn 1 2 "blue"))
> (color-posn-hue cp) "blue"
> cp (color-posn 1 2 0 ...)
> (set-posn-z! cp 3) set-posn-z!: undefined;
cannot reference undefined identifier
For serialization, see define-serializable-struct.
syntax
(struct-field-index field-id)
Examples: | ||||||||||||||
|
syntax
(define-struct id-maybe-super (field ...) struct-option ...)
id-maybe-super = id | (id super-id)
This form is provided for backwards compatibility; struct is preferred.
Examples: | |||||||||||||
|
syntax
(define-struct/derived (id . rest-form) id-maybe-super (field ...) struct-option ...)
Examples: | |||||||||||||||||||||||||
|