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_dataarray3_rank1_I4P(x,y,z)result(code)!< Encode (Base64) a dataarray with 3 components of rank 1 (I4P).integer(I4P),intent(in)::x(1:)!< X component.integer(I4P),intent(in)::y(1:)!< Y component.integer(I4P),intent(in)::z(1:)!< Z component.character(len=:),allocatable::code!< Encoded base64 dataarray.integer(I1P),allocatable::xyz(:)!< Packed data.integer(I4P)::nn!< Number of elements.integer(I4P)::n!< Counter.nn=size(x,dim=1)xyz=transfer([int(3*nn*BYI4P,I4P),[(x(n),y(n),z(n),n=1,nn)]],xyz)call b64_encode(n=xyz,code=code)endfunction encode_binary_dataarray3_rank1_I4P