On m�ndag, juli 22, 2002, at 08:54 , Ray Hilton wrote:
>
> Don't suppose you know how to get the name of a function represented by
> a reference? It would make things clean in my head :)
>
>
That is not too hard, but of course it won't work for anon subroutines.
sub foo {}
use B qw(svref_2object);
svref_2object(\&foo)->GV->SAFENAME;
Arthur
