- or download this
$object->method1(@args1)->method2(@args2)->method3(@args3)
- or download this
$chain = Object::MethodChain->method1(@args1)->method2(@args2)->method
+3(@args3);
- or download this
$chain = Object::MethodChain->new("method1", \@args1, "method2", \@arg
+s2, "method3");
- or download this
$chain = Object::MethodCall->method1(@args1)->method2(@args2);
- or download this
Object::MethodCall->method1(@args1)
- or download this
{
package Object::MethodChain;
...
}
}
- or download this
{
package Object::MethodChain;
...
DESTROY {
}
}
- or download this
$chain = Object::MethodChain->foo;
- or download this
sub { $_[0]->foo; }
- or download this
{
package Object::MethodChain;
...
DESTROY {
}
}
- or download this
{
package Object::MethodChain;
...
DESTROY {
}
}
- or download this
{
package AnObj;
...
"er,\n";
}
}
- or download this
{
my $f = "foo";
my $n = AnObj->new->$f->bar(my $v)->baz("her p");
print $v, $n;
}
- or download this
{
my $f = "foo";
...
my $n = AnObj->$c;
print $v, $n;
}
- or download this
{
my $f = "foo";
...
my $n = AnObj->$c;
print $v, $n;
}
- or download this
bless( [
{
...
'method' => 'baz'
}
], 'Object::MethodChain' );