We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
define-lambda-to-define
1 parent 016a6cd commit 73c5ea8Copy full SHA for 73c5ea8
typed-racket-lib/typed-racket/static-contracts/optimize.rkt
@@ -404,7 +404,8 @@
404
;; If we trust a specific side then we drop all contracts protecting that side.
405
(define (optimize sc #:trusted-positive [trusted-positive #f] #:trusted-negative [trusted-negative #f] #:recursive-kinds [recursive-kinds #f])
406
(define sc->kind (make-sc->kind recursive-kinds))
407
- (define flat-sc? (λ (sc) (eq? 'flat (sc->kind sc))))
+ (define (flat-sc? sc)
408
+ (eq? 'flat (sc->kind sc)))
409
(define trusted-side-reduce (make-trusted-side-reduce flat-sc?))
410
(define update-side (make-update-side flat-sc?))
411
0 commit comments