trivial/trivial
2016-05-22 18:52:53 -04:00
..
define ** move package to submodule 2016-03-19 22:52:28 -04:00
format ** move package to submodule 2016-03-19 22:52:28 -04:00
function ** move package to submodule 2016-03-19 22:52:28 -04:00
list [list] docs, and hide map: for now 2016-05-02 22:40:44 -04:00
math ** move package to submodule 2016-03-19 22:52:28 -04:00
private [list] typo in list lib 2016-05-18 17:22:22 -04:00
regexp ** move package to submodule 2016-03-19 22:52:28 -04:00
scribblings [list] docs, and hide map: for now 2016-05-02 22:40:44 -04:00
vector ** move package to submodule 2016-03-19 22:52:28 -04:00
define.rkt [list] implemented some functions, need tests 2016-05-01 21:01:20 -04:00
format.rkt ** move package to submodule 2016-03-19 22:52:28 -04:00
function.rkt ** move package to submodule 2016-03-19 22:52:28 -04:00
info.rkt ** bump version number 2016-03-20 15:25:46 -04:00
list.rkt [list] docs, and hide map: for now 2016-05-02 22:40:44 -04:00
main.rkt [list] docs, and hide map: for now 2016-05-02 22:40:44 -04:00
math.rkt ** move package to submodule 2016-03-19 22:52:28 -04:00
no-colon.rkt ** move package to submodule 2016-03-19 22:52:28 -04:00
README.md ** nb: hard to do type-directed elaborations 2016-05-22 18:52:53 -04:00
regexp.rkt ** move package to submodule 2016-03-19 22:52:28 -04:00
vector.rkt ** move package to submodule 2016-03-19 22:52:28 -04:00

Project Structure

  • private/ Contains the implementation
  • scribblings/ Documentation sources
  • info.rkt Racket package metadata
  • main.rkt Package front-end, use with (require trivial)
  • no-colon.rkt Alternate front-end, use with (require trivial/no-colon)
  • *.rkt Front-ends for specific libraries
  • */ Front-ends for the no-colon versions of specific libraries, like (require format/no-colon)

Note: transformations do not have access to type information because Typed Racket seems to keep type information in an external table.

Could try to import the table, but its probably not populated at the time. If only types were stored as interned syntax properties!