sharkdp / purescript-format

Type-safe, printf-style formatting for PureScript

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

purescript-format

Type-safe, printf-style formatting for PureScript.

Usage

> format (width 6) 123
"   123"

> format (signed <> width 6) 123
"  +123"

> format (zeroFill <> width 6) (-123)
"-00123"

> format (width 8 <> precision 3) pi
"   3.142"

> format (width 8 <> precision 3) 10.0
"  10.000"

> format (width 8) "foo"
"     foo"

About

Type-safe, printf-style formatting for PureScript

License:MIT License


Languages

Language:PureScript 95.2%Language:Dhall 4.8%