Seems like you could roll your own
UNIVERSAL::do to get pretty close to your second want.
use strict;
use warnings;
package UNIVERSAL;
# Couldn't decide which syntax would be more likeable.
sub do {
my $ob = shift;
my $method = shift;
$ob->$method(@_);
}
sub do2 {
my $ob = shift;
my $method = shift;
sub { $ob->$method(@_) };
}
package U;
sub voo {
my $ob = shift;
print "Called with @_\n";
}
sub new {
return bless {};
}
package main;
my $foo = U->new();
$foo->do('v'.'oo', 1..3);
$foo->do2('v'.'oo')->(1..3);
Not really profound, but it gives me an excuse to say, "Now go do that $foo->do that U::do so well!"
Update: lodin points out that this is pretty close to UNIVERSAL::can. Which it is. Except you'd have to put the object back in the arg list:
$foo->do2('v'.'oo')->($foo,1..3);
Ugh.
Caution: Contents may have been coded under pressure.
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.