in reply to Are array based objects fixed length?
Or something like that. It's a pretty hard problem. *shrugs*
<thought type="evil">Could you set up an overloaded @{} in UNIVERSAL that would implement this behavior? That would solve the problem of Pixie::Array's blessing. Alternatively, Pixie::Arrays could keep track of their "real" blessing and redispatch:
</thought>package Pixie::Array; sub PIXIE_getoid { return shift->{oid} } # ... sub AUTOLOAD { return shift->{realobj}->$AUTOLOAD(@_) }
=cut
--Brent Dax
There is no sig.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Are array based objects fixed length?
by pdcawley (Hermit) on Sep 05, 2002 at 20:33 UTC |