in reply to Re: Re: Re: Re: Re: Are array based objects fixed length?
in thread Are array based objects fixed length?
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); } }
|
|---|