File: netcdf4_overloads.f90

package info (click to toggle)
netcdf-fortran 4.4.4%2Bds-2
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 8,420 kB
  • ctags: 8,797
  • sloc: fortran: 51,087; f90: 20,357; sh: 11,601; ansic: 7,034; makefile: 548; pascal: 313; xml: 173
file content (20 lines) | stat: -rw-r--r-- 789 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
  ! Overload fill value functions

  interface nf90_def_var_fill
    module procedure nf90_def_var_fill_OneByteInt,   &
                     nf90_def_var_fill_TwoByteInt,   &
                     nf90_def_var_fill_FourByteInt,  &
                     nf90_def_var_fill_EightByteInt, &
                     nf90_def_var_fill_FourByteReal, &
                     nf90_def_var_fill_EightByteReal
   end interface

  interface nf90_inq_var_fill
    module procedure nf90_inq_var_fill_OneByteInt,   &
                     nf90_inq_var_fill_TwoByteInt,   &
                     nf90_inq_var_fill_FourByteInt,  &
                     nf90_inq_var_fill_EightByteInt, &
                     nf90_inq_var_fill_FourByteReal, &
                     nf90_inq_var_fill_EightByteReal
   end interface