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.

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

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

  3. foreignMem :: PrimType ty => FinalPtr ty -> CountOf ty -> UArray ty

    foundation Foundation.Foreign

    No documentation available.

  4. force :: NormalForm a => a -> a

    foundation Foundation.Primitive

    No documentation available.

  5. form :: Html -> Html

    html Text.Html

    No documentation available.

  6. formatHTTPDate :: HTTPDate -> ByteString

    http-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"
    

  7. formatISO8601 :: UTCTime -> String

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

  8. formatISO8601Javascript :: UTCTime -> String

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

  9. formatISO8601Micros :: UTCTime -> String

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

  10. formatISO8601Millis :: UTCTime -> String

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

Page 85 of many | Previous | Next