any -base -package

any :: (Char -> Bool) -> ByteString -> Bool
bytestring Data.ByteString.Char8, bytestring Data.ByteString.Lazy.Char8
Applied to a predicate and a ByteString, any determines if any element of the ByteString satisfies the predicate.
any :: (Char -> Bool) -> Text -> Bool
text Data.Text, text Data.Text.Lazy
O(n) any p t determines whether any character in the Text t satisifes the predicate p. Subject to fusion.
any :: (Word8 -> Bool) -> ByteString -> Bool
bytestring Data.ByteString, bytestring Data.ByteString.Lazy
O(n) Applied to a predicate and a ByteString, any determines if any element of the ByteString satisfies the predicate.
aNY_PORT :: PortNumber
network Network.Socket
anyChar :: Stream s m Char => ParsecT s u m Char
parsec Text.Parsec.Char, parsec Text.ParserCombinators.Parsec.Char
This parser succeeds for any character. Returns the parsed character.
anyToken :: (Stream s m t, Show t) => ParsecT s u m t
parsec Text.Parsec.Combinator, parsec Text.ParserCombinators.Parsec.Combinator
The parser anyToken accepts any kind of token. It is for example used to implement eof. Returns the accepted token.
addGregorianYearsClip :: Integer -> Day -> Day
time Data.Time.Calendar
Add years, matching month and day, with Feb 29th clipped to Feb 28th if necessary. For instance, 2004-02-29 + 2 years = 2006-02-28.
addGregorianYearsRollOver :: Integer -> Day -> Day
time Data.Time.Calendar
Add years, matching month and day, with Feb 29th rolled over to Mar 1st if necessary. For instance, 2004-02-29 + 2 years = 2006-03-01.
addJulianYearsClip :: Integer -> Day -> Day
time Data.Time.Calendar.Julian
Add years, matching month and day, with Feb 29th clipped to Feb 28th if necessary. For instance, 2004-02-29 + 2 years = 2006-02-28.
addJulianYearsRollOver :: Integer -> Day -> Day
time Data.Time.Calendar.Julian
Add years, matching month and day, with Feb 29th rolled over to Mar 1st if necessary. For instance, 2004-02-29 + 2 years = 2006-03-01.
fromJulianYearAndDay :: Integer -> Int -> Day
time Data.Time.Calendar.Julian
convert from proleptic Julian year and day format. Invalid day numbers will be clipped to the correct range (1 to 365 or 366).
fromJulianYearAndDayValid :: Integer -> Int -> Maybe Day
time Data.Time.Calendar.Julian
convert from proleptic Julian year and day format. Invalid day numbers will return Nothing
getAnyProcessStatus :: Bool -> Bool -> IO (Maybe (ProcessID, ProcessStatus))
unix System.Posix.Process.ByteString, unix System.Posix.Process
getAnyProcessStatus blk stopped calls waitpid, returning Just (pid, tc), the ProcessID and ProcessStatus for any child process if one is available, Nothing otherwise. If blk is False, then WNOHANG is set in the options for waitpid, otherwise not. If stopped is True, then WUNTRACED is set in the options for waitpid, otherwise not.
iN6ADDR_ANY :: HostAddress6
network Network.Socket
The IPv6 wild card address.
iNADDR_ANY :: HostAddress
network Network.Socket
The IPv4 wild card address.
many :: ParsecT s u m a -> ParsecT s u m [a]
parsec Text.Parsec.Prim, parsec Text.ParserCombinators.Parsec.Prim
many p applies the parser p zero or more times. Returns a list of the returned values of p. > identifier = do{ c <- letter > ; cs <- many (alphaNum <|> char '_') > ; return (c:cs) > }
many1 :: Stream s m t => ParsecT s u m a -> ParsecT s u m [a]
parsec Text.Parsec.Combinator, parsec Text.ParserCombinators.Parsec.Combinator
many1 p applies the parser p one or more times. Returns a list of the returned values of p. > word = many1 letter
manyAccum :: (a -> [a] -> [a]) -> ParsecT s u m a -> ParsecT s u m [a]
parsec Text.Parsec.Prim
manyTill :: Stream s m t => ParsecT s u m a -> ParsecT s u m end -> ParsecT s u m [a]
parsec Text.Parsec.Combinator, parsec Text.ParserCombinators.Parsec.Combinator
manyTill p end applies parser p zero or more times until parser end succeeds. Returns the list of values returned by p. This parser can be used to scan comments: > simpleComment = do{ string "<!--" > ; manyTill anyChar (try (string "-->")) > } Note the overlapping parsers anyChar and string "-->", and therefore the use of the try combinator.
matchAny :: Graph gr => gr a b -> GDecomp gr a b
fgl Data.Graph.Inductive.Graph

Show more results