typed-struct-props/scribblings/typed-struct-props.scrbl
2021-03-04 20:38:19 +00:00

87 lines
4.2 KiB
Racket

#lang scribble/manual
@require[@for-label[typed-struct-props
racket/base]]
@title{Struct type properties for Typed/Racket}
@author[@author+email["Suzanne Soy" "racket@suzanne.soy"]]
@defmodule[typed-struct-props]
@defform[#:literals (: prop:custom-write prop:equal+hash)
(struct/props maybe-type-vars name maybe-parent ([field : type] ...)
options ...)
#:grammar
[(maybe-type-vars (code:line)
(v ...))
(maybe-parent (code:line)
parent-id)
(options #:transparent
(code:line #:property prop:custom-write custom-write)
(code:line #:property prop:equal+hash equal+hash))]
#:contracts ([custom-write
( name (code:comment "non-polymorphic case")
Output-Port
(U #t #f 0 1)
Any)]
[custom-write
( (v ...) (code:comment "polymorphic case")
( (name v ...)
Output-Port
(U #t #f 0 1)
Any))]
[equal+hash
(List ( name (code:comment "non-polymorphic case")
name
( Any Any Boolean)
Any)
( v
( Any Integer)
Integer)
( v
( Any Integer)
Integer))]
[equal+hash
(List ( (v ... v2 ...) (code:comment "polymorphic case")
( (name v ...)
(name v2 ...)
( Any Any Boolean)
Any))
( (v ...)
( (name v ...)
( Any Integer)
Integer))
( (v ...)
( (name v ...)
( Any Integer)
Integer)))])]{
This form defines a @racketmodname[typed/racket] struct type, and accepts a
small subset of @racketmodname[racket]'s struct type properties.
For @racket[prop:custom-write] and @racket[prop:equal+hash], the function
types are polymorphic only if the struct is polymorphic (i.e.
@racket[maybe-type-vars] is present) and has at least one type variable (i.e.
@racket[maybe-type-vars] is not just @racket[()]).
It implements these struct type properties in a type-safe manner: the current
implementation in @racketmodname[typed/racket] does not properly type-check
functions and values used as struct type properties. This library declares the
user-provided functions outside of the struct definition, with the type given
above (e.g.
@racket[( (v ...) ( (name v ...) Output-Port (U #t #f 0 1) Any))] for the
argument of the @racket[prop:custom-write] property), to ensure that these
functions and values are properly checked.
The API should (hopefully) stay backward-compatible when Typed/Racket
officially supports (or rejects) structure type properties. In other words:
@itemlist[
@item{If @racketmodname[typed/racket] eventually implements the same interface
as the one provided by this library, then we will update this library so
that it simply re-provide @racket[struct] renamed as @racket[struct/props].}
@item{If @racketmodname[typed/racket] eventually implements some type-safe
struct type properties, then we will update this library will so that it
translates back to @racketmodname[typed/racket]'s implementation, as much as
possible.}
@item{If @racketmodname[typed/racket] eventually disallows struct type
properties, then we will update this library so that it uses some
@racketmodname[typed/racket/unsafe] tricks to still make them available, if
it can be done.}]}