Hoogle Search

Within LTS Haskell 24.46 (ghc-9.10.3)

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

  1. AI_NUMERICSERV :: AddrInfoFlag

    network Network.Socket

    The ServiceName argument must be a port number in string form, and service name lookups will not be attempted. (Only some platforms support this.)

  2. NI_NUMERICHOST :: NameInfoFlag

    network Network.Socket

    The name of the host is not looked up. Instead, a numeric representation of the host's address is returned. For an IPv4 address, this will be a dotted-quad string. For IPv6, it will be colon-separated hexadecimal.

  3. NI_NUMERICSERV :: NameInfoFlag

    network Network.Socket

    The name of the service is not looked up. Instead, a numeric representation of the service is returned.

  4. data PortNumber

    network Network.Socket

    Port number. Use the Num instance (i.e. use a literal) to create a PortNumber value.

    >>> 1 :: PortNumber
    1
    
    >>> read "1" :: PortNumber
    1
    
    >>> show (12345 :: PortNumber)
    "12345"
    
    >>> 50000 < (51000 :: PortNumber)
    True
    
    >>> 50000 < (52000 :: PortNumber)
    True
    
    >>> 50000 + (10000 :: PortNumber)
    60000
    

  5. type ProtocolNumber = CInt

    network Network.Socket

    Protocol number.

  6. alphaNum :: forall s (m :: Type -> Type) u . Stream s m Char => ParsecT s u m Char

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

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

  8. enumerate :: Location -> [Location]

    doctest Test.DocTest.Internal.Location

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

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

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

Page 151 of many | Previous | Next