Hoogle Search

Within LTS Haskell 24.36 (ghc-9.10.3)

Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.

  1. forChannelId :: YouTubeSubscriptionsList -> Maybe Text

    gogol-youtube Gogol.YouTube.Subscriptions.List

    Return the subscriptions to the subset of these channels that the authenticated user is subscribed to.

  2. forecastingUrl :: ActivityContentDetailsPromotedItem -> Maybe [Text]

    gogol-youtube Gogol.YouTube.Types

    The list of forecasting URLs. The client should ping all of these URLs when a promoted item is not available, to indicate that a promoted item could have been shown.

  3. format :: CdnSettings -> Maybe Text

    gogol-youtube Gogol.YouTube.Types

    The format of the video stream that you are sending to Youtube.

  4. format_opts :: Param -> CInt

    hs-bibutils Text.Bibutils

    No documentation available.

  5. forM :: forall m (u :: Type -> Type) a (v :: Type -> Type) b c d . (Monad m, Vector u a, Vector v b, Vector u c, Vector v d) => Vector u v (a, b) -> ((a, b) -> m (c, d)) -> m (Vector u v (c, d))

    hybrid-vectors Data.Vector.Hybrid

    O(n) Apply the monadic action to all elements of the vector, yielding a vector of results. Equvalent to flip mapM.

  6. forM_ :: forall m (u :: Type -> Type) a (v :: Type -> Type) b c d . (Monad m, Vector u a, Vector v b, Vector u c, Vector v d) => Vector u v (a, b) -> ((a, b) -> m (c, d)) -> m ()

    hybrid-vectors Data.Vector.Hybrid

    O(n) Apply the monadic action to all elements of a vector and ignore the results. Equivalent to flip mapM_.

  7. force :: forall (u :: Type -> Type) a (v :: Type -> Type) b . (Vector u a, Vector v b) => Vector u v (a, b) -> Vector u v (a, b)

    hybrid-vectors Data.Vector.Hybrid

    O(n) Yield the argument but force it not to retain any extra memory, possibly by copying it. This is especially useful when dealing with slices. For example:

    force (slice 0 2 <huge vector>)
    
    Here, the slice retains a reference to the huge vector. Forcing it creates a copy of just the elements that belong to the slice and allows the huge vector to be garbage collected.

  8. forget :: Additive x => BackpropFunc x ()

    inf-backprop InfBackprop

    Transforms any function to unit (). It is not differentiable until StartBackprop is defined for (). However forget is useful if need to remove some data in the differentiable pipeline.

    Examples of usage

    >>> import InfBackprop (call, derivative)
    
    >>> f = first forget >>> (iso :: BackpropFunc ((), a) a) :: Additive a => BackpropFunc (a, a) a
    
    >>> call f (24, 42)
    42
    
    >>> derivative f (24, 42)
    (0,1)
    

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

  10. forgetSecond :: forall x y . Additive y => BackpropFunc (x, y) x

    inf-backprop InfBackprop

    Remove the second element of a tuple.

    Examples of usage

    >>> import InfBackprop (call, derivative)
    
    >>> call forgetSecond (24, 42)
    24
    
    >>> derivative forgetSecond (24, 42)
    (1,0)
    

Page 240 of many | Previous | Next