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.
forChannelId :: YouTubeSubscriptionsList -> Maybe Textgogol-youtube Gogol.YouTube.Subscriptions.List Return the subscriptions to the subset of these channels that the authenticated user is subscribed to.
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.
format :: CdnSettings -> Maybe Textgogol-youtube Gogol.YouTube.Types The format of the video stream that you are sending to Youtube.
-
hs-bibutils Text.Bibutils No documentation available.
-
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.
-
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_.
-
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. 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)
forgetFirst :: Additive x => BackpropFunc (x, y) yinf-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)
forgetSecond :: forall x y . Additive y => BackpropFunc (x, y) xinf-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)