sub is_numeric { use warnings FATAL => qw( numeric uninitialized ); local $@; my $x = shift; return eval { $x == $x }; }