function Type
fun functionType( argTypes: A_Tuple, returnType: A_Type, exceptionSet: A_Set = emptySet): A_Type
Content copied to clipboard
Answer a new function type whose instances accept arguments whose types conform to the corresponding entries in the provided tuple of types, produce values that conform to the return type, and raise no checked exceptions.
Return
A function type.