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.
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_integer_I8P(self,kind)result(to_number)!< Cast string to integer (I8P).!<!<```fortran!< use penf!< type(string) :: astring!< integer(I8P) :: integer_!< logical :: test_passed(1)!< astring = '127'!< integer_ = astring%to_number(kind=1_I8P)!< test_passed(1) = integer_==127_I8P!< print '(L1)', all(test_passed)!<```!=> T <<<class(string),intent(in)::self!< The string.integer(I8P),intent(in)::kind!< Mold parameter for kind detection.integer(I8P)::to_number!< The number into the string.if(allocated(self%raw))then if(self%is_integer())read(self%raw,*)to_numberendif endfunction to_integer_I8P