<P>(I appologize for the two awkward replies I had sent before. It seems that my news client and myself have some issues to resolve...)</P>
<P>&lt;<A href="mailto:scleary@jerviswebb.com">scleary@jerviswebb.com</A>&gt; wrote:</P>
<P>[snip]<BR>&gt;<BR>&gt; 2) The Visitor concept brings a couple questions to mind:<BR>&gt;&nbsp;&nbsp; a) Why allow modification (termed "persistency" in the docs)?&nbsp; No other<BR>&gt; FunctionObject abstraction does, and modern C++ users are well-acquainted<BR>&gt; with and used to the associated restrictions on FunctionObjects.</P>
<P>Indeed we had some discussions about this issue. The final argument was that<BR>the usage scenarios are different for a visitor and for (traditional)<BR>FunctionObject: In the STL context a FunctionObject is needed when one action<BR>should be repeatedly applied over a&nbsp;single sequence of objects. This task is carried out by a *single* invocation of the appropriate algorithm.&nbsp;A Visitor, on the other<BR>hand, is likely to be applied over several variant instances, which are not<BR>necessarily stored inside a container. Hence, the code will (likely) have<BR>several apply_visitor() calls, where a different variant object is passed to<BR>each one. If the visitor was passed by value, we would end up with something<BR>like this:</P>
<P>struct my_visitor { .... };</P>
<P>typedef variant&lt;A,B,C&gt; variant_type;<BR>void f(variant_type x, variant_type y, variant_type z)<BR>{<BR>&nbsp;&nbsp;&nbsp; my_visitor vis1 = apply_visitor(my_visitor(), x);<BR>&nbsp;&nbsp;&nbsp; my_visitor vis2 = apply_visitor(vis1, y);<BR>&nbsp;&nbsp;&nbsp; my_visitor vis3 = apply_visitor(vis2, z);</P>
<P>&nbsp;&nbsp;&nbsp; // do something with vis3 ....</P>
<P>}</P>
<P>I feel that this code is overly verbose and counter-intuitive.</P>
<P>[Two other points - in favor of the pass-by-reference method -&nbsp; are the<BR>ability to use polymorphic visitors without slicing them, and the reduced<BR>overhead, since copy-construction is avoided. However, these points are less<BR>substantial than the first argument, since you can use a simple wrapper<BR>class to work-around the problems.]</P>
<P><BR>&gt;&nbsp; b) Do Boost.Lambda expressions qualify as Visitors?&nbsp; I am not familiar<BR>&gt;enough with the implementation of either library to be able to tell...<BR>&gt;</P>
<P>A valid visitor must expose a nested type,&nbsp; result_type, which specifies its<BR>return type. I believe it should be possible (although I did not try it yet)<BR>to wrap a lambda expression inside a proxy class which will define<BR>result_type as void.</P>
<P>-Itay</P>
<P>&nbsp;</P>