Hoogle Search
Within LTS Haskell 24.50 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
-
gogol-tagmanager Gogol.TagManager.Types No documentation available.
-
gogol-tagmanager Gogol.TagManager.Types No documentation available.
pattern
BuiltInVariable_Type_ElementVisibilityFirstTime :: BuiltInVariable_Typegogol-tagmanager Gogol.TagManager.Types No documentation available.
pattern
BuiltInVariable_Type_FirstPartyServingUrl :: BuiltInVariable_Typegogol-tagmanager Gogol.TagManager.Types No documentation available.
pattern
Trigger_Type_FirebaseFirstOpen :: Trigger_Typegogol-tagmanager Gogol.TagManager.Types No documentation available.
module Data.Graph.Algorithm.
BreadthFirstSearch Breadth-first search
module Data.Graph.Algorithm.
DepthFirstSearch Depth-first search
forgetFirst :: Additive x => BackpropFunc (x, y) yinf-backprop InfBackprop Remove the first element of a tuple.
Examples of usage
>>> import InfBackprop (call, derivative)
>>> call forgetFirst (24, 42) 42
>>> derivative forgetFirst (24, 42) (0,1)
setFirst :: forall x y c . Additive c => c -> BackpropFunc (c, x) y -> BackpropFunc x yinf-backprop InfBackprop Transforms a 2-argument differentiable function into a single argument function by fixing its first argument.
>>> import Prelude (Float) >>> import InfBackprop (call, derivative) >>> call (setFirst 8 (/)) 4 :: Float 2.0
>>> import Debug.SimpleExpr.Expr (variable) >>> x = variable "x" >>> y = variable "y" >>> derivative (setFirst x (*)) y 1·x
forgetFirst :: Additive x => BackpropFunc (x, y) yinf-backprop Prelude.InfBackprop Remove the first element of a tuple.
Examples of usage
>>> import InfBackprop (call, derivative)
>>> call forgetFirst (24, 42) 42
>>> derivative forgetFirst (24, 42) (0,1)