Help for this page

Select Code to Download


  1. or download this
    $tree->insert($node); #works
    
    ...
    $trees->insert($node); #error: $trees object can't contain $node
    
    $matrix->insert($node); #error: $matrix object can't contain $node
    
  2. or download this
    sub insert {
        my ( $self, $obj_to_insert ) = @_;
    ...
            die "I can't hold that object!";
        }
    }