W3cubDocs

/Haskell 9

Data.Time.Calendar.OrdinalDate

Safe Haskell Safe
Language Haskell2010

Description

ISO 8601 Ordinal Date format

data Day Source

The Modified Julian Day is a standard count of days, with zero being the day 1858-11-17.

Instances
Instances details
NFData Day Source
Instance details

Defined in Data.Time.Calendar.Days

Methods

rnf :: Day -> () Source

Data Day Source
Instance details

Defined in Data.Time.Calendar.Days

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> Day -> c Day

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c Day

toConstr :: Day -> Constr

dataTypeOf :: Day -> DataType

dataCast1 :: Typeable t => (forall d. Data d => c (t d)) -> Maybe (c Day)

dataCast2 :: Typeable t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c Day)

gmapT :: (forall b. Data b => b -> b) -> Day -> Day

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> Day -> r

gmapQr :: forall r r'. (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> Day -> r

gmapQ :: (forall d. Data d => d -> u) -> Day -> [u]

gmapQi :: Int -> (forall d. Data d => d -> u) -> Day -> u

gmapM :: Monad m => (forall d. Data d => d -> m d) -> Day -> m Day

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> Day -> m Day

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> Day -> m Day

Enum Day Source
Instance details

Defined in Data.Time.Calendar.Days

Methods

succ :: Day -> Day

pred :: Day -> Day

toEnum :: Int -> Day

fromEnum :: Day -> Int

enumFrom :: Day -> [Day]

enumFromThen :: Day -> Day -> [Day]

enumFromTo :: Day -> Day -> [Day]

enumFromThenTo :: Day -> Day -> Day -> [Day]

Generic Day Source
Instance details

Defined in Data.Time.Calendar.Days

Associated Types

type Rep Day
Instance details

Defined in Data.Time.Calendar.Days

type Rep Day = D1 ('MetaData "Day" "Data.Time.Calendar.Days" "time-1.14-40b8" 'True) (C1 ('MetaCons "ModifiedJulianDay" 'PrefixI 'True) (S1 ('MetaSel ('Just "toModifiedJulianDay") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedLazy) (Rec0 Integer)))

Methods

from :: Day -> Rep Day x

to :: Rep Day x -> Day

Ix Day Source
Instance details

Defined in Data.Time.Calendar.Days

Methods

range :: (Day, Day) -> [Day]

index :: (Day, Day) -> Day -> Int

unsafeIndex :: (Day, Day) -> Day -> Int

inRange :: (Day, Day) -> Day -> Bool

rangeSize :: (Day, Day) -> Int

unsafeRangeSize :: (Day, Day) -> Int

Read Day Source
Instance details

Defined in Data.Time.Format.Parse

Show Day Source
Instance details

Defined in Data.Time.Calendar.Gregorian

Methods

showsPrec :: Int -> Day -> ShowS

show :: Day -> String

showList :: [Day] -> ShowS

Eq Day Source
Instance details

Defined in Data.Time.Calendar.Days

Methods

(==) :: Day -> Day -> Bool

(/=) :: Day -> Day -> Bool

Ord Day Source
Instance details

Defined in Data.Time.Calendar.Days

Methods

compare :: Day -> Day -> Ordering

(<) :: Day -> Day -> Bool

(<=) :: Day -> Day -> Bool

(>) :: Day -> Day -> Bool

(>=) :: Day -> Day -> Bool

max :: Day -> Day -> Day

min :: Day -> Day -> Day

DayPeriod Day Source
Instance details

Defined in Data.Time.Calendar.Days

FormatTime Day Source
Instance details

Defined in Data.Time.Format.Format.Instances

ISO8601 Day Source

yyyy-mm-dd [ISO 8601:2004(E) sec. 4.1.2.2 extended format]

Instance details

Defined in Data.Time.Format.ISO8601

ParseTime Day Source
Instance details

Defined in Data.Time.Format.Parse.Instances

Lift Day Source
Instance details

Defined in Data.Time.Calendar.Days

Methods

lift :: Quote m => Day -> m Exp

liftTyped :: forall (m :: Type -> Type). Quote m => Day -> Code m Day

type Rep Day Source
Instance details

Defined in Data.Time.Calendar.Days

type Rep Day = D1 ('MetaData "Day" "Data.Time.Calendar.Days" "time-1.14-40b8" 'True) (C1 ('MetaCons "ModifiedJulianDay" 'PrefixI 'True) (S1 ('MetaSel ('Just "toModifiedJulianDay") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedLazy) (Rec0 Integer)))

type Year = Integer Source

Year of Common Era (when positive).

type DayOfYear = Int Source

Day of year, in range 1 (January 1st) to 366. December 31st is 365 in a common year, 366 in a leap year.

type WeekOfYear = Int Source

Week of year, by various reckonings, generally in range 0-53 depending on reckoning.

pattern YearDay :: Year -> DayOfYear -> Day Source

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 Source

Arguments

:: Year

Year.

-> WeekOfYear

Monday-starting week number (as %W in formatTime).

-> Int

Day of week. Monday is 1, Sunday is 7 (as %u in formatTime).

-> Day

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 Source

Arguments

:: Year

Year.

-> WeekOfYear

Monday-starting week number (as %W in formatTime).

-> Int

Day of week. Monday is 1, Sunday is 7 (as %u in formatTime).

-> Maybe Day

fromOrdinalDate :: Year -> DayOfYear -> Day Source

Convert from ISO 8601 Ordinal Date format. Invalid day numbers will be clipped to the correct range (1 to 365 or 366).

fromOrdinalDateValid :: Year -> DayOfYear -> Maybe Day Source

Convert from ISO 8601 Ordinal Date format. Invalid day numbers return Nothing

fromSundayStartWeek Source

Arguments

:: Year

Year.

-> WeekOfYear

Sunday-starting week number (as %U in formatTime).

-> Int

Day of week Sunday is 0, Saturday is 6 (as %w in formatTime).

-> Day

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 Source

Arguments

:: Year

Year.

-> WeekOfYear

Sunday-starting week number (as %U in formatTime).

-> Int

Day of week. Sunday is 0, Saturday is 6 (as %w in formatTime).

-> Maybe Day

isLeapYear :: Year -> Bool Source

Is this year a leap year according to the proleptic Gregorian calendar?

mondayStartWeek :: Day -> (WeekOfYear, Int) Source

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).

showOrdinalDate :: Day -> String Source

Show in ISO 8601 Ordinal Date format (yyyy-ddd)

sundayStartWeek :: Day -> (WeekOfYear, Int) Source

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).

toOrdinalDate :: Day -> (Year, DayOfYear) Source

Convert to ISO 8601 Ordinal Date format.

© The University of Glasgow and others
Licensed under a BSD-style license (see top of the page).
https://downloads.haskell.org/~ghc/9.12.1/docs/libraries/time-1.14-40b8/Data-Time-Calendar-OrdinalDate.html