utils-untyped.rkt: Don't provide the contracts.

This commit is contained in:
Sergiu Ivanov 2021-05-20 11:09:51 +02:00
parent 7dd9c4cc47
commit 278ffa62db
1 changed files with 1 additions and 5 deletions

View File

@ -42,11 +42,7 @@
[boolean-power (-> number? (listof (listof boolean?)))]
[boolean-power/stream (-> number? (stream/c (listof boolean?)))]
[any->01 (-> any/c (or/c 0 1))]
[01->boolean (-> (or/c 0 1) boolean?)])
;; Contracts
(contract-out [variable-mapping? contract?]
[string-variable-mapping? contract?]
[general-pair/c (-> contract? contract? contract?)]))
[01->boolean (-> (or/c 0 1) boolean?)]))
(module+ test
(require rackunit))