Hoogle Search

Within LTS Haskell 24.35 (ghc-9.10.3)

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

  1. toSet :: Multiset v -> Set v

    more-containers Data.Multiset

    O(m) Returns the Set of all distinct elements in the multiset.

  2. camelCaseTypeName :: forall (t :: NAME) . [Name t] -> TypeName -> TypeName

    morpheus-graphql-code-gen-utils Data.Morpheus.CodeGen.Utils

    No documentation available.

  3. tlsClientSockSettings :: TLSClientConfig -> Maybe SockSettings

    network-conduit-tls Data.Conduit.Network.TLS

    Socks configuration; default is Nothing. If absent, Socks will not be used. Since 1.0.2

  4. tlsClientTLSSettings :: TLSClientConfig -> TLSSettings

    network-conduit-tls Data.Conduit.Network.TLS

    TLS settings to use. If not provided, defaults will be provided. Since 1.0.2

  5. tlsClientUseTLS :: TLSClientConfig -> Bool

    network-conduit-tls Data.Conduit.Network.TLS

    Default is True. If set to False, will make a non-TLS connection. Since 1.0.2

  6. newtype Datetimeoffset

    odbc Database.ODBC.SQLServer

    Use this type to discard the timeZoneMinutes and timeZoneName components of a ZonedTime. https://docs.microsoft.com/en-us/sql/t-sql/data-types/datetimeoffset-transact-sql?view=sql-server-2017

  7. Datetimeoffset :: ZonedTime -> Datetimeoffset

    odbc Database.ODBC.SQLServer

    No documentation available.

  8. unDatetimeoffset :: Datetimeoffset -> ZonedTime

    odbc Database.ODBC.SQLServer

    No documentation available.

  9. module Data.CharSet

    It is recommended to import this module qualified to avoid name conflicts with functions from the Prelude. Enabling OverloadedStrings will allow declaring CharSets using string literal syntax.

    {-# LANGUAGE OverloadedStrings #-}
    
    import qualified Data.CharSet as CS
    
    vowels :: CS.CharSet
    vowels = "aeiou"
    

  10. data CharSet

    parser-regex Data.CharSet

    A set of Chars. The members are stored as contiguous ranges of Chars. This is efficient when the members form contiguous ranges since many Chars can be represented with just one range.

Page 200 of many | Previous | Next