Help for this page

Select Code to Download


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