BSD-3-Clause licensed by Yann Esposito
Maintained by [email protected]
This version can be pinned in stack with:human-readable-duration-0.2.1.3@sha256:4cd6aef1c23a8e5af84c18a6ccb7bacbad3be4e5ca55e760bed3d01ac5dfcc38,1719

Module documentation for 0.2.1.3

  • Data
    • Data.Duration
      • Data.Duration.Tutorial
Depends on 1 package(full list with versions):

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