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 bstr_R8P(n)result(bstr)!< Convert real to string of bits.!<!< @note It is assumed that R8P is represented by means of 64 bits, but this is not ensured in all architectures.!<!<```fortran!< use penf!< print "(A)", bstr(n=1._R8P)!<```!=> 0000000000000000000000000000000000000000000000001111000000111111 <<<real(R8P),intent(in)::n!< Real to be converted.character(64)::bstr!< Returned bit-string containing input number.integer(I1P)::buffer(8)!< Transfer buffer.buffer=transfer(n,buffer)write(bstr,'(8B8.8)')bufferendfunction bstr_R8P