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
pure function slice(self,istart,iend)result(raw)!< Return the raw characters data sliced.!<!<```fortran!< type(string) :: astring!< astring = 'the Quick Brown fox Jumps over the Lazy Dog.'!< print "(A)", astring%slice(11,25)!<```!=> Brown fox Jumps <<<class(string),intent(in)::self!< The string.integer,intent(in)::istart!< Slice start index.integer,intent(in)::iend!< Slice end index.character(kind=CK,len=:),allocatable::raw!< Raw characters data.if(allocated(self%raw))thenraw=self%raw(istart:iend)elseraw=''endif endfunction slice