exussum0 asked in the chatterbox whether there's a quick way to wrap the methods of an object such that you can access them as plain functions which are exported to a package. Thus, here's my solution.

Take this module:

package Wrapobj; our $VERSION = 1.000; use Scalar::Util "blessed"; use mro; sub import { my $en = caller; my $ens = $en . "::"; my $ep = \%{(do { no strict "refs"; $ens })}; my($_u, $o) = @_; my $c = blessed($o) || $o; for my $n (@{mro::get_linear_isa($c)}) { my $p = \%{(do { no strict "refs"; $n . "::" })}; for my $s (sort keys %$p) { if (exists(&{$$p{$s}})) { if (!$$ep{$s} || !exists(&{$$ep{$s}})) { *{$ens . $s} = sub { $o->${\$s}(@_) }; } } } } } 1; __END__

Now you can import the methods of an object $obj by saying use Wrapobj $obj;. For example, you could say

use Math::BigInt; use Wrapobj Math::BigInt->new("100"); warn bmul(2); +warn as_hex()

You could even use this on a class to access class methods:

use Math::BigInt; use Wrapobj Math::BigInt::; warn new("0x100");

Of course, this is just a proof of concept module, a real one would allow you to explicitly set which subs you want to import, and frankly, you likely don't want to use this kind of thing in real code anyway.

(See also Foo::Simple.)


In reply to Export methods to subroutines by ambrus

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • 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:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.