Anonymous Monk has asked for the wisdom of the Perl Monks concerning the following question:
in case the user doesn't implement one of the functions, the library can still return an undef value for the unimplemented function. My question is this: how can my main program determine whether AUTOLOAD was called or an actual function exists that returned undef. Thanks a bunch, Michaelsub AUTOLOAD { return undef; }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: AUTOLOAD question
by hardburn (Abbot) on Jun 11, 2003 at 14:15 UTC | |
by Lachesis (Friar) on Jun 11, 2003 at 14:34 UTC | |
by Anonymous Monk on Jun 11, 2003 at 14:29 UTC | |
by hardburn (Abbot) on Jun 11, 2003 at 14:34 UTC | |
by Anonymous Monk on Jun 11, 2003 at 14:48 UTC |