in reply to implementing 'push' in Class:MakeMethods
sub push_x { my $self = shift; push @{$self->{x}},@_; # ^^^^^^^^^^ or whatever the internal representation is } [download]
$object->push_x($new_value); [download]