| Copyright | Soostone Inc |
|---|---|
| License | BSD3 |
| Maintainer | libs@soostone.com |
| Stability | experimental |
| Safe Haskell | None |
| Language | Haskell2010 |
Formattable
Description
Practical formatting interface for output values intended for human consumption. We try to support several variants often required by real-world applications.
Documentation
Provides a uniform interface for formatting all kinds of types.
Instances
| Format Bool | TheFormat = () |
| Format Double | TheFormat = NumFormat |
| Format Float | TheFormat = NumFormat |
| Format Int | TheFormat = NumFormat |
| Format Int8 | TheFormat = NumFormat |
| Format Int16 | TheFormat = NumFormat |
| Format Int32 | TheFormat = NumFormat |
| Format Int64 | TheFormat = NumFormat |
| Format Integer | TheFormat = NumFormat |
| Format Word | TheFormat = NumFormat |
| Format Word8 | TheFormat = NumFormat |
| Format Word16 | TheFormat = NumFormat |
| Format Word32 | TheFormat = NumFormat |
| Format Word64 | TheFormat = NumFormat |
| Format Text | TheFormat = () |
| Format UTCTime | TheFormat = String |
| Format Day | TheFormat = String |
module Formattable.NumFormat