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.

  1. pattern Trigger_Type_FirebaseFirstOpen :: Trigger_Type

    gogol-tagmanager Gogol.TagManager.Types

    No documentation available.

  2. module Data.Graph.Algorithm.BreadthFirstSearch

    Breadth-first search

  3. module Data.Graph.Algorithm.DepthFirstSearch

    Depth-first search

  4. forgetFirst :: Additive x => BackpropFunc (x, y) y

    inf-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)
    

  5. setFirst :: forall x y c . Additive c => c -> BackpropFunc (c, x) y -> BackpropFunc x y

    inf-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
    

  6. forgetFirst :: Additive x => BackpropFunc (x, y) y

    inf-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)
    

  7. setFirst :: forall x y c . Additive c => c -> BackpropFunc (c, x) y -> BackpropFunc x y

    inf-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
    

  8. getFirstChild :: (MonadDOM m, IsNode self) => self -> m (Maybe Node)

    jsaddle-dom JSDOM.Generated.Node

    Mozilla Node.firstChild documentation

  9. getFirstChildUnchecked :: (MonadDOM m, IsNode self) => self -> m Node

    jsaddle-dom JSDOM.Generated.Node

    Mozilla Node.firstChild documentation

  10. getFirstChildUnsafe :: (MonadDOM m, IsNode self, HasCallStack) => self -> m Node

    jsaddle-dom JSDOM.Generated.Node

    Mozilla Node.firstChild documentation

Page 114 of many | Previous | Next