package
12.2.11
Repository: https://github.com/kataras/iris.git
Documentation: pkg.go.dev

# Functions

GetSimpleDateRange returns a slice of SimpleDate between "start" and "end" pf "date" based on given "typ" (WeekRange, MonthRange...).
ParseDayTime reads from "s" and returns the DayTime time.
ParseISO8601 reads from "s" and returns the ISO8601 time.
ParseKitchenTime reads from "s" and returns the KitchenTime time.
ParseSimpleDate reads from "s" and returns the SimpleDate time.
ParseTimeNotationDuration parses a string to a time notation duration (00:00:00) hours:minutes:seconds.
RegisterFixedLocation should be called on initialization of the program.
SimpleDateFromTime accepts a "t" Time and returns a SimpleDate.

# Constants

DayRange is the date range type of a day.
DayTimeLayout holds the time layout for the the format of "hour:minute:second", hour can be 15, meaning 3 PM.
ISO8601Layout holds the time layout for the the javascript iso time.
ISO8601LayoutWithTimezone same as ISO8601Layout but with the timezone suffix.
To match Go’s standard time layout that pads zeroes for microseconds, you can use the format 2006-01-02T15:04:05.000000Z07:00.
ISO8601ZUTCOffsetLayoutWithoutMicroseconds ISO 8601 format, with full time and zone with UTC offset without microsecond precision.
KitchenTimeLayout represents the "3:04 PM" Go time format, similar to time.Kitchen.
MonthRange is the date range type of a month.
SimpleDateLayout represents the "year-month-day" Go time format.
WeekRange is the date range type of a week.
YearRange is the date range type of a year.

# Variables

# Interfaces

Exampler is an interface used by testing to generate examples.

# Type aliases

DateRangeType is the type of the date range.
DayTime describes a time compatible with DayTimeLayout.
Duration is a JSON representation of the standard Duration type, until Go version 2 supports it under the hoods.
ISO8601 describes a time compatible with javascript time format.
KitchenTime holds a json "3:04 PM" time.
SimpleDate holds a json "year-month-day" time.
Slice of SimpleDate.
TimeNotationDuration is a JSON representation of the standard Duration type in 00:00:00 (hour, minute seconds).