Hoogle Search

Within LTS Haskell 24.36 (ghc-9.10.3)

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

  1. Progress :: String -> Float -> Progress

    tasty Test.Tasty.Runners

    No documentation available.

  2. module Data.Time.Clock.POSIX

    POSIX time, if you need to deal with timestamps and the like. Most people won't need this module. You can use POSIXTime to obtain integer/word timestamps. For example:

    import Data.Time
    import Data.Time.Clock.POSIX
    import Data.Int
    
    nanosSinceEpoch :: UTCTime -> Int64
    nanosSinceEpoch =
    floor . (1e9 *) . nominalDiffTimeToSeconds . utcTimeToPOSIXSeconds
    
    main :: IO ()
    main = do
    u <- getCurrentTime
    print $ nanosSinceEpoch u
    

  3. type POSIXTime = NominalDiffTime

    time Data.Time.Clock.POSIX

    POSIX time is the nominal time since 1970-01-01 00:00 UTC To convert from a CTime or System.Posix.EpochTime, use realToFrac.

  4. class ParseTime t

    time Data.Time.Format

    The class of types which can be parsed given a UNIX-style time format string.

  5. data PadOption

    time Data.Time.Format.Internal

    No documentation available.

  6. data ParseNumericPadding

    time Data.Time.Format.Internal

    No documentation available.

  7. class ParseTime t

    time Data.Time.Format.Internal

    The class of types which can be parsed given a UNIX-style time format string.

  8. module Bench.Vector.TestData.ParenTree

    No documentation available.

  9. type Pair = (Key, Value)

    aeson Data.Aeson.Types

    A key/value pair for an Object.

  10. data Parser a

    aeson Data.Aeson.Types

    A JSON parser. N.B. This might not fit your usual understanding of "parser". Instead you might like to think of Parser as a "parse result", i.e. a parser to which the input has already been applied.

Page 23 of many | Previous | Next