Hoogle Search

Within LTS Haskell 24.6 (ghc-9.10.2)

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

  1. prependList :: [a] -> NonEmpty a -> NonEmpty a

    base-compat-batteries Data.List.NonEmpty.Compat

    Attach a list at the beginning of a NonEmpty.

    >>> prependList [] (1 :| [2,3])
    1 :| [2,3]
    
    >>> prependList [negate 1, 0] (1 :| [2, 3])
    -1 :| [0,1,2,3]
    

  2. toList :: NonEmpty a -> [a]

    base-compat-batteries Data.List.NonEmpty.Compat

    Convert a stream to a normal list efficiently.

  3. fromPairList :: [(a, b)] -> T a b

    event-list Data.EventList.Absolute.TimeBody

    No documentation available.

  4. toPairList :: T a b -> [(a, b)]

    event-list Data.EventList.Absolute.TimeBody

    No documentation available.

  5. fromPairList :: [(body, time)] -> T time body

    event-list Data.EventList.Relative.BodyTime

    No documentation available.

  6. toPairList :: T time body -> [(body, time)]

    event-list Data.EventList.Relative.BodyTime

    No documentation available.

  7. fromAbsoluteEventList :: Num time => T time body -> T time body

    event-list Data.EventList.Relative.TimeBody

    No documentation available.

  8. fromAbsoluteEventListGen :: (absTime -> absTime -> relTime) -> absTime -> T absTime body -> T relTime body

    event-list Data.EventList.Relative.TimeBody

    Convert from absolute time stamps to relative time stamps using custom subtraction (like (-)) and zero.

  9. fromPairList :: [(a, b)] -> T a b

    event-list Data.EventList.Relative.TimeBody

    No documentation available.

  10. toAbsoluteEventList :: Num time => time -> T time body -> T time body

    event-list Data.EventList.Relative.TimeBody

    We tried hard to compute everything with respect to relative times. However sometimes we need absolute time values.

Page 83 of many | Previous | Next