1.129 class quote_function

A quote_function object may be used to avoid evaluation of a function object, notably to pass function objects over methods that would cause the function to be evaluated. Two mechanisms make quote_function objects almost transparent to functions objects:

1.129.1 Instance variables

quote_function <-> function: function
The function object quoted. Methods are delegated to this object.

1.129.2 Send methods

quote_function ->initialise: function=function
Create a quote_function from the function quoted.