Compare commits
No commits in common. "master" and "popl-2017" have entirely different histories.
|
@ -4,7 +4,7 @@ env:
|
||||||
global:
|
global:
|
||||||
- RACKET_DIR=~/racket
|
- RACKET_DIR=~/racket
|
||||||
matrix:
|
matrix:
|
||||||
- RACKET_VERSION=6.5
|
- RACKET_VERSION=6.4
|
||||||
- RACKET_VERSION=HEAD
|
- RACKET_VERSION=HEAD
|
||||||
|
|
||||||
before_install:
|
before_install:
|
||||||
|
|
|
@ -4,8 +4,6 @@ trivial
|
||||||
[](https://coveralls.io/github/bennn/trivial?branch=master)
|
[](https://coveralls.io/github/bennn/trivial?branch=master)
|
||||||
[](http://docs.racket-lang.org/trivial/index.html)
|
[](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.
|
This [Typed Racket](http://docs.racket-lang.org/ts-reference/) library provides "smarter" versions of standard library functions.
|
||||||
For example:
|
For example:
|
||||||
|
|
||||||
|
|
|
@ -83,11 +83,6 @@
|
||||||
(U #f (List String)))
|
(U #f (List String)))
|
||||||
'("hello"))
|
'("hello"))
|
||||||
|
|
||||||
(check-equal?
|
|
||||||
(ann (regexp-match: "\\(a+\\)([ab]*)" "(aa)bb")
|
|
||||||
(U #f (List String String)))
|
|
||||||
'("(aa)bb" "bb"))
|
|
||||||
|
|
||||||
(check-equal?
|
(check-equal?
|
||||||
(ann
|
(ann
|
||||||
(regexp-match: "hello" "world")
|
(regexp-match: "hello" "world")
|
||||||
|
|
|
@ -9,7 +9,7 @@
|
||||||
;; =============================================================================
|
;; =============================================================================
|
||||||
|
|
||||||
(: *TRIVIAL-LOG* (Parameterof Boolean))
|
(: *TRIVIAL-LOG* (Parameterof Boolean))
|
||||||
(define *TRIVIAL-LOG* (make-parameter #f))
|
(define *TRIVIAL-LOG* (make-parameter #t))
|
||||||
|
|
||||||
(: *STOP-LIST* (Parameterof (Listof Identifier)))
|
(: *STOP-LIST* (Parameterof (Listof Identifier)))
|
||||||
(define *STOP-LIST* (make-parameter '()))
|
(define *STOP-LIST* (make-parameter '()))
|
||||||
|
|
Loading…
Reference in New Issue
Block a user