Help for this page
SV * _to_IV(SV * in) { if(SvNV(in) < 0) return newSViv(SvIV(in)); return newSVuv(SvUV(in)); }
IV _to_IV(SV * in) { return SvIV(in); }