racket/collects/racket/contract.rkt

21 lines
692 B
Racket

#lang racket/base
(require racket/contract/exists
racket/contract/regions
"contract/private/basic-opters.rkt"
"contract/base.rkt"
"contract/private/legacy.rkt"
"contract/private/ds.rkt"
"contract/private/parametric.rkt"
"private/define-struct.rkt")
(provide (all-from-out "contract/base.rkt")
(all-from-out "contract/private/parametric.rkt")
(except-out (all-from-out racket/contract/exists) ∀∃?)
(all-from-out racket/contract/regions)
(all-from-out "contract/private/legacy.rkt")
(except-out (all-from-out "contract/private/ds.rkt")
lazy-depth-to-look))