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
An important optimization to enable other optimizations is to get rid of unnecessary lets.
In the case of pure computations, let bindings are not necessary and they should be removed- maybe destructively?
For impure computations that are used just once, the let binding is not necessary. However, we must be careful to avoid bugs since later the e-class could have representatives that use it twice.
The text was updated successfully, but these errors were encountered:
An important optimization to enable other optimizations is to get rid of unnecessary lets.
In the case of pure computations, let bindings are not necessary and they should be removed- maybe destructively?
For impure computations that are used just once, the let binding is not necessary. However, we must be careful to avoid bugs since later the e-class could have representatives that use it twice.
The text was updated successfully, but these errors were encountered: