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_ascii_dataarray3_rank1_R8P(x,y,z)result(code)!< Encode (Base64) a dataarray with 3 components of rank 1 (R8P).real(R8P),intent(in)::x(1:)!< X component.real(R8P),intent(in)::y(1:)!< Y component.real(R8P),intent(in)::z(1:)!< Z component.character(len=:),allocatable::code!< Encoded base64 dataarray.integer(I4P)::n!< Counter.integer(I4P)::l!< Lengthinteger(I4P)::sp!< String pointerinteger(I4P)::size_n!< Dimension 1 sizesize_n=size(x,dim=1)l=DR8P*3+2sp=0code=repeat(' ',l*size_n)do n=1,size_ncode(sp+1:sp+l)=str(n=x(n))//' '//str(n=y(n))//' '//str(n=z(n))sp=sp+lenddo endfunction encode_ascii_dataarray3_rank1_R8P