Stronger types for a few Typed Racket operators
Go to file
2015-12-06 23:22:40 -05:00
.gitignore ** outline README 2015-12-06 17:04:15 -05:00
.travis.yml ** remove cover from build-deps 2015-12-06 23:22:40 -05:00
format.rkt [format] strongly-typed format + printf 2015-12-06 17:17:42 -05:00
info.rkt ** remove cover from build-deps 2015-12-06 23:22:40 -05:00
LICENSE.txt ** outline README 2015-12-06 17:04:15 -05:00
README.md [regexp] string-only regexp matching 2015-12-06 21:50:51 -05:00
regexp.rkt [regexp] simpler way to dispatch on 1st arg 2015-12-06 23:11:58 -05:00

dependent

Typed Racket does not have dependent types, but macros are a pretty close substitute. This library implements a few standard library functions as macros to provide strong compile-time guarantees.

For example, printf! is a type-safe printer:

(require dependent/format)
(printf! "hello, ~a\n") ;; Arity mismatch: expected 1 argument, got nothing.

Install

From Github:

> git clone https://github.com/bennn/dependent
> raco pkg install ./dependent

From the Racket package server:

> raco pkg install dependent

Use (require dependent) to import all bindings from this library. Each file can be required individually, as in (require dependent/format).

API

Note: these are macros, not functions. Don't use them in higher-order positions.

Everything macro here is a front-end for a standard library function. Check the Racket docs for basic type signatures & behavior. This library's Scribble docs give full details on the static checks.

dependent/format

  • format
  • printf

dependent/regexp

  • regexp-match