Repeated evaluation of arguments And possible improvements #1
Labels
No Label
bug
duplicate
enhancement
help wanted
invalid
question
wontfix
No Milestone
No project
No Assignees
1 Participants
Notifications
Due Date
No due date set.
Dependencies
No dependencies set.
Reference: suzanne.soy/typed-map#1
Loading…
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
`> (map (begin (displayln 1) cons) '(1 2 3) '(4 5 6))
1
1
1
'((1 . 4) (2 . 5) (3 . 6))
`
And, it seems like the 'generalize' function could be replaced by this one?
(: gen (All (a) (case→ [Null → Null] [(Listof a) → (Listof a)]))) (define (gen a) a)
Moreover, is it better to restricted the use of 'set!' to only the end of iteration?
Hi @yjqww6 !
Thanks for the report, I fixed the multiple evaluation problem.
I'm looking at the definition of
gen
. If I used this double-reverse trick, there probably was a good reason for that, so I'm trying to see if your suggestion brings in any unsuspected regressions.I'm not sure what you mean by "better to restrict the use of
set!
to only the end of iteration'? Could you clarify?set!
is already used right at the end of each iteration, just before calling theloop
function again.@jsmaniac Sorry my for poor explanation. I will paste a example tomorrow.
@jsmaniac Okay, I found what I say about 'set!' has a regression on the case of acc with a Rec type. Please forget it.