source:
trunk/essentials/dev-lang/perl/lib/Tie/Hash.pm@
3184
| Last change on this file since 3184 was 3181, checked in by , 19 years ago | |
|---|---|
| File size: 7.1 KB | |
| Line | |
|---|---|
| 1 | package Tie::Hash; |
| 2 | |
| 3 | our $VERSION = '1.02'; |
| 4 | |
| 5 | =head1 NAME |
| 6 | |
| 7 | Tie::Hash, Tie::StdHash, Tie::ExtraHash - base class definitions for tied hashes |
| 8 | |
| 9 | =head1 SYNOPSIS |
| 10 | |
| 11 | package NewHash; |
| 12 | require Tie::Hash; |
| 13 | |
| 14 | @ISA = (Tie::Hash); |
| 15 | |
| 16 | sub DELETE { ... } # Provides needed method |
| 17 | sub CLEAR { ... } # Overrides inherited method |
| 18 | |
| 19 | |
| 20 | package NewStdHash; |
