Help for this page

Select Code to Download


  1. or download this
    package Array;
    
    ...
      $_->$method(@_);
     }
    }
    
  2. or download this
    my @array;
    tie (@array, 'Array');
    ...
    my $obj = tied @array;
    
    $obj->method; # calls method on all objects in the array
    
  3. or download this
    my @array;
    tie (@array, 'Array');
    @array = (new Foo,new Bar,new Baz);
    @array->method; # calls method on all objects in the array