Help for this page

Select Code to Download


  1. or download this
    sub normalise{
        my $network_device_polling_data = shift;
    ...
        ...;
        return $network_device_polling_data;
    }
    
  2. or download this
    sub normalise_network_device_polling_data {
        my $data = shift;
    ...
        ...;
        return $data;
    }
    
  3. or download this
    sub normalise_network_device_polling_data {
        die "This is a procedure not a function" if defined wantarray;
    ...
            $_ = quotemeta;
        }
    }