time-compat-1.9.6: Compatibility package for time
Safe HaskellTrustworthy
LanguageHaskell2010

Data.Time.Calendar.Month.Compat

Synopsis

Documentation

newtype Month Source #

An absolute count of common calendar months. Number is equal to (year * 12) + (monthOfYear - 1).

Constructors

MkMonth Integer 

Instances

Instances details
Enum Month Source # 
Instance details

Defined in Data.Time.Calendar.Month.Compat

Eq Month Source # 
Instance details

Defined in Data.Time.Calendar.Month.Compat

Methods

(==) :: Month -> Month -> Bool #

(/=) :: Month -> Month -> Bool #

Data Month Source # 
Instance details

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 #

toConstr :: Month -> Constr #

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 # 
Instance details

Defined in Data.Time.Calendar.Month.Compat

Methods

compare :: Month -> Month -> Ordering #

(<) :: Month -> Month -> Bool #

(<=) :: Month -> Month -> Bool #

(>) :: Month -> Month -> Bool #

(>=) :: Month -> Month -> Bool #

max :: Month -> Month -> Month #

min :: Month -> Month -> Month #

Read Month Source #

Read as yyyy-mm.

Instance details

Defined in Data.Time.Calendar.Month.Compat

Show Month Source #

Show as yyyy-mm.

Instance details

Defined in Data.Time.Calendar.Month.Compat

Methods

showsPrec :: Int -> Month -> ShowS #

show :: Month -> String #

showList :: [Month] -> ShowS #

Ix Month Source # 
Instance details

Defined in Data.Time.Calendar.Month.Compat

NFData Month Source # 
Instance details

Defined in Data.Time.Calendar.Month.Compat

Methods

rnf :: Month -> () #

Hashable Month Source # 
Instance details

Defined in Data.Time.Calendar.Month.Compat

Methods

hashWithSalt :: Int -> Month -> Int #

hash :: Month -> Int #

FormatTime Month Source # 
Instance details

Defined in Data.Time.Calendar.Month.Compat

Methods

formatCharacter :: Bool -> Char -> Maybe (FormatOptions -> Month -> String) #

pattern YearMonth :: Year -> MonthOfYear -> Month Source #

Bidirectional abstract constructor. Invalid months of year will be clipped to the correct range.

pattern MonthDay :: Month -> DayOfMonth -> Day Source #

Bidirectional abstract constructor. Invalid days of month will be clipped to the correct range.

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