tiearray tweaks
[p5sagit/p5-mst-13.2.git] / lib / Tie / Array.pm
CommitLineData
ab3c8535 1package Tie::Array;
2
3# No content yet - just pod skeleton.
4
51;
6
7__END__
8
9=head1 NAME
10
11Tie::Array - base class for tied arrays
12
13=head1 SYNOPSIS
14
15 use Tie::Array;
16 @ISA = 'Tie::Array';
17
18 sub SIZE { ... }
19 sub FETCH { ... }
20 sub STORE { ... }
21 sub CLEAR { ... }
22 sub PUSH { ... }
23 sub POP { ... }
24 sub SHIFT { ... }
25 sub UNSHIFT { ... }
26 sub SPLICE { ... }
27
28=head1 DESCRIPTION
29
30This module provides some skeletal methods for array-tying classes.
31
32
33=head1 CAVEATS
34
35There is no support at present for tied @ISA. There is a potential conflict
36between magic entries needed to notice setting of @ISA, and those needed to
37implement 'tie'.
38
39=cut
40