| Previous | Next
Tie::HashProvides skeletal methods for hash-tying classes. Tie::Hash provides a To write your own tied hashes, the methods listed here are required. See the perltie manpage for more detailed information and for examples.
TIEHASH ClassName, list Constructor. Associates a new hash instance with class tie %hash,
CLEAR this Clears all values from tied hash this.
DELETE this, key Deletes key from tied hash
EXISTS this, key Verifies that key exists for tied hash
FETCH this, key Retrieves value associated with key for tied hash
FIRSTKEY this Returns key/value pair for the first key in tied hash
NEXTKEY this, lastkey Returns next key/value pair after lastkeyfor tied hash this.
STORE this, key, value Stores value into tied hash |