human-readable-duration: Provide duration helper

[ bsd3, library, time ] [ Propose Tags ]

This is a minimal Haskell library to display duration.

let duration = 2 * ms + 3 * oneSecond + 2 * minute + 33*day + 2*year
humanReadableDuration duration
-- will return: "2 years 33 days 2 min 3s 2ms"
getYears duration
-- will return 2
getDays duration
-- will return 763
getMs duration
-- will return 65923323002

[Skip to Readme]

Downloads

Maintainer's Corner

Package maintainers

For package maintainers and hackage trustees

Candidates

Versions [RSS] 0.1.0.0, 0.1.1.0, 0.2.0.0, 0.2.0.1, 0.2.0.2, 0.2.0.3, 0.2.1.0, 0.2.1.1, 0.2.1.2, 0.2.1.3, 0.2.1.4
Dependencies base (>=4.7 && <5) [details]
License BSD-3-Clause
Author Yann Esposito
Maintainer yann.esposito@gmail.com
Category Time
Home page https://gitlab.esy.fun/yogsototh/human-readable-duration#readme
Source repo head: git clone https://gitlab.esy.fun/yogsototh/human-readable-duration
Uploaded by yogsototh at 2019-06-25T15:58:20Z
Distributions LTSHaskell:0.2.1.4, NixOS:0.2.1.4, Stackage:0.2.1.4
Reverse Dependencies 1 direct, 0 indirect [details]
Downloads 6830 total (42 in the last 30 days)
Rating (no votes yet) [estimated by Bayesian average]
Your Rating
  • λ
  • λ
  • λ
Status Docs available [build log]
Last success reported on 2019-06-26 [all 1 reports]

Readme for human-readable-duration-0.2.1.4

[back to package description]

Build Status

Hackage human-readable-duration human-readable-duration

Issue Count

Human Readable Duration

This is a minimal Haskell library to display duration. It is mostly unsafe as it uses only Int and Strings (not even Text nor ByteString).

Usage

> import Data.Duration
> let duration = 2*ms + 3*oneSecond + 2*minute + 33*day + 2*year
> humanReadableDuration duration
"2 years 33 days 2 min 3s 2ms"
> getYears duration
2
> getDays duration
763
> getMs duration
65923323002

Install

Install stack.

stack build