Stronger types for a few Typed Racket operators
Go to file
2016-03-10 00:13:18 -05:00
format [no-colon] per-package 2015-12-16 03:15:14 -05:00
function [function] curry/no-colon 2016-03-04 18:34:18 -05:00
icfp-2016 [icfp] db, tuning the usage conclusion 2016-03-08 14:13:48 -05:00
math [math] add espt 2016-03-02 14:21:51 -05:00
private [db] fail tests, things are looking ok 2016-03-09 23:48:03 -05:00
regexp [regexp] cleaner impl 2016-03-09 11:33:52 -05:00
scribblings [let-regexp] docs 2016-02-25 12:21:19 -05:00
test [db] fail tests, things are looking ok 2016-03-09 23:48:03 -05:00
vector [vector] works for no-colon, too 2016-03-09 03:14:45 -05:00
.gitignore ** add buttons 2015-12-14 05:37:17 -05:00
.travis.yml ** lets try 6.4 2016-03-10 00:13:18 -05:00
format.rkt [format] move to private/format 2016-03-09 03:18:48 -05:00
function.rkt [function] new style 2016-03-09 03:25:36 -05:00
info.rkt ** update pkg deps 2016-03-10 00:07:21 -05:00
LICENSE.txt ** update inline comments 2015-12-14 02:36:53 -05:00
main.rkt ** add main.rkt 2015-12-14 03:05:04 -05:00
math.rkt [math] cleaner 2016-03-09 00:55:31 -05:00
no-colon.rkt [no-colon] per-package 2015-12-16 03:15:14 -05:00
README.md ** add docs button 2015-12-16 03:08:21 -05:00
regexp.rkt [regexp] cleaner impl 2016-03-09 11:33:52 -05:00
vector.rkt [vector] works for no-colon, too 2016-03-09 03:14:45 -05:00

trivial

Build Status Coverage Status Scribble

This library provides "smarter" versions of Typed Racket standard library functions. For example:

#lang typed/racket/base

(require trivial)

(printf: "hello, ~a")

;; > raco make test.rkt
;; format:: arity mismatch;
;;  the expected number of arguments does not match the given number
;;    expected: 1
;;      given: 0

The printf: (with a colon) checks whether its first argument is a string literal. If so, it parses the string's format sequences for arity and type constraints. Unless the constraints fail, printf: then calls the standard printf.

When the first argument to printf: is not a string literal, nothing special happens; we just call the standard printf.

#lang typed/racket/base

(require trivial)

(let ([s "hello, ~a\n"])
  (printf: s)) ;; Non-trivial!

;; Compiles successfully, but throws arity error at runtime

Besides printf:, this library also provides macros for:

  • regexp-match:, to count the number of groups in a pattern and give the match result a more specific type
  • +:, -:, *:, /:, to reduce constants where possible, yielding results with more specific types.

See the documentation for the full story.

Install

From Github:

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

From the Racket package server:

> raco pkg install trivial

Use (require trivial) to import all bindings from this library. Each file in the root directory of this repo can be imported specifically, as in:

  • (require trivial/format)
  • (require trivial/regexp)
  • (require trivial/math)

These files only export macros.

Naming

  • The library is "trivial" because it solves only the simplest typechecking problems, and does so simply by analyzing a local chunk of source code.

  • By convention, we suffix all our exports with a trailing colon. This is a hint that the macro will attempt some extra static analysis (including typechecking) at its call-site.

Contributing

The perfect feature request would start like:

"Typed Racket rejects this program, but it is obviously well-typed because ..."

If the right type really is obvious, syntactically, we'll extend this library.