Closes #2 (foldl behaves like foldr in some cases)

This commit is contained in:
Georges Dupéron 2017-05-11 09:45:56 +02:00
parent 854a9b2459
commit 5e7de16a4c
2 changed files with 10 additions and 1 deletions

View File

@ -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ᵢ ...))]))

View 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))