in reply to Re: Re: Re: Re: Re: Are array based objects fixed length?
in thread Are array based objects fixed length?

Oh yes, of course. Because we're going to want this behaviour for every Pixie managed object of the class then all instances of that class can share the 'shadow' Pixie class. Thanks for that.

BTW, your DESTROY still looks a bit wrong. Should probably be:

sub DESTROY { my $self = shift; print "wrapper->DESTROY\n"; my $obj_class = ref($self); $obj_class =~ s/Pixie::objwrapper:://; if ( my $method = $obj_class->can('DESTROY') ) { $method->($self); } }