ad-3.3.1: Automatic Differentiation

PortabilityGHC only
Stabilityexperimental
Maintainerekmett@gmail.com
Safe HaskellSafe-Inferred

Numeric.AD.Internal.Combinators

Description

Combinators used internally by Numeric.AD

Synopsis

Documentation

zipWithT :: (Foldable f, Traversable g) => (a -> b -> c) -> f a -> g b -> g cSource

Zip a Foldable f with a Traversable g assuming f has at least as many entries as g.

zipWithDefaultT :: (Foldable f, Traversable g) => a -> (a -> b -> c) -> f a -> g b -> g cSource

Zip a Foldable f with a Traversable g assuming f, using a default value after f is exhausted.