Hoogle Search
Within LTS Haskell 24.4 (ghc-9.10.2)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
showJulianYearAndDay :: Day -> Stringtime Data.Time.Calendar.Julian Show in proleptic Julian year and day format (yyyy-ddd)
toJulianYearAndDay :: Day -> (Year, DayOfYear)time Data.Time.Calendar.Julian Convert to proleptic Julian year and day format.
pattern
MonthDay :: Month -> DayOfMonth -> Daytime Data.Time.Calendar.Month Bidirectional abstract constructor. Invalid days of month will be clipped to the correct range.
fromMonthDayValid :: Month -> DayOfMonth -> Maybe Daytime Data.Time.Calendar.Month No documentation available.
module Data.Time.Calendar.
MonthDay No documentation available.
monthAndDayToDayOfYear :: Bool -> MonthOfYear -> DayOfMonth -> DayOfYeartime Data.Time.Calendar.MonthDay Convert month and day in the Gregorian or Julian calendars to day of year. First arg is leap year flag.
monthAndDayToDayOfYearValid :: Bool -> MonthOfYear -> DayOfMonth -> Maybe DayOfYeartime Data.Time.Calendar.MonthDay Convert month and day in the Gregorian or Julian calendars to day of year. First arg is leap year flag.
pattern
YearDay :: Year -> DayOfYear -> Daytime Data.Time.Calendar.OrdinalDate Bidirectional abstract constructor for ISO 8601 Ordinal Date format. Invalid day numbers will be clipped to the correct range (1 to 365 or 366).
fromMondayStartWeek :: Year -> WeekOfYear -> Int -> Daytime Data.Time.Calendar.OrdinalDate The inverse of mondayStartWeek. Get a Day given the year, the number of the Monday-starting week, and the day of the week. The first Monday is the first day of week 1, any earlier days in the year are week 0 (as %W in formatTime).
fromMondayStartWeekValid :: Year -> WeekOfYear -> Int -> Maybe Daytime Data.Time.Calendar.OrdinalDate No documentation available.