Hoogle Search
Within Stackage Nightly 2025-09-26 (ghc-9.12.2)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
settings_ignoreException :: Settings -> Exception -> Boolbugsnag 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.
settings_onNotifyException :: Settings -> HttpException -> IO ()bugsnag Data.Bugsnag.Settings How to handle an exception reporting error events Default is to ignore.
settings_releaseStage :: Settings -> Textbugsnag Data.Bugsnag.Settings The current release-stage, Production by default
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.
setOption :: SectionName -> OptionName -> OptionValue -> Config -> Confighsini Data.Ini Sets the value of the option, adding it if it doesn't exist.
-
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]
setmapped :: (Eq b, Hashable b) => Setter (HashSet a) (HashSet b) a boptics-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]
setEra :: Era Rational -> Active a -> Active aactive 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.
setCaseSensitivity :: CaseSensitivity -> Replacer -> Replaceralfred-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.
setCaseSensitivity :: CaseSensitivity -> Searcher v -> Searcher valfred-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.