Stronger types for a few Typed Racket operators
Go to file
ben 04835b5339 [6.4] move package to toplevel
Because pkgs.racket-lang doesn't seem to accept paths like
  .../repo.git#branch?tag

So I'm trying to remove the ?tag
2016-04-09 09:39:33 -04:00
define [6.4] move package to toplevel 2016-04-09 09:39:33 -04:00
format [6.4] move package to toplevel 2016-04-09 09:39:33 -04:00
function [6.4] move package to toplevel 2016-04-09 09:39:33 -04:00
math [6.4] move package to toplevel 2016-04-09 09:39:33 -04:00
private [6.4] move package to toplevel 2016-04-09 09:39:33 -04:00
regexp [6.4] move package to toplevel 2016-04-09 09:39:33 -04:00
scribblings [6.4] move package to toplevel 2016-04-09 09:39:33 -04:00
vector [6.4] move package to toplevel 2016-04-09 09:39:33 -04:00
.gitignore ** add buttons 2015-12-14 05:37:17 -05:00
.travis.yml ** travis: specify tests 2016-03-19 23:50:45 -04:00
define.rkt [6.4] move package to toplevel 2016-04-09 09:39:33 -04:00
format.rkt [6.4] move package to toplevel 2016-04-09 09:39:33 -04:00
function.rkt [6.4] move package to toplevel 2016-04-09 09:39:33 -04:00
info.rkt [6.4] move package to toplevel 2016-04-09 09:39:33 -04:00
LICENSE.txt ** update inline comments 2015-12-14 02:36:53 -05:00
main.rkt [6.4] move package to toplevel 2016-04-09 09:39:33 -04:00
math.rkt [6.4] move package to toplevel 2016-04-09 09:39:33 -04:00
no-colon.rkt [6.4] move package to toplevel 2016-04-09 09:39:33 -04:00
README.md [6.4] move package to toplevel 2016-04-09 09:39:33 -04:00
regexp.rkt [6.4] move package to toplevel 2016-04-09 09:39:33 -04:00
vector.rkt [6.4] move package to toplevel 2016-04-09 09:39:33 -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)