FunctionType<R> typedef
FunctionType<R> =
R Function()
Generic function type that takes no parameters and returns R. Used in FunctionTypeObject for lazy evaluation.
Implementation
typedef FunctionType<R> = R Function();