Compare commits

..

No commits in common. "master" and "popl-2017" have entirely different histories.

4 changed files with 2 additions and 9 deletions

View File

@ -4,7 +4,7 @@ env:
global:
- RACKET_DIR=~/racket
matrix:
- RACKET_VERSION=6.5
- RACKET_VERSION=6.4
- RACKET_VERSION=HEAD
before_install:

View File

@ -4,8 +4,6 @@ trivial
[![Coverage Status](https://coveralls.io/repos/bennn/trivial/badge.svg?branch=master&service=github)](https://coveralls.io/github/bennn/trivial?branch=master)
[![Scribble](https://img.shields.io/badge/Docs-Scribble-blue.svg)](http://docs.racket-lang.org/trivial/index.html)
__WARNING:__ things are current in a heavy development state. See the [6.4 release branch](https://github.com/bennn/trivial/tree/6.4) for a stable version.
This [Typed Racket](http://docs.racket-lang.org/ts-reference/) library provides "smarter" versions of standard library functions.
For example:

View File

@ -83,11 +83,6 @@
(U #f (List String)))
'("hello"))
(check-equal?
(ann (regexp-match: "\\(a+\\)([ab]*)" "(aa)bb")
(U #f (List String String)))
'("(aa)bb" "bb"))
(check-equal?
(ann
(regexp-match: "hello" "world")

View File

@ -9,7 +9,7 @@
;; =============================================================================
(: *TRIVIAL-LOG* (Parameterof Boolean))
(define *TRIVIAL-LOG* (make-parameter #f))
(define *TRIVIAL-LOG* (make-parameter #t))
(: *STOP-LIST* (Parameterof (Listof Identifier)))
(define *STOP-LIST* (make-parameter '()))