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.
Source Code
function flu_tolstring(L,index,len)result(string)type(flu_State)::Linteger::indexinteger::lencharacter,pointer,dimension(:)::stringinteger::string_shape(1)integer(kind=c_int)::c_indexinteger(kind=c_size_t)::c_lentype(c_ptr)::c_stringc_index=indexc_string=lua_tolstring(L%state,c_index,c_len)len=int(c_len,kind=kind(len))string_shape(1)=lencall c_f_pointer(c_string,string,string_shape)end function flu_tolstring