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
This can significantly help higher order procedures where the HO argument is statically known, by generating a first order procedure. For example, a call map(+(1), ...) would cause the compiler to generate a specialised procedure that increments each element of a list, and would call this instead. The generated code would then approach what a C programmer would write to add 1 to each element of a list.