Skip to Main Content
Perl Pocket Reference, 5th Edition
book

Perl Pocket Reference, 5th Edition

by Johan Vromans
July 2011
Intermediate to advanced content levelIntermediate to advanced
104 pages
2h 14m
English
O'Reilly Media, Inc.
Content preview from Perl Pocket Reference, 5th Edition

Hash Functions

defined expr

Not specifically a hash function, but provides a convenient way to test whether a hash element has a defined value.

delete [ local ] elt
delete [ local ] @hash{key1, key2, ... }

elt must specify a hash element like $hash{key} or expr->{key}. Deletes the specified elements from the hash. With local, the deletion is local to the enclosing block. Returns aliases to the deleted values.

each %hash

In list context, returns a two-element list consisting of the key and an alias to the value for the next element of the hash. In scalar context, returns only the key. After all values have been returned, an empty list is returned. The next call to each after that will start iterating again. A call to keys or values will reset the iteration.

exists elt

elt must specify a hash element (see delete on the facing page). Checks whether the specified hash key exists.

keys %hash

In list context, returns a list of all the keys of the named hash. In scalar context, returns the number of elements of the hash. Can be assigned to, to pre-extend the hash.

scalar %hash

Returns true if there are keys in the hash.

values %hash

Returns a list consisting of aliases to all the values of the named hash.

each, keys, and values return the elements in an apparently random order but the order is the same for all of them.

each, keys, and values may take an array reference as the first argument. Experimental.

Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Start your free trial

You might also like

Perl Testing: A Developer's Notebook

Perl Testing: A Developer's Notebook

Ian Langworth, Chromatic
Perl Hacks

Perl Hacks

Chromatic, Damian Conway, Curtis Ovid Poe, Curtis (Ovid) Poe

Publisher Resources

ISBN: 9781449311186Errata Page