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.
DataStreamNewlineTypeAny :: DataStreamNewlineTypegi-gio GI.Gio.Enums Automatically try to handle any line ending type.
IOErrorEnumTooManyLinks :: IOErrorEnumgi-gio GI.Gio.Enums File contains too many symbolic links.
IOErrorEnumTooManyOpenFiles :: IOErrorEnumgi-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
FileMeasureFlagsReportAnyError :: FileMeasureFlagsgi-gio GI.Gio.Flags Report any error encountered while traversing the directory tree. Normally errors are only reported for the toplevel file.
TlsPasswordFlagsManyTries :: TlsPasswordFlagsgi-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.
getInetAddressIsAny :: (MonadIO m, IsInetAddress o) => o -> m Boolgi-gio GI.Gio.Objects.InetAddress Get the value of the “is-any” property. When overloading is enabled, this is equivalent to
get inetAddress #isAny
inetAddressGetIsAny :: (HasCallStack, MonadIO m, IsInetAddress a) => a -> m Boolgi-gio GI.Gio.Objects.InetAddress Tests whether address is the "any" address for its family. Since: 2.22
inetAddressNewAny :: (HasCallStack, MonadIO m) => SocketFamily -> m InetAddressgi-gio GI.Gio.Objects.InetAddress Creates a InetAddress for the "any" address (unassigned/"don't care") for family. Since: 2.22
-
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
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.