Ecosyste.ms: Packages

An open API service providing package, version and dependency metadata of many open source software ecosystems and registries.

Top 9.7% on proxy.golang.org
Top 5.8% dependent packages on proxy.golang.org
Top 3.5% dependent repos on proxy.golang.org

proxy.golang.org : toolman.org/time/timespan/v2

Package timespan provides a broad-scaled extension to time.Duration. This package provides two types: Most of the functionality provided here is available using functions from the standard "time" package and is provided here merely as a convenience. However, this package's raison d'être is the function ParseTimespan, which provides the ability to specify a wide variety of broad-scaled time periods -- from nanoseconds to many years -- as a simple, string value similar to that parseable by time.ParseDuration. For example, a time span of "1 year, 6 months" is specified as "1Y6M" or, its virtual equivalent, "18 months" as a simple "18M". Timespan strings can be as simple as "3W" for "3 weeks" or something crazy like "1Y2M3W4D5h6m7s89ms" which is (hopefully) quite self explanatory. Unlike the standard time.Duration, which only provides accuracy and parseability at resolutions less than a day, a Timespan may cover many days, weeks, months or even years. It also encapsulates a time.Duration value to allow for resolutions as small a nanosecond. The ambiguities around the length of a day or month (or even year) that restrict the broader scope of time.Duration are not a problem with Timespan since it stores each, distinctly varying magnitude separately. That said, a Timespan by itself is inherently ambiguous and only acquires precision when considered in the context of a specific point in time. Because of this, two separate Timespan values may be functionally equivalent from the perspective of one point in time but not from another. As an example, consider the Timespan values of "2 days" and "48 hours". In most cases, these two are functionally equivalent; 48 hours is always 48 hours yet 2 days is sometimes not 48 hours. In the approach to a daylight savings time cutover, the "2 days" value would be either 47 or 49 hours (depending on whether we're "springing forward" or "falling back"). In most cases however, these ambiguities are understood at the human level and Timespan will behave as the user intends without much further thought. A Timespan string is the conjunction of one or more periods (as coefficient+magnitude pairs) plus an optional time.Duration string. Parsing is governed by the following rules: 1. Each period is a coefficient magnitude pair where the coefficient is a signed integer value and its magnitude is one of the following single-character indicators: 2. Each successive period must be specified in a decreasing magnitude order. In other words, years must be specified before months and months before weeks, etc... Periods specified out of order will cause an error. 3. The magnitude of each period must be distinct; any restated magnitude (e.g. "3W-1W"), causes a parsing error. 4. The positive or negative sense of each coefficient may be implied or expressly stated. By default, values are assumed positive until one is explicitly declared to be negative. Subsequent (implicitly signed) values are assumed to be negative until an explicit positive coefficient is encountered. 5. Zero value magnitudes may be omitted. 6. Each specified magnitude must be accompanied by a coefficient. 7. No whitespace is allowed anywhere in the string. 8. If supplied, the optional time.Duration string must be at the end of the string and must (of course) be parseable by time.ParseDuration. The natural tendency while parsing a Timespan string is to assume a negative sign commutes across successive values until it is reversed. In other words, the stated positive or negative sign is always "sticky" for later values. For example, "-1Y2M" is parsed to {Years: -1, Months: -2}. If your intent is instead for "Years" to be negative and "Months" to be positive (e.g. {Years: -1, Months: +2}), you must explicitly change the sign back to positive with "-1Y+2M". Since a week is always 7 days, the available "W" magnitude is provided merely as a convenience; it is not stored as part of the Timespan value. Coefficients provided in weeks are stored as multiples of 7 days. If ParseTimespan is unable to parse the given string, it returns nil and an appropriate error. Finally, for those so inclined, the formal grammar for a Timespan string is shown in the following Pseudo-BNF:

Registry - Source - Documentation - JSON
purl: pkg:golang/toolman.org/time/timespan/v2
Keywords: duration, go, golang, golang-library, time, timespan
License: Apache-2.0
Latest release: over 4 years ago
First release: over 1 year ago
Namespace: toolman.org/time/timespan
Dependent packages: 1
Dependent repositories: 2
Stars: 2 on GitHub
Forks: 1 on GitHub
See more repository details: repos.ecosyste.ms
Last synced: 7 days ago

    Loading...
    Readme
    Loading...