csv_string Derived Type

type, public :: csv_string

a cell from a CSV file.

This is used to store the data internally in the csv_file class.


Inherited by

type~~csv_string~~InheritedByGraph type~csv_string csv_string type~csv_file csv_file type~csv_file->type~csv_string header, csv_data

Components

Type Visibility Attributes Name Initial
character(len=:), public, allocatable :: str

Source Code

    type,public :: csv_string
        !! a cell from a CSV file.
        !!
        !! This is used to store the data internally
        !! in the [[csv_file]] class.
        character(len=:),allocatable :: str
    end type csv_string