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.
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.
function encode_binary_dataarray1_rank2_I4P(x)result(code)!< Encode (Base64) a dataarray with 1 components of rank 2 (I4P).integer(I4P),intent(in)::x(1:,1:)!< Data variablecharacter(len=:),allocatable::code!< Encoded base64 dataarray.integer(I1P),allocatable::xp(:)!< Packed data.integer(I4P)::nn!< Number of elements.nn=size(x,dim=1)*size(x,dim=2)xp=transfer([int(nn*BYI4P,I4P),reshape(x,[nn])],xp)call b64_encode(n=xp,code=code)endfunction encode_binary_dataarray1_rank2_I4P