Hoogle Search

Within LTS Haskell 24.33 (ghc-9.10.3)

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

  1. enumerate :: (Enum a, Bounded a) => [a]

    extra Extra

    Enumerate all the values of an Enum, from minBound to maxBound.

    enumerate == [False, True]
    

  2. withNumCapabilities :: Int -> IO a -> IO a

    extra Extra

    On GHC 7.6 and above with the -threaded flag, brackets a call to setNumCapabilities. On lower versions (which lack setNumCapabilities) this function just runs the argument action.

  3. module Data.Ix.Enum

    Implementations of Ix methods in terms of Enum methods. For a type T of class Enum you can easily define an Ix instance by copying the following code into your module:

    import qualified Data.Ix.Enum as IxEnum
    
    instance Ix T where
    range           = IxEnum.range
    index           = IxEnum.index
    inRange         = IxEnum.inRange
    rangeSize       = IxEnum.rangeSize
    unsafeIndex     = IxEnum.unsafeIndex
    unsafeRangeSize = IxEnum.unsafeRangeSize
    

  4. managerSetMaxNumberHeaders :: Int -> ManagerSettings -> ManagerSettings

    http-conduit Network.HTTP.Client.Conduit

    No documentation available.

  5. KeySizeEnum :: [Int] -> KeySizeSpecifier

    crypton Crypto.Cipher.Types

    one of the specified values

  6. newtype PrivateNumber

    crypton Crypto.PubKey.DH

    Represent Diffie Hellman private number X.

  7. PrivateNumber :: Integer -> PrivateNumber

    crypton Crypto.PubKey.DH

    No documentation available.

  8. newtype PublicNumber

    crypton Crypto.PubKey.DH

    Represent Diffie Hellman public number Y.

  9. PublicNumber :: Integer -> PublicNumber

    crypton Crypto.PubKey.DH

    No documentation available.

  10. type PrivateNumber = Integer

    crypton Crypto.PubKey.DSA

    DSA Private Number, usually embedded in DSA Private Key

Page 153 of many | Previous | Next