StringWrap Derived Type

type, public :: StringWrap

This derived type is a workaround for sporadic Intel Fortran issues when accessing strings through unlimited polymorphic entities.


Components

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

Source Code

   type :: StringWrap
     character(len=:), allocatable :: value
   end type StringWrap