Documentation ¶
Overview ¶
Package duration copied as it is from github.com/senseyeio/duration
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Duration ¶
func ParseISO8601 ¶
ParseISO8601 parses an ISO8601 duration as well as some Rill-specific extensions. (Section 3.7 of the standard supposedly allows extensions that do not interfere with the standard.) Current extensions are, 1. "inf" for representing an unbounded duration of time 2. X-To-Date and Previous-X duration supports with a prefix of "rill-" to DAX notations. Pulled from https://www.daxpatterns.com/standard-time-related-calculations/
type InfDuration ¶ added in v0.37.0
type InfDuration struct{}
type StandardDuration ¶ added in v0.37.0
type StandardDuration struct { // Date component Year int Month int Week int Day int // Time Component Hour int Minute int Second int }
StandardDuration represents an ISO8601 duration with Rill-specific extensions. See ParseISO8601 for details.
type TruncToDateDuration ¶ added in v0.37.0
type TruncToDateDuration struct {
// contains filtered or unexported fields
}
Click to show internal directories.
Click to hide internal directories.