fmt: A new formatting library
A new formatting library that tries to be simple to understand while still being powerful and providing more convenience features than other libraries (like functions for pretty-printing maps and lists, or a function for printing arbitrary datatypes using generics).
A comparison with other libraries:
printf
(fromText.Printf
) takes a formatting string and uses some type tricks to accept the rest of the arguments polyvariadically. It's very concise, but there are some drawbacks – it can't produceText
(you'd have toT.pack
it every time) and it doesn't warn you at compile-time if you pass wrong arguments or not enough of them.text-format takes a formatting string with curly braces denoting places where arguments would be substituted (the arguments themselves are provided via a tuple). If you want to apply formatting to some of the arguments, you have to use one of the provided formatters. Like
printf
, it can fail at runtime, but at least the formatters are first-class (and you can add new ones).formatting takes a formatting template consisting of pieces of strings interleaved with formatters; this ensures that arguments always match their placeholders.
formatting
provides lots of formatters and generally seems to be the most popular formatting library here. Unfortunately, at least in my experience writing new formatters can be awkward and people sometimes have troubles understanding howformatting
works.fmt (i.e. this library) provides formatters that are ordinary functions, and a bunch of operators for concatenating formatted strings; those operators also do automatic conversion. There are some convenience formatters which aren't present in
formatting
(like ones for formatting maps, lists, converting to base64, etc). Some find the operator syntax annoying, while others like it.
Modules
[Index] [Quick Jump]
Downloads
- fmt-0.6.3.0.tar.gz [browse] (Cabal source package)
- Package description (as included in the package)
Maintainer's Corner
For package maintainers and hackage trustees
Candidates
- No Candidates
Versions [RSS] | 0.0.0.1, 0.0.0.2, 0.0.0.3, 0.0.0.4, 0.1.0.0, 0.2.0.0, 0.3.0.0, 0.4.0.0, 0.5.0.0, 0.6, 0.6.1, 0.6.1.1, 0.6.1.2, 0.6.2.0, 0.6.3.0 |
---|---|
Change log | CHANGELOG.md |
Dependencies | base (>=4.6 && <5), base64-bytestring, bytestring, call-stack, containers, formatting (>=7.0.0), microlens (>=0.3), semigroups (>=0.18 && <0.19), text, time, time-locale-compat [details] |
Tested with | ghc ==7.10.3, ghc ==8.0.2, ghc ==8.2.2, ghc ==8.4.4, ghc ==8.6.4, ghc ==8.6.5, ghc ==8.10.4 |
License | BSD-3-Clause |
Author | Artyom Kazak <yom@artyom.me>, Dmitry Kovanikov <kovanikov@gmail.com> |
Maintainer | Chris Dornan <chris@chrisdornan.com> |
Category | Text |
Home page | http://github.com/cdornan/fmt |
Bug tracker | http://github.com/cdornan/fmt/issues |
Source repo | head: git clone git://github.com/cdornan/fmt.git |
Uploaded | by ChrisDornan at 2021-09-06T08:07:16Z |
Distributions | Fedora:0.6.3.0, LTSHaskell:0.6.3.0, NixOS:0.6.3.0, Stackage:0.6.3.0 |
Reverse Dependencies | 31 direct, 14 indirect [details] |
Downloads | 18960 total (131 in the last 30 days) |
Rating | (no votes yet) [estimated by Bayesian average] |
Your Rating | |
Status | Docs available [build log] Last success reported on 2021-09-06 [all 1 reports] |