Definition at line 40 of file ArrayHandlers.f90.
 
◆ concat_integer()
  
  | 
        
          | subroutine arrayhandlersmodule::concatarray::concat_integer | ( | integer(i4b), dimension(:), pointer, contiguous | array, |  
          |  |  | integer(i4b), dimension(:), pointer, contiguous | array_to_add |  
          |  | ) |  |  |  | private | 
 
Definition at line 459 of file ArrayHandlers.f90.
  460     integer(I4B), 
dimension(:), 
pointer, 
contiguous :: array
 
  461     integer(I4B), 
dimension(:), 
pointer, 
contiguous :: array_to_add
 
  466     call extendptrarray(array, increment=
size(array_to_add))
 
  467     do i = 1, 
size(array_to_add)
 
  468       array(n + i) = array_to_add(i)
 
 
 
The documentation for this interface was generated from the following file: