Time.Gmt

opaque type Gmt

Greenwich Mean Time

Time.Gmt is an opaque Long value same as Time, but not localized for printing

  val time = Time.current
  val gmt  = Time.Gmt.current

  time.dayTime.tagBrief.tp // Prints: 13:34

  gmt.dayTime.tagBrief.tp  // Prints: 17:34

  // Nevertheless they are data equal

  (time.real == gmt.real).tp       // Prints: true
Source
Gmt.scala

Def

@targetName("plus")
inline def +(l: Time.Length): Time.Gmt
Source
Gmt.scala
@targetName("minus")
inline def -(l: Time.Length): Time.Gmt
Source
Gmt.scala
@targetName("Opt")
inline def ?: Long.G.Opt[Time.Gmt]

To option

To option

Returns Long specialized option

Inherited from
_methods
Source
Base.scala
override def day: Day

Day.

Day.

Day, which includes this time instance.

Definition Classes
Source
Gmt.scala
override def dayTime: DayTime

DayTime component.

DayTime component.

DayTime component of this time instance.

Definition Classes
Source
Gmt.scala
inline def genTime: Time
Source
Gmt.scala
inline def hours: Long

Hours remainder

Hours remainder

Hours remainder when rounded by whole day (24 hours)

Value range is from 0 to 23

Inherited from
Base
Source
Millis.scala
def isDayStart: Boolean
Inherited from
Base
Source
Base.scala
def isFuture: Boolean

Check if in future.

Check if in future.

Returns true if this time is greater than current.

Inherited from
Base
Source
Base.scala
def isMonthStart: Boolean
Inherited from
Base
Source
Base.scala
def isPast: Boolean

Check if in past.

Check if in past.

Returns true if this time is less or equal to current.

Inherited from
Base
Source
Base.scala
def isYearStart: Boolean
Inherited from
Base
Source
Base.scala
inline def micros: Long

Microseconds remainder

Microseconds remainder

Microseconds remainder when rounded by whole millisecond

Value range is from 0 to 999

Inherited from
Base
Source
Millis.scala
inline def millis: Long

Milliseconds remainder

Milliseconds remainder

Milliseconds remainder when rounded by whole second

Value range is from 0 to 999

Inherited from
Base
Source
Millis.scala
inline def minutes: Long

Minutes remainder

Minutes remainder

Minutes remainder when rounded by whole hour

Value range is from 0 to 59

Inherited from
Base
Source
Millis.scala
def month: Month

Month.

Month.

Month, which includes this time instance.

Inherited from
Base
Source
Base.scala
inline def nanos: Long

Nanoseconds remainder

Nanoseconds remainder

Nanoseconds remainder when rounded by whole microsecond

Value range is from 0 to 999

Inherited from
Base
Source
Millis.scala
inline def real: Long

Real value

Real value

Returns Long value standing behind the opaque type.

This is a zero cost call.

Inherited from
_methods
Source
Base.scala
inline def roundTo(l: Time.Length)(using r: Math.Rounding): Time.Gmt
Inherited from
Base
Source
Millis.scala
inline def seconds: Long

Seconds remainder

Seconds remainder

Seconds remainder when rounded by whole minute

Value range is from 0 to 59

Inherited from
Base
Source
Millis.scala
def tagBrief: String

Short String.

Short String.

Time is rounded to 1.Second.

For current Day, day portion is ommited.

Inherited from
Base
Source
Base.scala
def week: Week
Inherited from
Base
Source
Base.scala
def year: Year

Year.

Year.

Year, which includes this time instance.

Inherited from
Base
Source
Base.scala