in reply to Re(4): undef'ing @arrays caveat
in thread undef'ing @arrays caveat
@array does not actually get undefined
undef can only un-define scalars, because only scalars can be not-defined. Hashes and arrays are emptied, subs and globs are destroyed. I think the manual is not clear enough about this.
In Section
Meditations