Makes a small subset of struct type properties available in Typed/Racket. The API should hopefully stay backward-compatible when Typed/Racket officially supports (or rejects) structure type properties.
Go to file
2016-09-12 15:50:37 +02:00
scribblings Added support and test for parent structs 2016-09-05 01:26:06 +02:00
test Added support and test for parent structs 2016-09-05 01:26:06 +02:00
.gitignore Created package typed-struct-props 2016-09-04 21:57:02 +02:00
.travis.yml Don't check documentation coverage on Racket 6.2 and 6.3, as raco doc-coverage seems to ignore the existing documentation on these versions. 2016-09-05 00:25:36 +02:00
info.rkt Skip some tests in racket < 6.3 as the type inference is not good enough to make them work there. There are alternative versions of these tests which don't rely so much on inference and are included. 2016-09-05 00:04:04 +02:00
LICENSE.txt Created package typed-struct-props 2016-09-04 21:57:02 +02:00
main.rkt Fixed types for equal+hash 2016-09-12 15:50:37 +02:00
README.md Listed supported properties in README 2016-09-05 01:38:27 +02:00

typed-struct-props

This library allows a safer use of some struct type properties with Typed/Racket.

  • Functions and values supplied to #:property prop:some-prop value-here are typechecked. Their type is computed by this library, and depends on the property.

  • The API should hopefully remain stable, even if struct type properties become supported (this library will then become a wrapper) or forbidden in Typed/Racket (this library will then use typed/racket/unsafe tricks).

Currently, the following properties are supported:

  • prop:custom-write
  • prop:equal+hash