You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Trampoline is used extensively to build stack safe, recursive structures, e.g in reader and state. When interpreting these structures, a significant amount of time is spent in the main loop of Trampoline.run. Consider this:
Most of the execution time is spent in Trampoline.run. Optimising this loop is therefore a reasonable investment since it will speed up every usage of trampolines.
The text was updated successfully, but these errors were encountered:
Trampoline
is used extensively to build stack safe, recursive structures, e.g inreader
andstate
. When interpreting these structures, a significant amount of time is spent in the main loop ofTrampoline.run
. Consider this:Most of the execution time is spent in
Trampoline.run
. Optimising this loop is therefore a reasonable investment since it will speed up every usage of trampolines.The text was updated successfully, but these errors were encountered: