1 |
FETCH -- get variable value
|
2 |
STORE -- store variable value
|
3 |
DESTROY -- destroy variable
|
4 |
Tied hashes also should provide
-
EXISTS (implements exists)
-
DELETE (delete one key) CLEAR (clear out all keys)
-
FIRSTKEY() and together with
-
NEXTKEY() system implements keys() and each()
|
5 |
Note User provides these functions as they depend on particular behind the scenes manipulations
|
6 |
Note standard classes provide ability to specify user routines BEGIN and END to be run at beginning and end of invocation of a class
|