Hoogle Search
Within Stackage Nightly 2026-07-01 (ghc-9.12.4)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
-
bloodhound Database.Bloodhound.ElasticSearch8.Requests setConnectorSyncJobStats updates the per-run counters of a sync job. Maps to PUT _connector_sync_job{id}_stats. The response schema is undocumented, so it is returned as an opaque Value.
-
bloodhound Database.Bloodhound.ElasticSearch9.Client setMlScheduledEvents adds (or replaces) scheduled events on a calendar via POST _mlcalendars{calendar_id}events.
-
bloodhound Database.Bloodhound.ElasticSearch9.Requests setMlScheduledEvents builds the BHRequest for POST _mlcalendars{calendar_id}events (ml-post-calendar-events), adding (or replacing) scheduled events on a calendar. The response echoes the stored events. For more information see https://www.elastic.co/docs/api/doc/elasticsearch/v9/operation/operation-ml-post-calendar-event.
setters :: Logistic t => t ((a -> a) -> t a -> t a)data-functor-logistic Data.Functor.Logistic No documentation available.
setConstants :: [Double] -> SRExpr -> SRExprdataframe-learn DataFrame.SymbolicRegression.Expr Replace the constants in traversal order; extra values are ignored.
setDyn :: Typeable a => DynamicState -> a -> DynamicStatedynamic-state Data.DynamicState No documentation available.
setFocusFL :: Int -> FocusList a -> Maybe (FocusList a)focuslist Data.FocusList Set the Focus for a FocusList. This is just like updateFocusFL, but doesn't return the newly focused item.
setFocusFL i fl == fmap snd (updateFocusFL i fl)
complexity: O(1)setFocusItemFL :: a -> FocusList a -> FocusList afocuslist Data.FocusList Set the item the FocusList is focusing on.
>>> let Just fl = fromListFL (Focus 1) [10, 20, 30] >>> setFocusItemFL 0 fl FocusList (Focus 1) [10,0,30]
>>> setFocusItemFL "hello" emptyFL FocusList NoFocus []
Note: this function forces the updated item. The following throws an exception from undefined even though we updated the focused item at index 1, but lookup the item at index 0.>>> let Just fl = fromListFL (Focus 1) [10, 20, 30] >>> let newFl = setFocusItemFL undefined fl >>> lookupFL 0 newFl *** Exception: ... ...
This is a specialization of updateFocusItemFL:updateFocusItemFL (const a) fl == setFocusItemFL a fl
complexity: O(log(min(i, n - i))) where i is the Focus, and n is the length of the FocusList.setAboutDialogArtists :: (MonadIO m, IsAboutDialog o) => o -> [Text] -> m ()gi-gtk-hs Data.GI.Gtk Set the value of the “artists” property. When overloading is enabled, this is equivalent to
set aboutDialog [ #artists := value ]
setAboutDialogAuthors :: (MonadIO m, IsAboutDialog o) => o -> [Text] -> m ()gi-gtk-hs Data.GI.Gtk Set the value of the “authors” property. When overloading is enabled, this is equivalent to
set aboutDialog [ #authors := value ]