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. forContentOwner :: YouTubeSearchList -> Maybe Bool

    gogol-youtube Gogol.YouTube.Search.List

    Search owned by a content owner.

  2. forDeveloper :: YouTubeSearchList -> Maybe Bool

    gogol-youtube Gogol.YouTube.Search.List

    Restrict the search to only retrieve videos uploaded using the project id of the authenticated user.

  3. forMine :: YouTubeSearchList -> Maybe Bool

    gogol-youtube Gogol.YouTube.Search.List

    Search for the private videos of the authenticated user.

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

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

  6. format :: CdnSettings -> Maybe Text

    gogol-youtube Gogol.YouTube.Types

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

  7. format_opts :: Param -> CInt

    hs-bibutils Text.Bibutils

    No documentation available.

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

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

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

Page 240 of many | Previous | Next