Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/alexknauth/pretty-format
A racket library providing pretty versions of printf, format, etc.
https://github.com/alexknauth/pretty-format
Last synced: about 1 month ago
JSON representation
A racket library providing pretty versions of printf, format, etc.
- Host: GitHub
- URL: https://github.com/alexknauth/pretty-format
- Owner: AlexKnauth
- License: mit
- Created: 2017-11-26T04:53:23.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2022-01-06T05:23:14.000Z (almost 3 years ago)
- Last Synced: 2024-10-16T02:55:19.473Z (3 months ago)
- Language: Racket
- Size: 7.81 KB
- Stars: 3
- Watchers: 4
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# pretty-format
Pretty-printing with format strings
[_Documentation_](https://docs.racket-lang.org/pretty-format/index.html)
```racket
(require pretty-format)
```
This module provides the pretty-printing versions of functions that
format values based on a format string, like [`format`][format] or
[`printf`][printf].* [`pretty-fprintf`][pretty-fprintf] is like [`fprintf`][fprintf]
* [`pretty-printf`][pretty-printf] is like [`printf`][printf]
* [`pretty-eprintf`][pretty-eprintf] is like [`eprintf`][eprintf]
* [`pretty-format`][pretty-format] is like [`format`][format]
[pretty-fprintf]: https://docs.racket-lang.org/pretty-format/index.html#%28def._%28%28lib._pretty-format%2Fmain..rkt%29._pretty-fprintf%29%29
[pretty-printf]: https://docs.racket-lang.org/pretty-format/index.html#%28def._%28%28lib._pretty-format%2Fmain..rkt%29._pretty-printf%29%29
[pretty-eprintf]: https://docs.racket-lang.org/pretty-format/index.html#%28def._%28%28lib._pretty-format%2Fmain..rkt%29._pretty-eprintf%29%29
[pretty-format]: https://docs.racket-lang.org/pretty-format/index.html#%28def._%28%28lib._pretty-format%2Fmain..rkt%29._pretty-format%29%29
[fprintf]: https://docs.racket-lang.org/reference/Writing.html#%28def._%28%28quote._~23~25kernel%29._fprintf%29%29
[printf]: https://docs.racket-lang.org/reference/Writing.html#%28def._%28%28quote._~23~25kernel%29._printf%29%29
[eprintf]: https://docs.racket-lang.org/reference/Writing.html#%28def._%28%28quote._~23~25kernel%29._eprintf%29%29
[format]: https://docs.racket-lang.org/reference/Writing.html#%28def._%28%28quote._~23~25kernel%29._format%29%29