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-20 03:01:03 +02:00
scribblings Added support and test for parent structs 2016-09-05 01:26:06 +02:00
test Added test for the use of struct-copy within the properties. 2016-09-14 22:13:33 +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 Bug fix for the previous commit 2016-09-14 21:55:54 +02:00
README.md Added badges to README file 2016-09-20 03:01:03 +02:00

Build Status, Coverage Status, Build Stats, Online Documentation.

Structure type properties for Typed/Racket

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