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
Doing something like (reduce multi-path STOP paths) could be significantly faster, as it's currently paying the cost of an apply in both late-bound-operation and wrap-dynamic-nav. late-bound-operation also does sequence creation/traversal while checking whether args are dynamic or not. With unrolling and more work in the late-bound-operation macro, all of this overhead can be eliminated.
The text was updated successfully, but these errors were encountered:
Should also look into optimizing dynamic-param? by using a marker interface that each dynamic type implements. Then dynamic-param? just does an instance? check on that type rather than checking for each specific type.
Doing something like
(reduce multi-path STOP paths)
could be significantly faster, as it's currently paying the cost of anapply
in bothlate-bound-operation
andwrap-dynamic-nav
.late-bound-operation
also does sequence creation/traversal while checking whether args are dynamic or not. With unrolling and more work in thelate-bound-operation
macro, all of this overhead can be eliminated.The text was updated successfully, but these errors were encountered: