Text-tree output.
This package provides a simple interface to output tree-structured data. The single function write-text-tree writes the provided racket data structures out to a port.
procedure
(write-text-tree value [out]) β void?
value : tree-input/c out : output-port? = (current-output-port)
> (require racket/port)
> (displayln (with-output-to-string (Ξ» () (write-text-tree (make-hash `((collection . "text-tree") (deps base) (build-deps scribble-lib racket-doc rackunit-lib) (scribblings "scribblings/text-tree.scrbl") (test-omit-paths "scribblings") (pkg-desc . "Function to output tree-structured data.") (version . 1.0) (pkg-authors johnstonskj) (license . Apache-2.0)))))))
βββ build-deps
β βββ scribble-lib
β βββ racket-doc
β βββ rackunit-lib
βββ collection
β βββ text-tree
βββ deps
β βββ base
βββ license
β βββ Apache-2.0
βββ pkg-authors
β βββ johnstonskj
βββ pkg-desc
β βββ Function to output tree-structured data.
βββ scribblings
β βββ scribblings/text-tree.scrbl
βββ test-omit-paths
β βββ scribblings
βββ version
βββ 1.0
procedure
(text-tree->string value) β string?
value : tree-input/c
predicate
(dotted-pair? val) β boolean?
val : any/c
predicate
(simple-dictionary? val) β boolean?
val : any/c
predicate
(simple-sequence? val) β boolean?
val : any/c
value
atom? β Individual value.
simple-sequence? β Where every member is a tree-input/c.
simple-sequence? β Where every key is a atom? and every value is a tree-input/c.
1 Parameters
parameter
β (list/c char? char? char? char? char?) (tree-representation-line-chars line-chars) β void? line-chars : (list/c char? char? char? char? char?)
Horizontal bar character, default #\β.
Vertical bar character, default #\β.
Bottom-left corner character, default #\β.
Right-facing tee character, default #\β.
Spacing character, default #\space.
> (require racket/port)
> (parameterize ((tree-representation-line-chars ascii-line-chars)) (displayln (with-output-to-string (Ξ» () (write-text-tree (make-hash '((collection . "text-tree") (deps "base") (build-deps "scribble-lib" "racket-doc" "rackunit-lib") (license . Apache-2.0))))))))
+-- build-deps
| +-- scribble-lib
| +-- racket-doc
| '-- rackunit-lib
+-- collection
| '-- text-tree
+-- deps
| '-- base
'-- license
'-- Apache-2.0
> (require racket/port)
> (parameterize ((tree-representation-line-chars unicode-line-chars)) (displayln (with-output-to-string (Ξ» () (write-text-tree (make-hash '((collection . "text-tree") (deps "base") (build-deps "scribble-lib" "racket-doc" "rackunit-lib") (license . Apache-2.0))))))))
βββ build-deps
β βββ scribble-lib
β βββ racket-doc
β βββ rackunit-lib
βββ collection
β βββ text-tree
βββ deps
β βββ base
βββ license
βββ Apache-2.0
parameter
β
(or/c string? (-> (or/c simple-dictionary? simple-sequence?) string?)) (unnamed-sequence-string unnamed) β void?
unnamed :
(or/c string? (-> (or/c simple-dictionary? simple-sequence?) string?))
= "<empty>"
> (displayln (text-tree->string (list (list "date" "May 2024"))))
βββ <empty>
βββ date
βββ May 2024
> (parameterize ((unnamed-sequence-string "nil")) (displayln (text-tree->string (list (list "date" "May 2024")))))
βββ nil
βββ date
βββ May 2024
> (define (name-for-unnamed val) (cond ((list? val) "empty?") ((hash? val) "hash-empty?")))
> (parameterize ((unnamed-sequence-string name-for-unnamed)) (displayln (text-tree->string (list (list "date" "May 2024")))))
βββ empty?
βββ date
βββ May 2024