Hoogle Search
Within LTS Haskell 24.32 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
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)
setFirst :: forall x y c . Additive c => c -> BackpropFunc (c, x) y -> BackpropFunc x yinf-backprop Prelude.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
getFirstChild :: (MonadDOM m, IsNode self) => self -> m (Maybe Node)jsaddle-dom JSDOM.Generated.Node getFirstChildUnchecked :: (MonadDOM m, IsNode self) => self -> m Nodejsaddle-dom JSDOM.Generated.Node getFirstChildUnsafe :: (MonadDOM m, IsNode self, HasCallStack) => self -> m Nodejsaddle-dom JSDOM.Generated.Node