File: netcdf4_overloads.f90

package info (click to toggle)
netcdf-fortran 4.5.3%2Bds-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 7,456 kB
  • sloc: fortran: 25,848; f90: 20,793; sh: 4,609; ansic: 1,729; makefile: 585; pascal: 292; 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