Safe Haskell | Trustworthy |
---|---|
Language | Haskell2010 |
Data.Time.Calendar.Month.Compat
Contents
Synopsis
- newtype Month = MkMonth Integer
- addMonths :: Integer -> Month -> Month
- diffMonths :: Month -> Month -> Integer
- pattern YearMonth :: Year -> MonthOfYear -> Month
- fromYearMonthValid :: Year -> MonthOfYear -> Maybe Month
- pattern MonthDay :: Month -> DayOfMonth -> Day
- fromMonthDayValid :: Month -> DayOfMonth -> Maybe Day
- fromYearMonth :: Year -> MonthOfYear -> Month
- toYearMonth :: Month -> (Year, MonthOfYear)
- fromMonthDay :: Month -> DayOfMonth -> Day
- toMonthDay :: Day -> (Month, DayOfMonth)
Documentation
An absolute count of common calendar months.
Number is equal to (year * 12) + (monthOfYear - 1)
.
Constructors
MkMonth Integer |
Instances
Enum Month Source # | |
Defined in Data.Time.Calendar.Month.Compat | |
Eq Month Source # | |
Data Month Source # | |
Defined in Data.Time.Calendar.Month.Compat Methods gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> Month -> c Month gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c Month dataTypeOf :: Month -> DataType dataCast1 :: Typeable t => (forall d. Data d => c (t d)) -> Maybe (c Month) dataCast2 :: Typeable t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c Month) gmapT :: (forall b. Data b => b -> b) -> Month -> Month gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> Month -> r gmapQr :: forall r r'. (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> Month -> r gmapQ :: (forall d. Data d => d -> u) -> Month -> [u] gmapQi :: Int -> (forall d. Data d => d -> u) -> Month -> u gmapM :: Monad m => (forall d. Data d => d -> m d) -> Month -> m Month gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> Month -> m Month gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> Month -> m Month | |
Ord Month Source # | |
Read Month Source # | Read as |
Defined in Data.Time.Calendar.Month.Compat | |
Show Month Source # | Show as |
Ix Month Source # | |
NFData Month Source # | |
Defined in Data.Time.Calendar.Month.Compat | |
FormatTime Month Source # | |
Defined in Data.Time.Calendar.Month.Compat Methods formatCharacter :: Bool -> Char -> Maybe (FormatOptions -> Month -> String) |
diffMonths :: Month -> Month -> Integer Source #
pattern YearMonth :: Year -> MonthOfYear -> Month Source #
Bidirectional abstract constructor. Invalid months of year will be clipped to the correct range.
fromYearMonthValid :: Year -> MonthOfYear -> Maybe Month Source #
pattern MonthDay :: Month -> DayOfMonth -> Day Source #
Bidirectional abstract constructor. Invalid days of month will be clipped to the correct range.
fromMonthDayValid :: Month -> DayOfMonth -> Maybe Day Source #
time-compat extras
fromYearMonth :: Year -> MonthOfYear -> Month Source #
Part of YearMonth
pattern
toYearMonth :: Month -> (Year, MonthOfYear) Source #
Part of YearMonth
pattern
fromMonthDay :: Month -> DayOfMonth -> Day Source #
Part of MonthDay
pattern
toMonthDay :: Day -> (Month, DayOfMonth) Source #
Part of MonthDay
pattern