Nodes of different colours represent the following:
Solid arrows point from a procedure to one which it calls. Dashed
arrows point from an interface to procedures which implement that interface.
This could include the module procedures in a generic interface or the
implementation in a submodule of an interface in a parent module.
Source Code
elemental function to_real_R16P(self,kind)result(to_number)!< Cast string to real (R16P).!<!<```fortran!< use penf!< type(string) :: astring!< real(R16P) :: real_!< logical :: test_passed(1)!< astring = '3.4e9'!< real_ = astring%to_number(kind=1._R16P)!< test_passed(1) = real_==3.4e9_R16P!< print '(L1)', all(test_passed)!<```!=> T <<<class(string),intent(in)::self!< The string.real(R16P),intent(in)::kind!< Mold parameter for kind detection.real(R16P)::to_number!< The number into the string.if(allocated(self%raw))then if(self%is_real())read(self%raw,*)to_numberendif endfunction to_real_R16P