Hoogle Search

Within LTS Haskell 24.40 (ghc-9.10.3)

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

  1. DataStreamNewlineTypeAny :: DataStreamNewlineType

    gi-gio GI.Gio.Enums

    Automatically try to handle any line ending type.

  2. IOErrorEnumTooManyLinks :: IOErrorEnum

    gi-gio GI.Gio.Enums

    File contains too many symbolic links.

  3. IOErrorEnumTooManyOpenFiles :: IOErrorEnum

    gi-gio GI.Gio.Enums

    The current process has too many files open and can't open any more. Duplicate descriptors do count toward this limit. Since 2.20

  4. FileMeasureFlagsReportAnyError :: FileMeasureFlags

    gi-gio GI.Gio.Flags

    Report any error encountered while traversing the directory tree. Normally errors are only reported for the toplevel file.

  5. TlsPasswordFlagsManyTries :: TlsPasswordFlags

    gi-gio GI.Gio.Flags

    Hint to the user that the password has been wrong many times, and the user may not have many chances left.

  6. getInetAddressIsAny :: (MonadIO m, IsInetAddress o) => o -> m Bool

    gi-gio GI.Gio.Objects.InetAddress

    Get the value of the “is-any” property. When overloading is enabled, this is equivalent to

    get inetAddress #isAny
    

  7. inetAddressGetIsAny :: (HasCallStack, MonadIO m, IsInetAddress a) => a -> m Bool

    gi-gio GI.Gio.Objects.InetAddress

    Tests whether address is the "any" address for its family. Since: 2.22

  8. inetAddressNewAny :: (HasCallStack, MonadIO m) => SocketFamily -> m InetAddress

    gi-gio GI.Gio.Objects.InetAddress

    Creates a InetAddress for the "any" address (unassigned/"don't care") for family. Since: 2.22

  9. socketListenerAddAnyInetPort :: (HasCallStack, MonadIO m, IsSocketListener a, IsObject b) => a -> Maybe b -> m Word16

    gi-gio GI.Gio.Objects.SocketListener

    Listens for TCP connections on any available port number for both IPv6 and IPv4 (if each is available). This is useful if you need to have a socket for incoming connections but don't care about the specific port number. sourceObject will be passed out in the various calls to accept to identify this particular source, which is useful if you're listening on multiple addresses and do different things depending on what address is connected to. Since: 2.24

  10. many :: Alternative f => f a -> f [a]

    relude Relude.Applicative

    Zero or more.

    Examples

    >>> many (putStr "la")
    lalalalalalalalala... * goes on forever *
    
    >>> many Nothing
    Just []
    
    >>> take 5 <$> many (Just 1)
    * hangs forever *
    
    Note that this function can be used with Parsers based on Applicatives. In that case many parser will attempt to parse parser zero or more times until it fails.

Page 132 of many | Previous | Next