Hoogle Search

Within LTS Haskell 24.32 (ghc-9.10.3)

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

  1. catchAny :: IO a -> (forall e . Exception e => e -> IO a) -> IO a

    base GHC.IO

    Catch any Exception type in the IO monad. Note that this function is strict in the action. That is, catchAny undefined b == _|_. See for details.

  2. chooseAny :: Random a => Gen a

    QuickCheck Test.QuickCheck

    Generates a random element over the natural range of a.

  3. chooseAny :: Random a => Gen a

    QuickCheck Test.QuickCheck.Gen

    Generates a random element over the natural range of a.

  4. addGregorianYearsClip :: Integer -> Day -> Day

    time Data.Time.Calendar

    Add years, matching month and day, with Feb 29th clipped to Feb 28th if necessary. For instance, 2004-02-29 + 2 years = 2006-02-28.

  5. addGregorianYearsRollOver :: Integer -> Day -> Day

    time Data.Time.Calendar

    Add years, matching month and day, with Feb 29th rolled over to Mar 1st if necessary. For instance, 2004-02-29 + 2 years = 2006-03-01.

  6. pattern JulianYearMonthDay :: Year -> MonthOfYear -> DayOfMonth -> Day

    time Data.Time.Calendar.Julian

    Bidirectional abstract constructor for the proleptic Julian calendar. Invalid values will be clipped to the correct range, month first, then day.

  7. addJulianYearsClip :: Integer -> Day -> Day

    time Data.Time.Calendar.Julian

    Add years, matching month and day, with Feb 29th clipped to Feb 28th if necessary. For instance, 2004-02-29 + 2 years = 2006-02-28.

  8. addJulianYearsRollOver :: Integer -> Day -> Day

    time Data.Time.Calendar.Julian

    Add years, matching month and day, with Feb 29th rolled over to Mar 1st if necessary. For instance, 2004-02-29 + 2 years = 2006-03-01.

  9. fromJulianYearAndDay :: Year -> DayOfYear -> Day

    time Data.Time.Calendar.Julian

    Convert from proleptic Julian year and day format. Invalid day numbers will be clipped to the correct range (1 to 365 or 366).

  10. fromJulianYearAndDayValid :: Year -> DayOfYear -> Maybe Day

    time Data.Time.Calendar.Julian

    Convert from proleptic Julian year and day format. Invalid day numbers will return Nothing

Page 95 of many | Previous | Next