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.

  1. setConnectorSyncJobStats :: ConnectorSyncJobId -> SetConnectorSyncJobStatsRequest -> BHRequest StatusDependant Value

    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.

  2. setMlScheduledEvents :: (MonadBH m, WithBackend 'ElasticSearch9 m) => MlCalendarId -> MlScheduledEvents -> m MlScheduledEventsResponse

    bloodhound Database.Bloodhound.ElasticSearch9.Client

    setMlScheduledEvents adds (or replaces) scheduled events on a calendar via POST _mlcalendars{calendar_id}events.

  3. setMlScheduledEvents :: MlCalendarId -> MlScheduledEvents -> BHRequest StatusDependant MlScheduledEventsResponse

    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.

  4. setters :: Logistic t => t ((a -> a) -> t a -> t a)

    data-functor-logistic Data.Functor.Logistic

    No documentation available.

  5. setConstants :: [Double] -> SRExpr -> SRExpr

    dataframe-learn DataFrame.SymbolicRegression.Expr

    Replace the constants in traversal order; extra values are ignored.

  6. setDyn :: Typeable a => DynamicState -> a -> DynamicState

    dynamic-state Data.DynamicState

    No documentation available.

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

  8. setFocusItemFL :: a -> FocusList a -> FocusList a

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

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

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

Page 75 of many | Previous | Next