class EL_FUNCTION_INFO
Client examples: AGENT_TEST_SET
Function info
note
	description: "Function info"
	author: "Finnian Reilly"
	copyright: "Copyright (c) 2001-2022 Finnian Reilly"
	contact: "finnian at eiffel hyphen loop dot com"
	license: "MIT license (See: en.wikipedia.org/wiki/MIT_License)"
	date: "2025-05-08 9:59:50 GMT (Thursday 8th May 2025)"
	revision: "3"
		
		class
	EL_FUNCTION_INFO
inherit
	EL_ROUTINE_INFO
		redefine
			make, type
		end
create
	make
feature {NONE} -- Initialization
	make (a_name: detachable READABLE_STRING_8; a_type: like type)
		do
			Precursor (a_name, a_type)
			result_type := a_type.generic_parameter_type (2)
		end
feature -- Access
	type: TYPE [FUNCTION [ANY]]
	result_type: TYPE [ANY]
end