in reply to Re^4: "exists $hash{key}" is slower than "$hash{key}"
in thread "exists $hash{key}" is slower than "$hash{key}"
Not only that, it also turns off strict, so Perl doesn't tell you the hash you're trying to access doesn't exist.
sub _doeval { no strict; eval shift }
|
|---|