devel/cppunit misses a destructor declaration for one of its classes.
[pkgsrcv2.git] / devel / p5-Array-RefElem / DESCR
1 This module gives direct access to some of the internal Perl routines
2 that let you store things in arrays and hashes. The following
3 functions are available:
4
5 av_store(@array, $index, $value)
6
7     Stores $value in @array at the specified $index. After executing
8     this call, $array[$index] and $value denote the same thing.
9
10 av_push(@array, $value)
11
12     Pushes $value onto the @array. After executing this call,
13     $array[-1] and $value denote the same thing.
14
15 hv_store(%hash, $key, $value);
16
17     Stores $value in the %hash with the given $key. After executing
18     this call, $hash{$key} and $value denote the same thing.