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 input_nb_cmp(me)result(nb_cmp)class(input_t),intent(in)::meinteger::nb_cmptype(type_key_value_pair),pointer::cmpnb_cmp=0cmp=>me%cmp_by_type%firstdo while(associated(cmp))select type(cmp_array=>cmp%value);class is(input_t)nb_cmp=nb_cmp+size(cmp_array%cmp_arr)end selectcmp=>cmp%nextenddoend function input_nb_cmp