Hoogle Search

Within Stackage Nightly 2025-09-28 (ghc-9.12.2)

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

  1. settings_ignoreException :: Settings -> Exception -> Bool

    bugsnag Data.Bugsnag.Settings

    Exception filtering Functions like notifyBugsnag will do nothing with exceptions that pass this predicate. N.B. Something lower-level, like reportError won't be aware of this.

  2. settings_onNotifyException :: Settings -> HttpException -> IO ()

    bugsnag Data.Bugsnag.Settings

    How to handle an exception reporting error events Default is to ignore.

  3. settings_releaseStage :: Settings -> Text

    bugsnag Data.Bugsnag.Settings

    The current release-stage, Production by default

  4. setTransactionSettings :: MonadDB m => TransactionSettings -> m ()

    hpqtypes Database.PostgreSQL.PQTypes.Class

    Set transaction settings to supplied ones. Note that it won't change any properties of currently running transaction, only the subsequent ones.

  5. setOption :: SectionName -> OptionName -> OptionValue -> Config -> Config

    hsini Data.Ini

    Sets the value of the option, adding it if it doesn't exist.

  6. setOf :: forall k a (is :: IxList) s . (Is k A_Fold, Eq a, Hashable a) => Optic' k is s a -> s -> HashSet a

    optics-extra Data.HashSet.Optics

    Construct a HashSet from a fold.

    >>> setOf folded ["hello","world"]
    fromList ["hello","world"]
    
    >>> setOf (folded % _2) [("hello",1),("world",2),("!!!",3)]
    fromList [1,2,3]
    

  7. setmapped :: (Eq b, Hashable b) => Setter (HashSet a) (HashSet b) a b

    optics-extra Data.HashSet.Optics

    This Setter can be used to change the type of a HashSet by mapping the elements to new values. Sadly, you can't create a valid Traversal for a HashSet, but you can manipulate it by reading using folded and reindexing it via setmapped.

    >>> over setmapped (+1) (HashSet.fromList [1,2,3,4])
    fromList [2,3,4,5]
    

  8. setEra :: Era Rational -> Active a -> Active a

    active Data.Active

    Set the era of an Active value. Note that this will change a constant Active into a dynamic one which happens to have the same value at all times.

  9. setCaseSensitivity :: CaseSensitivity -> Replacer -> Replacer

    alfred-margaret Data.Text.AhoCorasick.Replacer

    Updates the case sensitivity of the replacer. Does not change the capitilization of the needles. The caller should be certain that if IgnoreCase is passed, the needles are already lower case.

  10. setCaseSensitivity :: CaseSensitivity -> Searcher v -> Searcher v

    alfred-margaret Data.Text.AhoCorasick.Searcher

    Updates the case sensitivity of the searcher. Does not change the capitilization of the needles. The caller should be certain that if IgnoreCase is passed, the needles are already lower case.

Page 53 of many | Previous | Next