Day

opaque type Day

Calendar Date

Day is an opaque Int value, holding day index since start of 1970

 // Find all Fridays the 13th for this century
 (2000 <>> 2100).stream.map(_.Year).flatMap(_.days)
    .take(d => d.number == 13 && d.weekDay.isFri)
    .peek(_.tp)
    .count.self("Total Count: " + _ tp())

 // Output
 2001-04-13
 2001-07-13
 . . . . .
 2099-11-13
 Total Count: 172
Source
Day.scala

Def

@targetName("and")
inline def &(l: Time.Length): Time
Source
Day.scala
@targetName("plus")
inline def +(i: Int): Day

Get further in sequance

Get further in sequance

Returns value, which is given number of position further in sequence

Inherited from
_methods
Source
Sequential.scala
@targetName("minus")
inline def -(i: Int): Day

Get before in sequance

Get before in sequance

Returns value, which is given number of position before in sequence

Inherited from
_methods
Source
Sequential.scala
@targetName("less")
inline def <(v: Day): Boolean

Less

Less

Returns true if current value is less than given, false - otherwise

Inherited from
_methods
Source
Ordered.scala
@targetName("lessOrEqual")
inline def <=(v: Day): Boolean

Less or equal

Less or equal

Returns true if current value is less or equal to given, false - otherwise

Inherited from
_methods
Source
Ordered.scala
@targetName("range")
inline def <>(to: Int.G.Range[Day]

Range

Range

Returns Range from current to given value

Note. Range uses base primitive natural ordering

Inherited from
z_MethodsBase
Source
Ordered.scala
@targetName("rangeOfSize")
inline def <>=(sz: Int): Int.G.Range[Day]

Range by size

Range by size

Returns Range from current value to current plus given size exclusive

Note. Range uses base primitive natural ordering

Inherited from
z_MethodsBase
Source
Ordered.scala
@targetName("rangeX")
inline def <>>(to: Int.G.Range[Day]

Exclusive end range

Exclusive end range

Returns Range from current to given value exclusive

Note. Range uses base primitive natural ordering

Inherited from
z_MethodsBase
Source
Ordered.scala
@targetName("greater")
inline def >(v: Day): Boolean

Greater

Greater

Returns true if current value is greater than given, false - otherwise

Inherited from
_methods
Source
Ordered.scala
@targetName("greaterOrEqual")
inline def >=(v: Day): Boolean

Greater or equal

Greater or equal

Returns true if current value is greater or equal to given, false - otherwise

Inherited from
_methods
Source
Ordered.scala
@targetName("Opt")
inline def ?: Int.G.Opt[Day]

To option

To option

Returns Int specialized option

Inherited from
_methods
Source
Base.scala
inline def index: Int

Set sequential index.

Set sequential index.

Day 1970-01-01 has index 0

 Day(1900, 1, 31).index.tp // Prints: -25537
 Day(1970, 1, 31).index.tp // Prints: 30
 Day(2018, 1, 31).index.tp // Prints: 17562
Source
Day.scala
def isCurrent: Boolean

Checks if today.

Checks if today.

Returns true if this day is today.

   Day().isCurrent.tp // Prints: true
Source
Day.scala
inline def max(v:

Max value

Max value

Returns maximum of current or given value

Inherited from
z_MethodsBase
Source
Ordered.scala
inline def min(v:

Min value

Min value

Returns minimun of current or given value

Inherited from
z_MethodsBase
Source
Ordered.scala
def month: Month

Day's month.

Day's month.

Returns Month which contains this Day.

Source
Day.scala
inline def next: Day

Next in sequance

Next in sequance

Returns next value in sequance

Inherited from
_methods
Source
Sequential.scala
def number: Int

Day number within the month.

Day number within the month.

Number is from 1 and up to 31

Source
Day.scala
inline def period: Period

Day period

Day period

Returns Period from the first moment of the day and the first moment of the next day exclusive.

  Day(2018, 1, 1).period.tp // prints: 2018-01-01 0:00:00 to 2018-01-02 0:00:00
Source
Day.scala
inline def prior: Day

Prior in sequance

Prior in sequance

Returns prior value in sequance

Inherited from
_methods
Source
Sequential.scala
inline def real: Int

Real value

Real value

Returns Int value standing behind the opaque type.

This is a zero cost call.

Inherited from
_methods
Source
Base.scala
def start: Time

Day start time.

Day start time.

Returns Time for the first moment of the day.

   Day(2018, 1, 1).start.tp // prints: Time{day=2018-01-01,time=0:00}
Source
Day.scala
def week: Week
Source
Day.scala

Sunday to Saturday enumereration value.

Sunday to Saturday enumereration value.

Returns WeekDay value corresponding to this day.

   // Calculate number of each WeakDay in the year 2000
   2000.Year.days.stream.map(_.weekDay)
       .countFew(_.isSun, _.isMon, _.isTue, _.isWed, _.isThu, _.isFri, _.isSat).stream.tp
   // Output
   Stream(53, 52, 52, 52, 52, 52, 53)
Source
Day.scala
def year: Year

Day's year.

Day's year.

Returns Year which contains this Day.

Source
Day.scala