| Crates.io | pretty-print |
| lib.rs | pretty-print |
| version | 0.1.9 |
| created_at | 2023-06-01 06:47:47.398107+00 |
| updated_at | 2023-06-15 13:54:25.379517+00 |
| description | pretty print tree |
| homepage | |
| repository | https://github.com/oovm/pretty-print |
| max_upload_size | |
| id | 879501 |
| size | 69,014 |
This crate defines a Wadler-style pretty-printing API.
Start with the static functions of Doc.
Let's pretty-print simple sexps! We want to pretty print sexps like
(1 2 3)
or, if the line would be too long, like
((1)
(2 3)
(4 5 6))
A simple symbolic expression consists of a numeric atom or a nested ordered list of symbolic expression children.