Help for this page

Select Code to Download


  1. or download this
    sub _int64_native {
        $_[0] =~ /^(-?)0x(.*)/? hex($2)*($1? -1 : 1) : 0+$_[0]
    ...
    } else {
        *int64= \&_int64_bigint;
    }
    
  2. or download this
    int64('-0x10000000000');