toml_date Derived Type

type, public :: toml_date

TOML date value (YYYY-MM-DD)


Components

Type Visibility Attributes Name Initial
integer, public :: day = -1
integer, public :: month = -1
integer, public :: year = -1

Source Code

   type :: toml_date
      integer :: year = -1
      integer :: month = -1
      integer :: day = -1
   end type toml_date