character_array_element_t Derived Type

type, private :: character_array_element_t

This type is wrapper to make a allocatable character array with variable length.


Components

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

Source Code

   type character_array_element_t
      character(:), allocatable :: c
   end type character_array_element_t