Hoogle Search
Within LTS Haskell 24.49 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
forM :: (Mappable col, Applicative m, Monad m) => col a -> (a -> m b) -> m (col b)foundation Foundation.Collection forM is mapM with its arguments flipped. For a version that ignores the results see forM_.
forM_ :: (Mappable col, Applicative m, Monad m) => col a -> (a -> m b) -> m ()foundation Foundation.Collection forM_ is mapM_ with its arguments flipped. For a version that doesn't ignore the results see forM.
foreignMem :: PrimType ty => FinalPtr ty -> CountOf ty -> UArray tyfoundation Foundation.Foreign No documentation available.
force :: NormalForm a => a -> afoundation Foundation.Primitive No documentation available.
-
html Text.Html No documentation available.
formatHTTPDate :: HTTPDate -> ByteStringhttp-date Network.HTTP.Date Generating HTTP Date in RFC1123 style.
>>> formatHTTPDate defaultHTTPDate {hdYear = 1994, hdMonth = 11, hdDay = 15, hdHour = 8, hdMinute = 12, hdSecond = 31, hdWkday = 2} "Tue, 15 Nov 1994 08:12:31 GMT"formatISO8601 :: UTCTime -> Stringiso8601-time Data.Time.ISO8601 Formats a time in ISO 8601, with up to 12 second decimals. This is the formatTime format %FT%T%Q == %%Y-%m-%dT%%H:%M:%S%Q.
formatISO8601Javascript :: UTCTime -> Stringiso8601-time Data.Time.ISO8601 Formats a time like JavaScript's new Date().toISOString() as specified by Mozilla: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/toISOString This is an alias for formatISO8601Millis.
formatISO8601Micros :: UTCTime -> Stringiso8601-time Data.Time.ISO8601 Formats a time in ISO 8601 with up to microsecond precision and trailing zeros. The format is precisely:
YYYY-MM-DDTHH:mm:ss.ssssssZ
formatISO8601Millis :: UTCTime -> Stringiso8601-time Data.Time.ISO8601 Formats a time in ISO 8601 with up to millisecond precision and trailing zeros. The format is precisely:
YYYY-MM-DDTHH:mm:ss.sssZ