Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/pfitzseb/REPLTreeViews.jl
https://github.com/pfitzseb/REPLTreeViews.jl
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/pfitzseb/REPLTreeViews.jl
- Owner: pfitzseb
- License: mit
- Created: 2018-07-20T08:31:50.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2020-06-08T12:01:52.000Z (over 4 years ago)
- Last Synced: 2024-04-26T03:02:55.956Z (7 months ago)
- Language: Julia
- Size: 8.79 KB
- Stars: 28
- Watchers: 4
- Forks: 3
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-julia - No description
README
# REPLTreeViews.jl
This package provides an experimental macro to interactively show complex data structures in the REPL.
Use `@ishow` to show the argument:
```
julia> @ishow Dict(:a => rand(10), :b => Dict(:c => 3))
Dict{Symbol,Any}
▼ a
▼ Array{Float64,1}
0.6010674310215398
0.1621627174514002
0.9886458128892404
0.3731520463002518
0.7318310542335174
0.4109065883177705
0.09802040153654223
0.25096526653794693
0.6469920970392866
0.9278104891830838
[▼] b
▶ Dict{Symbol,Int64}
```You can navigate with the cursor keys, expand/collapse items with Enter, and quit the interactive display with `q`.