Help for this page

Select Code to Download


  1. or download this
    sub push_x {
      my $self = shift;
      push @{$self->{x}},@_;
    #        ^^^^^^^^^^ or whatever the internal representation is
    }
    
  2. or download this
    $object->push_x($new_value);