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. alphaNum :: forall s (m :: Type -> Type) u . Stream s m Char => ParsecT s u m Char

    parsec Text.ParserCombinators.Parsec.Char

    Parses a alphabetic or numeric Unicode characters according to isAlphaNum. Returns the parsed character. Note that numeric digits outside the ASCII range (such as arabic-indic digits like e.g. "٤" or U+0664), as well as numeric characters which aren't digits, are parsed by this function but not by digit.

  2. enumerate :: Location -> [Location]

    doctest Test.DocTest.Internal.Location

    Create a list from a location, by repeatedly increasing the line number by one.

  3. enumFromToC :: forall (m :: Type -> Type) a i . (Monad m, Enum a, Ord a) => a -> a -> ConduitT i a m ()

    conduit Conduit

    Enumerate from a value to a final value, inclusive, via succ. This is generally more efficient than using Prelude's enumFromTo and combining with sourceList since this avoids any intermediate data structures.

  4. enumFromTo :: forall (m :: Type -> Type) a i . (Monad m, Enum a, Ord a) => a -> a -> ConduitT i a m ()

    conduit Data.Conduit.Combinators

    Enumerate from a value to a final value, inclusive, via succ. This is generally more efficient than using Prelude's enumFromTo and combining with sourceList since this avoids any intermediate data structures. Subject to fusion

  5. enumFromTo :: forall o (m :: Type -> Type) l i u . (Enum o, Eq o, Monad m) => o -> o -> Pipe l i o u m ()

    conduit Data.Conduit.Internal

    No documentation available.

  6. enumFromToS :: forall a (m :: Type -> Type) . (Enum a, Ord a, Monad m) => a -> a -> StreamProducer m a

    conduit Data.Conduit.Internal.List.Stream

    No documentation available.

  7. enumFromToS_int :: forall a (m :: Type -> Type) . (Integral a, Monad m) => a -> a -> StreamProducer m a

    conduit Data.Conduit.Internal.List.Stream

    No documentation available.

  8. enumFromTo :: forall a (m :: Type -> Type) i . (Enum a, Ord a, Monad m) => a -> a -> ConduitT i a m ()

    conduit Data.Conduit.List

    Enumerate from a value to a final value, inclusive, via succ. This is generally more efficient than using Prelude's enumFromTo and combining with sourceList since this avoids any intermediate data structures. Subject to fusion Since 0.4.2

  9. managerSetMaxNumberHeaders :: Int -> ManagerSettings -> ManagerSettings

    http-client Network.HTTP.Client

    No documentation available.

  10. newtype MaxNumberHeaders

    http-client Network.HTTP.Client.Internal

    The maximum number of header fields.

Page 149 of many | Previous | Next