toml_token Derived Type

type, public :: toml_token

Token containing


Components

Type Visibility Attributes Name Initial
integer, public :: chunk = 0

Identifier for the chunk index in case of buffered reading

integer, public :: first = 0

Starting position of the token in character stream

integer, public :: kind = token_kind%newline

Kind of token

integer, public :: last = 0

Last position of the token in character stream


Source Code

   type :: toml_token
      !> Kind of token
      integer :: kind = token_kind%newline
      !> Starting position of the token in character stream
      integer :: first = 0
      !> Last position of the token in character stream
      integer :: last = 0
      !> Identifier for the chunk index in case of buffered reading
      integer :: chunk = 0
   end type toml_token