https://github.com/mateuszkubuszok/dbg-schema
https://github.com/mateuszkubuszok/dbg-schema
debugging pretty-print scala
Last synced: 5 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/mateuszkubuszok/dbg-schema
- Owner: MateuszKubuszok
- License: apache-2.0
- Created: 2024-02-13T17:19:34.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2024-06-18T08:37:09.000Z (12 months ago)
- Last Synced: 2025-03-15T03:16:36.422Z (3 months ago)
- Topics: debugging, pretty-print, scala
- Language: Scala
- Homepage:
- Size: 24.4 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Debug Schema
> WIP, so not much docs, examples, anything really
Generate schema for your data types and traverse them:
* `Schema` contains only anformation about the shape of your data
* it can be used to traverse the whole data tree
* this way you might need to derive only 1 type class in compile time and
provide use cases for it later onExample:
* [pretty print example](dbg/visitors/ShowSchema.test.scala)