Currently the callable adapter assumes the function has the form f(t) and throws an error if you try to apply some input to the resulting process. However, it could also allow for functions of the form f(t, u) in which case apply would route the input to u.
Currently the callable adapter assumes the function has the form
f(t)
and throws an error if you try toapply
some input to the resulting process. However, it could also allow for functions of the formf(t, u)
in which caseapply
would route the input tou
.