is there a go function that allows me to return th...
# general
s
is there a go function that allows me to return the inner type of an
Output
? something like:
Copy code
func ApplyErr[A1, B any](
	i1 Input[A1],
	fn func(A1) (B, error),
) B