Help for this page

Select Code to Download


  1. or download this
    AV* get_array(SV* aref)
    {
        if (! is_array_ref(aref))
    ...
        else
            return *temp;
    }
    
  2. or download this
        /* dereference array and get requested arrayref */
        array  = get_array(aref);
        elem   = get_element(array, index);