How do you "undefine" an Array of Hashes of Arrays? It must not be as simple as:
because, I can't seem to get that do work?
I have @AoHoA that is filled. I want to clear that structure out completely...so that the test (for example):
fails. That is, it's NOT defined (but, it was before I "undef" it).
Thanks in advance!
Code:
undef @AoHoA;
I have @AoHoA that is filled. I want to clear that structure out completely...so that the test (for example):
Code:
if (defined($AoHoA[0]))
Thanks in advance!