Help for this page

Select Code to Download


  1. or download this
    long i;
    if(SvIOK(a)) i = SvIV(a);
    
  2. or download this
    double d;
    if(SvIOK(a)) d = SvNV(a);
    
  3. or download this
    long long ii;
    if(SvIOK(a)) ii = (long long)SvIV(a);