in reply to Re: SvMAGICAL() question
in thread SvMAGICAL() question
Now, if only I knew what those flags were. Oh, I see. What a wonderful file, thanks.#define SvMAGICAL(sv) (SvFLAGS(sv) & (SVs_GMG|SVs_SMG|SVs_RMG))
I'm still not clear on what they are, but I have some idea where to start.#define SVs_GMG 0x00002000 /* has magical get method */ #define SVs_SMG 0x00004000 /* has magical set method */ #define SVs_RMG 0x00008000 /* has random magical methods */
|
|---|