formatting

Combinator-based type-safe formatting (like printf() or FORMAT)

Version on this page:6.3.0
LTS Haskell 22.14:7.2.0
Stackage Nightly 2024-03-28:7.2.0
Latest on Hackage:7.2.0

See all snapshots formatting appears in

BSD-3-Clause licensed by Chris Done, Shachaf Ben-Kiki, Martijn van Steenbergen, Mike Meyer, Bryan O'Sullivan
Maintained by [email protected]
This version can be pinned in stack with:formatting-6.3.0@sha256:08d78f737109a54ae1506d135e4b5e472f401064c952dba6efbe6a895f8ab7c4,1686

Combinator-based type-safe formatting (like printf() or FORMAT), modelled from the HoleyMonoids package.

Changes

6.3.0

6.2.5

  • Changed microseconds to display as “us” to avoid unicode issues.

6.2.1

  • Added bytesDecimal

6.2.0

  • Dropped Holey/HoleyT in favour of simpler Format type.
  • Added Monoid instance.
  • Added back Category instance.
  • Dropped Functor instance.

6.1.1

  • Add support for GHC 7.10 (time update).

6.1.0

  • Add formatter for TimeSpec.

6.0.0

  • Changed the type of Format. Now you write Format r (a -> r) instead of Format a.
  • Add formatToString function.