Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
character(len=*), | intent(in) | :: | name |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
type(ESMF_Grid), | intent(in) | :: | grid |
type :: GridType private character(len=:), allocatable :: name contains procedure :: equals procedure :: not_equals procedure :: less_than procedure :: greater_than_or_equal generic :: operator(<) => less_than generic :: operator(>=) => greater_than_or_equal generic :: operator(==) => equals generic :: operator(/=) => not_equals end type GridType