A string identifying the function uniquely in the Lua script.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
type(aot_fun_type), | intent(in) | :: | fun | Function to identify. |
Identification of the function as a string.
function aot_fun_id(fun) result(id)
!> Function to identify.
type(aot_fun_type), intent(in) :: fun
!> Identification of the function as a string.
character(len=32) :: id
character(len=32) :: tmp
write(tmp,'(i0)') fun%id
id = adjustl(tmp)
end function aot_fun_id