pub fn partial2<G: Fn(X, &A1, &A2) -> O, T: DualNum<F>, F, X, A1: DualStruct<T, F>, A2: DualStruct<T, F>, O>(
g: G,
args1: &A1::Inner,
args2: &A2::Inner,
) -> impl Fn(X) -> O
Expand description
Evaluate the function g
with extra arguments args1
and args2
that are automatically adjusted to the
correct dual number type.