Hi,

I'm seeking perl wisdom against my "OO wisdom" ;-)
But maybe my OO wisdom needs to be updated, too.

I've written an XS speedup for Params::Util - and the author detects that my XS implementation of _INSTANCE differs to his perl implementation: The perl implementation simply calls $obj->isa($class) - and returns the result. The XS implementation checks first sv_derived_from and only in a negative result, it calls $obj->isa($class) (I think, I should even prove string equality of sv_reftype - but this is another story). My reason to implement it this way was:

class A { ... }; class B : public A { ... };
B is a A

So what do you think? Should the XS implementation give the (overridable) isa method the precedence? Or is it just a limitation? Should the perl implementation better use UNIVERSAL::isa before trying the overridden method?


In reply to sv_derived_from vs. sub ISA by rehsack

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.