ReturnTyp
ReturnTyp is a term used in programming documentation to refer to the type of value that a function or method returns. It indicates the function’s return type in a language-agnostic way, and is often used when explaining or spec-ing interfaces.
In static type systems, ReturnTyp is expressed as a concrete type such as Int or String, or
For functions that yield multiple values, ReturnTyp may correspond to a tuple type or a structured type;
Examples (conceptual): def add(a: Int, b: Int) -> ReturnTyp would specify that the return value has type
See also: Return type, Type annotation, Type inference, Function signature, Tuple type, Union type.