Hoogle Search

Within LTS Haskell 24.46 (ghc-9.10.3)

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

  1. type FileOffset = COff

    tar-conduit Data.Conduit.Tar.Types

    No documentation available.

  2. headerOffset :: Header -> !FileOffset

    tar-conduit Data.Conduit.Tar.Types

    No documentation available.

  3. headerPayloadOffset :: Header -> !FileOffset

    tar-conduit Data.Conduit.Tar.Types

    No documentation available.

  4. leapOffset :: LeapInfo -> Int

    timezone-olson Data.Time.LocalTime.TimeZone.Olson

    The new total offset of UTC from UT1 after this leap second

  5. type family Subset (as :: [k]) (bs :: [k])

    units Data.Metrology

    Is one list a subset of the other?

  6. type family Subset (as :: [k]) (bs :: [k])

    units Data.Metrology.Set

    Is one list a subset of the other?

  7. module Data.Validity.HashSet

    No documentation available.

  8. xpSubsetAll :: (a -> Bool) -> PU [a] b -> PU [a] [b]

    xml-picklers Data.XML.Pickle

    For unpickling, apply the given pickler to a subset of the elements determined by a given predicate. Pickles like xpAll.

  9. data HSet s

    HSet Data.HSet.Mutable

    No documentation available.

  10. data ParseT err (m :: Type -> Type) a

    aeson-better-errors Data.Aeson.BetterErrors

    The type of parsers: things which consume JSON values and produce either detailed errors or successfully parsed values (of other types). The err type parameter is for custom validation errors; for parsers that don't produce any custom validation errors, I recommend you just stick a type variable in for full generality:

    asTuple :: Parse e (Int, Int)
    asTuple = (,) <$> nth 0 asIntegral <*> nth 1 asIntegral
    
    The m parameter allows you to run the parser within an abitrary underlying Monad. You may want to use Parse in most cases instead, and all functions in this module work on either.

Page 165 of many | Previous | Next