in reply to Re: (dan2bit) Re: (Ovid) Re: is there a way to check @ISA from upstream?
in thread is there a way to check @ISA from upstream?
use Receipt::TextOnly; print '#output: '.UNIVERSAL::isa('Receipt::TextOnly','Receipt')."\n"; print '#output: '.UNIVERSAL::can('Receipt::TextOnly','render')."\n"; #output: 1 #output: CODE(0x84baf38)
but
the second code snippet outputs undef. Back to options 1 or 2.use Receipt; print '#output: '.UNIVERSAL::isa('Receipt::TextOnly','Receipt')."\n"; print '#output: '.UNIVERSAL::can('Receipt::TextOnly','render')."\n"; #output: #output:
{::} =D------an (sometimes the cord just doesn't quite reach)
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Re: (dan2bit) Re: (Ovid) Re: is there a way to check @ISA from upstream?
by merlyn (Sage) on May 10, 2001 at 23:08 UTC |