Safe Haskell | Safe |
---|---|
Language | Haskell2010 |
An absolute count of common calendar months.
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
Documentation
An absolute count of common calendar months.
Number is equal to (year * 12) + (monthOfYear - 1)
.
Instances
Data Month # | |
Defined in Data.Time.Calendar.Month gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> Month -> c Month Source # gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c Month Source # toConstr :: Month -> Constr Source # dataTypeOf :: Month -> DataType Source # dataCast1 :: Typeable t => (forall d. Data d => c (t d)) -> Maybe (c Month) Source # dataCast2 :: Typeable t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c Month) Source # gmapT :: (forall b. Data b => b -> b) -> Month -> Month Source # gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> Month -> r Source # gmapQr :: forall r r'. (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> Month -> r Source # gmapQ :: (forall d. Data d => d -> u) -> Month -> [u] Source # gmapQi :: Int -> (forall d. Data d => d -> u) -> Month -> u Source # gmapM :: Monad m => (forall d. Data d => d -> m d) -> Month -> m Month Source # gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> Month -> m Month Source # gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> Month -> m Month Source # | |
Enum Month # | |
Defined in Data.Time.Calendar.Month succ :: Month -> Month Source # pred :: Month -> Month Source # toEnum :: Int -> Month Source # fromEnum :: Month -> Int Source # enumFrom :: Month -> [Month] Source # enumFromThen :: Month -> Month -> [Month] Source # enumFromTo :: Month -> Month -> [Month] Source # enumFromThenTo :: Month -> Month -> Month -> [Month] Source # | |
Ix Month # | |
Defined in Data.Time.Calendar.Month | |
Read Month # | Read as |
Show Month # | Show as |
NFData Month # | |
Defined in Data.Time.Calendar.Month | |
Eq Month # | |
Ord Month # | |
FormatTime Month # | |
Defined in Data.Time.Format.Format.Instances | |
ParseTime Month # | |
Defined in Data.Time.Format.Parse.Instances |
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 #