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.

  1. pattern AccountsContainersWorkspacesBuilt_in_variablesRevertType_ElementVisibilityFirstTime :: AccountsContainersWorkspacesBuilt_in_variablesRevertType

    gogol-tagmanager Gogol.TagManager.Types

    No documentation available.

  2. pattern AccountsContainersWorkspacesBuilt_in_variablesRevertType_FirstPartyServingUrl :: AccountsContainersWorkspacesBuilt_in_variablesRevertType

    gogol-tagmanager Gogol.TagManager.Types

    No documentation available.

  3. pattern BuiltInVariable_Type_ElementVisibilityFirstTime :: BuiltInVariable_Type

    gogol-tagmanager Gogol.TagManager.Types

    No documentation available.

  4. pattern BuiltInVariable_Type_FirstPartyServingUrl :: BuiltInVariable_Type

    gogol-tagmanager Gogol.TagManager.Types

    No documentation available.

  5. pattern Trigger_Type_FirebaseFirstOpen :: Trigger_Type

    gogol-tagmanager Gogol.TagManager.Types

    No documentation available.

  6. module Data.Graph.Algorithm.BreadthFirstSearch

    Breadth-first search

  7. module Data.Graph.Algorithm.DepthFirstSearch

    Depth-first search

  8. 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)
    

  9. 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
    

  10. 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)
    

Page 117 of many | Previous | Next