PhBastiani
01/30/2020, 12:22 PMpakoito
01/30/2020, 1:41 PMPhBastiani
01/30/2020, 1:46 PMJannis
01/30/2020, 1:50 PMEval
multiple times? Because Eval
memoizes results in some casesPhBastiani
01/30/2020, 1:59 PMJannis
01/30/2020, 2:03 PMPhBastiani
01/30/2020, 2:14 PMraulraja
01/31/2020, 7:19 PMJannis
01/31/2020, 8:07 PMAndThen
, Eval
, Trampoline
and IO
I think that may be AndThen
because it fuses function calls. AndThen
however will still cause overflows if it is invoked at depth. Eval
and Trampoline
both trampoline everything and thus don't need this. IO
is usually invoked at the edge and hence can fuse function calls freely because of that.AndThen
in your tests as well? Would be interested in the outcome ^^