Help for this page

Select Code to Download


  1. or download this
    # keywords: method sub call overhead
    # learned:  OO-style method invocation is only about 13% slower than d
    +irect invocation (v5.6)
    ...
      method => sub { $obj->meth(@params); },
      direct => sub { meth($obj, @params); }
    });