Closes #2 (foldl behaves like foldr in some cases)
This commit is contained in:
parent
854a9b2459
commit
5e7de16a4c
|
@ -85,4 +85,4 @@
|
|||
upcast-result))))))]
|
||||
[(_ f init-acc lᵢ ...)
|
||||
(with-syntax ([(argᵢ ...) (generate-temporaries #'(lᵢ ...))])
|
||||
#'(foldr (λ (argᵢ ... arg-acc) (f argᵢ ... arg-acc)) init-acc lᵢ ...))]))
|
||||
#'(foldl (λ (argᵢ ... arg-acc) (f argᵢ ... arg-acc)) init-acc lᵢ ...))]))
|
||||
|
|
9
typed-map-test/typed-map/test/gh-bug-2.rkt
Normal file
9
typed-map-test/typed-map/test/gh-bug-2.rkt
Normal file
|
@ -0,0 +1,9 @@
|
|||
#lang typed/racket
|
||||
(require typed-map
|
||||
typed/rackunit)
|
||||
|
||||
(check-equal? (foldl (λ (x [acc : (Rec R (U Null (Pairof R Positive-Index)))])
|
||||
(cons acc (add1 x)))
|
||||
'()
|
||||
'(1 2 3))
|
||||
'(((() . 2) . 3) . 4))
|
Loading…
Reference in New Issue
Block a user