Timex.AmbiguousTimezoneInfo (timex v3.7.13)

View Source

Represents a choice of two possible timezone periods for a given point in time.

Summary

Types

t()

@type t() :: %Timex.AmbiguousTimezoneInfo{
  after: Timex.TimezoneInfo.t(),
  before: Timex.TimezoneInfo.t()
}

Functions

new(before_tz, after_tz)

@spec new(before_tz :: Timex.TimezoneInfo.t(), after_tz :: Timex.TimezoneInfo.t()) ::
  t()