We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
An array is faster and smaller than a hash table.
Running with Perl v5.30.0 on darwin -------------------------------------------------------------------------------- Rate $Hash->{...} $List->[...] $Hash->{...} 6818182/s -- -31% $List->[...] 9836066/s 44% -- $Hash->{...} 446 bytes $List->[...] 226 bytes
Benchmarked by https://github.com/azumakuniyuki/make-perl-code-faster/blob/master/t/list-vs-hash.t
A Hash table exists which has a few keys in the following methods:
Sisimai::Address->find (%$emailtable)
Sisimai::DateTime->parse (%$v)
Sisimai::DateTime->tz2second (%$digit)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
An array is faster and smaller than a hash table.
Benchmarked by https://github.com/azumakuniyuki/make-perl-code-faster/blob/master/t/list-vs-hash.t
A Hash table exists which has a few keys in the following methods:
Sisimai::Address->find (%$emailtable)
Sisimai::DateTime->parse (%$v)
Sisimai::DateTime->tz2second (%$digit)
The text was updated successfully, but these errors were encountered: