- Added support for plotting via quadrants, sextants, and octants. Octants requires Unicode 16 font support and is in 2024 not yet widely available. Things will work but the result will look bad. (#8)
- Added support for multidimensional arrays (#7)
- Directly write to
stdout
usinguprint(A)
or to any IO usinguprint(io, A)
(#5) - Added support for filtering functions to
uprint
andustring
.uprint(f, A)
shows values ofA
for whichf
returnstrue
(#5) - Deprecated
brailize(A)
, useustring(A)
orustring(A, :braille)
instead (#5) - Deprecated
blockize(A)
, useustring(A, :block)
instead (#5)