Hoogle Search

Within LTS Haskell 24.56 (ghc-9.10.3)

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

  1. IOErrorEnumTooManyLinks :: IOErrorEnum

    gi-gio GI.Gio.Enums

    File contains too many symbolic links.

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

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

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

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

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

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

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

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

  10. biany :: Bifoldable t => (a -> Bool) -> (b -> Bool) -> t a b -> Bool

    relude Relude.Foldable.Reexport

    Determines whether any element of the structure satisfies its appropriate predicate argument. Empty structures yield False.

    Examples

    Basic usage:
    >>> biany even isDigit (27, 't')
    False
    
    >>> biany even isDigit (27, '8')
    True
    
    >>> biany even isDigit (26, 't')
    True
    
    >>> biany even isDigit (Left 27)
    False
    
    >>> biany even isDigit (Left 26)
    True
    
    >>> biany even isDigit (BiList [27, 53] ['t', '8'])
    True
    
    Empty structures yield False:
    >>> biany even isDigit (BiList [] [])
    False
    

Page 134 of many | Previous | Next