text-format icon indicating copy to clipboard operation
text-format copied to clipboard

A Haskell text formatting library optimized for ease of use and high performance.

Results 16 text-format issues
Sort by recently updated
recently updated
newest added

It seems odd that this class is not part of `text` since there's nothing about it specific to text formatting

The first function I wrote to use text-format was this: ``` -- | A wrapper around `format` that returns a strict Text sformat :: Params ps => Format -> ps...

The documentation for prec says: "Render a floating point number, with the given number of digits of precision. Uses decimal notation for values between 0.1 and 9,999,999, and scientific notation...

I'm little confused about formatting a `Text` type. I'm trying to do this: ``` haskell import Data.Text.Format import Data.Text.Encoding format "{} {}" (decodeUtf8 someByteString, otherParams) ``` and this happens: ```...