Hoogle Search
Within LTS Haskell 24.16 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
toMonthDay :: Day -> (Month, DayOfMonth)time-compat Data.Time.Calendar.Month.Compat Part of MonthDay pattern
monthAndDayToDayOfYear :: Bool -> MonthOfYear -> DayOfMonth -> DayOfYeartime-compat Data.Time.Calendar.MonthDay.Compat 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-compat Data.Time.Calendar.MonthDay.Compat 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-compat Data.Time.Calendar.OrdinalDate.Compat 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-compat Data.Time.Calendar.OrdinalDate.Compat 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-compat Data.Time.Calendar.OrdinalDate.Compat No documentation available.
fromSundayStartWeek :: Year -> WeekOfYear -> Int -> Daytime-compat Data.Time.Calendar.OrdinalDate.Compat The inverse of sundayStartWeek. Get a Day given the year and the number of the day of a Sunday-starting week. The first Sunday is the first day of week 1, any earlier days in the year are week 0 (as %U in formatTime).
fromSundayStartWeekValid :: Year -> WeekOfYear -> Int -> Maybe Daytime-compat Data.Time.Calendar.OrdinalDate.Compat No documentation available.
mondayStartWeek :: Day -> (WeekOfYear, Int)time-compat Data.Time.Calendar.OrdinalDate.Compat Get the number of the Monday-starting week in the year 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). Monday is 1, Sunday is 7 (as %u in formatTime).
sundayStartWeek :: Day -> (WeekOfYear, Int)time-compat Data.Time.Calendar.OrdinalDate.Compat Get the number of the Sunday-starting week in the year and the day of the week. The first Sunday is the first day of week 1, any earlier days in the year are week 0 (as %U in formatTime). Sunday is 0, Saturday is 6 (as %w in formatTime).