move typed requires in helper files
parent
2737fff0b4
commit
6586d1e8cf
@ -0,0 +1,3 @@
|
||||
#lang typed/racket/base
|
||||
;; isolate typed requires in a helper file so the untyped versions can be substituted on the untyped side
|
||||
(require net/url)
|
@ -0,0 +1,3 @@
|
||||
#lang typed/racket/base
|
||||
;; isolate typed requires in a helper file so the untyped versions can be substituted on the untyped side
|
||||
(require (only-in racket/list dropf dropf-right))
|
@ -0,0 +1,3 @@
|
||||
#lang typed/racket/base
|
||||
;; isolate typed requires in a helper file so the untyped versions can be substituted on the untyped side
|
||||
(require typed/net/url)
|
@ -0,0 +1,4 @@
|
||||
#lang typed/racket/base
|
||||
;; isolate typed requires in a helper file so the untyped versions can be substituted on the untyped side
|
||||
(require/typed racket/list [dropf (All (A) (Listof A) (A -> Boolean) -> (Listof A))]
|
||||
[dropf-right (All (A) (Listof A) (A -> Boolean) -> (Listof A))])
|
Loading…
Reference in New Issue