in reply to 1 vs "1"
package types; use Inline C => <<'END_C'; int is_iv(SV *x) { return SvIOKp(x) != 0; } int is_nv(SV *x) { return SvNOKp(x) != 0; } int is_pv(SV *x) { return SvPOKp(x) != 0; } END_C 1;
But I'm not sure I'd recommend doing this! Perl users expect to have all integers autostringified when needed. Also, I wouldn't try it on magic "double valued scalars" (which have different string and numeric values), like $!.
|
|---|