in reply to Method chain object with easy syntax

Can some of the cb discussion participants draw out the use case for having the chain stored as a separate object, rather than as data?
$object->Method::Chain(method1=>\@args1, method2=>\@args2);

Replies are listed 'Best First'.
Re^2: Method chain object with easy syntax
by jdporter (Paladin) on Apr 17, 2005 at 17:43 UTC
    Among other things, we'd like to be able to call the method chain for different objects. One way of thinking of this is like function composition, but for methods.