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

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

    jsaddle-dom JSDOM.Generated.Node

    Mozilla Node.firstChild documentation

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

    jsaddle-dom JSDOM.Generated.Node

    Mozilla Node.firstChild documentation

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

    jsaddle-dom JSDOM.Generated.Node

    Mozilla Node.firstChild documentation

  5. getFirstElementChild :: (MonadDOM m, IsParentNode self) => self -> m (Maybe Element)

    jsaddle-dom JSDOM.Generated.ParentNode

    Mozilla ParentNode.firstElementChild documentation

  6. getFirstElementChildUnchecked :: (MonadDOM m, IsParentNode self) => self -> m Element

    jsaddle-dom JSDOM.Generated.ParentNode

    Mozilla ParentNode.firstElementChild documentation

  7. getFirstElementChildUnsafe :: (MonadDOM m, IsParentNode self, HasCallStack) => self -> m Element

    jsaddle-dom JSDOM.Generated.ParentNode

    Mozilla ParentNode.firstElementChild documentation

  8. getFirstEmptyRegionIndex :: MonadDOM m => WebKitNamedFlow -> m Int

    jsaddle-dom JSDOM.Generated.WebKitNamedFlow

    Mozilla WebKitNamedFlow.firstEmptyRegionIndex documentation

  9. deleteFirstsBy :: (a -> a -> Bool) -> [a] -> [a] -> [a]

    listsafe Data.List.Safe

    The deleteFirstsBy function takes a predicate and two lists and returns the first list with the first occurrence of each element of the second list removed. This is the non-overloaded version of (\\).

    (\\) == deleteFirstsBy (==)
    
    The second list must be finite, but the first may be infinite.

    Examples

    >>> deleteFirstsBy (>) [1..10] [3, 4, 5]
    [4,5,6,7,8,9,10]
    
    >>> deleteFirstsBy (/=) [1..10] [1, 3, 5]
    [4,5,6,7,8,9,10]
    

  10. MDB_FIRST :: MDB_cursor_op

    lmdb Database.LMDB.Raw

    No documentation available.

Page 118 of many | Previous | Next