http://www.perlmonks.org?node_id=1005660


in reply to Trouble getting size of list returned from sub

Could adding an evaluation to the end of the sub something like;

sub gettinglist{ $ListItemReturnedCount++ if { Item retrieved }; return $ListItemReturnedCount; }

be a possible alternative? Ok, perhaps if you are debugging but not for production as a very unexpectedly short list would be returned to a calling routine somewhere. So, seeing as the sub is returning a list anyway. Could you not retrieve the number from some other place, for example from the sub/routine to where the list is called from?

Replies are listed 'Best First'.
Re^2: Trouble getting size of list returned from sub
by ColonelPanic (Friar) on Nov 26, 2012 at 14:11 UTC
    Of course this could be easily solved if one can edit the subroutine. However, as the poster noted, it's someone else's code and an XS sub, not a Perl sub.


    When's the last time you used duct tape on a duct? --Larry Wall