Hoogle Search

Within LTS Haskell 24.18 (ghc-9.10.3)

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

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

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

    hsini Data.Ini

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

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

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

  5. setDuplication :: MonadQuery m => Duplication -> m ()

    relational-query Database.Relational.Monad.Class

    Specify duplication.

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

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

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

  9. setNotNullSyntax :: IsSql92AlterColumnActionSyntax syntax => syntax

    beam-migrate Database.Beam.Migrate.SQL.SQL92

    No documentation available.

  10. setNullSyntax :: IsSql92AlterColumnActionSyntax syntax => syntax

    beam-migrate Database.Beam.Migrate.SQL.SQL92

    No documentation available.

Page 53 of many | Previous | Next