Help for this page
# Preloaded methods go here. sub XYZ::ABC::Scalar::TIESCALAR { ... my ($val) = @_; return bless \$val, $class; }
sub XYZ::ABC::Array::STORE { my $self = shift; abc_array_store ($self->{ARRAY}, @_); }