Definition at line 325 of file mod_ncll.f90.
◆ count_ncf_ns_dim_list()
integer function mod_ncll::count_nonsingleton_dim_list::count_ncf_ns_dim_list |
( |
type(ncfile), intent(in) |
LIST | ) |
|
Definition at line 3049 of file mod_ncll.f90.
3051 TYPE(NCFILE),
INTENT(IN) :: LIST
3052 TYPE(NCDIMP) ,
POINTER :: CURRENT, PREVIOUS
3054 previous => list%DIMS
3055 current => previous%NEXT
3058 IF(.NOT.
ASSOCIATED(current))
RETURN 3061 IF(current%DIM%DIM .GT. 1) cnt = cnt + 1
3063 previous => previous%NEXT
3064 current => current%NEXT
◆ count_var_ns_dim_list()
integer function mod_ncll::count_nonsingleton_dim_list::count_var_ns_dim_list |
( |
type(ncvar), intent(in) |
LIST | ) |
|
Definition at line 3072 of file mod_ncll.f90.
3074 TYPE(NCVAR),
INTENT(IN) :: LIST
3075 TYPE(NCDIMP) ,
POINTER :: CURRENT, PREVIOUS
3077 previous => list%DIMS
3078 current => previous%NEXT
3081 IF(.NOT.
ASSOCIATED(current))
RETURN 3084 IF(current%DIM%DIM .GT. 1) cnt = cnt + 1
3086 previous => previous%NEXT
3087 current => current%NEXT
The documentation for this interface was generated from the following file: