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.
elemental function byte_size_R8P(i)result(bytes)!< Compute the number of bytes of a real variable.!<!<```fortran!< use penf!< print FI1P, byte_size(1._R8P)!<```!=> 8 <<<real(R8P),intent(in)::i!< Real variable whose number of bytes must be computed.integer(I1P)::bytes!< Number of bytes of r.bytes=bit_size(i)/8_I1Pendfunction byte_size_R8P