in reply to SvMAGICAL() question
Look for "Magic Variables" in the guts. Specifically, it is a C language macro in lib/CORE/sv.h:
#define SvMAGICAL(sv) (SvFLAGS(sv) & (SVs_GMG|SVs_SMG|SVs_RMG))
for examining an sv for the existance of these variables.
|
|---|