2d/2d-lib/readtable.rkt
Robby Findler a350659906 export some readtable functions
and finish up the docs
2016-07-31 02:51:48 -05:00

16 lines
407 B
Racket

#lang racket/base
(require "private/readtable.rkt"
racket/contract)
(provide
(contract-out
[2d-readtable-dispatch-proc
(-> char? input-port? any/c
(or/c exact-positive-integer? #f)
(or/c exact-nonnegative-integer? #f)
(or/c exact-positive-integer? #f)
(-> input-port? any/c (or/c readtable? #f) any/c)
(or/c #f readtable?)
any/c)])
make-readtable)