My Project
Public Member Functions | List of all members
mod_ncll::count_dim_list Interface Reference

Public Member Functions

integer function count_ncf_dim_list (LIST)
 
integer function count_var_dim_list (LIST)
 

Detailed Description

Definition at line 320 of file mod_ncll.f90.

Member Function/Subroutine Documentation

◆ count_ncf_dim_list()

integer function mod_ncll::count_dim_list::count_ncf_dim_list ( type(ncfile), intent(in)  LIST)

Definition at line 3402 of file mod_ncll.f90.

3402  IMPLICIT NONE
3403  INTEGER :: CNT
3404  TYPE(NCFILE), INTENT(IN) :: LIST
3405  TYPE(NCDIMP) ,POINTER :: CURRENT, PREVIOUS
3406 
3407  previous => list%DIMS
3408  current => previous%NEXT
3409  cnt = 0
3410  DO
3411  IF(.NOT. ASSOCIATED(current)) RETURN !END OF LIST
3412  previous => previous%NEXT
3413  current => current%NEXT
3414  cnt = cnt + 1
3415  END DO
3416 

◆ count_var_dim_list()

integer function mod_ncll::count_dim_list::count_var_dim_list ( type(ncvar), intent(in)  LIST)

Definition at line 3421 of file mod_ncll.f90.

3421  IMPLICIT NONE
3422  INTEGER :: CNT
3423  TYPE(NCVAR), INTENT(IN) :: LIST
3424  TYPE(NCDIMP) ,POINTER :: CURRENT, PREVIOUS
3425 
3426  previous => list%DIMS
3427  current => previous%NEXT
3428  cnt = 0
3429  DO
3430  IF(.NOT. ASSOCIATED(current)) RETURN !END OF LIST
3431  previous => previous%NEXT
3432  current => current%NEXT
3433  cnt = cnt + 1
3434  END DO
3435 

The documentation for this interface was generated from the following file: