Definition at line 310 of file mod_ncll.f90.
◆ find_ncf_dim_unlimited()
type(ncdim) function, pointer mod_ncll::find_unlimited::find_ncf_dim_unlimited |
( |
type(ncfile), intent(in) |
LIST, |
|
|
logical, intent(out) |
FOUND |
|
) |
| |
Definition at line 2778 of file mod_ncll.f90.
2779 TYPE(NCDIM),
POINTER :: DIM
2780 TYPE(NCFILE),
INTENT(IN):: LIST
2781 LOGICAL,
INTENT(OUT) :: FOUND
2782 TYPE(NCDIMP) ,
POINTER :: CURRENT, PREVIOUS
2785 previous => list%DIMS
2786 current => previous%NEXT
2790 IF(.NOT.
ASSOCIATED(current))
RETURN 2792 IF(current%DIM%UNLIMITED )
THEN 2797 previous => previous%NEXT
2798 current => current%NEXT
◆ find_var_dim_unlimited()
type(ncdim) function, pointer mod_ncll::find_unlimited::find_var_dim_unlimited |
( |
type(ncvar), intent(in) |
LIST, |
|
|
logical, intent(out) |
FOUND |
|
) |
| |
Definition at line 2889 of file mod_ncll.f90.
2890 TYPE(NCDIM),
POINTER :: DIM
2891 TYPE(NCVAR),
INTENT(IN) :: LIST
2892 LOGICAL,
INTENT(OUT) :: FOUND
2893 TYPE(NCDIMP) ,
POINTER :: CURRENT, PREVIOUS
2896 previous => list%DIMS
2897 current => previous%NEXT
2901 IF(.NOT.
ASSOCIATED(current))
RETURN 2903 IF(current%DIM%UNLIMITED )
THEN 2908 previous => previous%NEXT
2909 current => current%NEXT
The documentation for this interface was generated from the following file: