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 is_lower(self)!< Return true if all characters in the string are lowercase.!<!<```fortran!< type(string) :: astring!< logical :: test_passed(3)!< astring = ' Hello World'!< test_passed(1) = astring%is_lower().eqv..false.!< astring = ' HELLO WORLD'!< test_passed(2) = astring%is_lower().eqv..false.!< astring = ' hello world'!< test_passed(3) = astring%is_lower().eqv..true.!< print '(L1)', all(test_passed)!<```!=> T <<<class(string),intent(in)::self!< The string.logical::is_lower!< Result of the test.integer::c!< Character counter.is_lower=.false.if(allocated(self%raw))thenis_lower=.true.do c=1,len(self%raw)if(index(UPPER_ALPHABET,self%raw(c:c))>0)thenis_lower=.false.exit endif enddo endif endfunction is_lower