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 subroutine ioffset_update(self,n_byte)!< Update ioffset count.class(xml_writer_appended),intent(inout)::self!< Writer.integer(I4P),intent(in)::n_byte!< Number of bytes saved.if(self%encoding=='raw')thenself%ioffset=self%ioffset+BYI4P+n_byteelseself%ioffset=self%ioffset+((n_byte+BYI4P+2_I4P)/3_I4P)*4_I4Pendif endsubroutine ioffset_update