Net::ACL::Set::Add - Class adding a value to a data element


Net-ACL documentation  | view source Contained in the Net-ACL distribution.

Index


NAME

Top

Net::ACL::Set::Add - Class adding a value to a data element

SYNOPSIS

Top

    use Net::ACL::Set::Add;

    # Construction
    my $set = new Net::ACL::Set::Add(42,1);

    # Accessor Methods
    @data = $set->set(@data); # same as: $data[1] += 42;

DESCRIPTION

Top

This module is a very simple array element addition utility to allow simple value addition with Net::ACL::Rule. Note that using overloading of the "+=" operator, complex operation can be executed for objects.

CONSTRUCTOR

Top

new()
    my $set = new Net::ACL::Set::Add(42,1);

This is the constructor for Net::ACL::Set::Add objects. It returns a reference to the newly created object.

The first argument is the argument number to set that should be modified. The second argument are the value added the the element.

ACCESSOR METHODS

Top

set()

This function modifies the arguments according to the arguments of the constructor and returns them.

SEE ALSO

Top

Net::ACL::Set, Net::ACL::Set::Scalar, Net::ACL

AUTHOR

Top

Martin Lorensen <bgp@martin.lorensen.dk>


Net-ACL documentation  | view source Contained in the Net-ACL distribution.