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.
Source Code
function rnd_array_int_i8(gen,n,i1,i2)result(arr)class(rndgen),intent(in)::geninteger(kind=i4),intent(in)::ninteger(kind=i8),intent(in)::i1,i2integer(kind=i4)::iinteger(kind=i8),allocatable::arr(:)arr=[(gen%int_i8(i1,i2),i=1,n)]end function rnd_array_int_i8