Gauche > Archives > 2024/07/25

2024/07/25 11:12:38 UTCleah2
#
What is the fastest way to exit from a lexical scope (i.e. break from a loop)? In my benchmark it's call/cc, but shouldn't partcont be faster?
2024/07/25 13:04:50 UTCshiro
#
Right now, capturing partial continuation requires all activation frames in the VM stack area to heap, and that cost is not smaller than full continuations. I have some ideas bouncing around to optmize it.