jorendorff/cell-gc

lisp: read-char, peek-char, and read-string

jorendorff opened this issue · 0 comments

These functions exist, but they don't work.

Funny story: because reading individual characters from a stream is inefficient and why would you want to do that, Rust doesn't really provide this capability. It seems possible to implement it on top of BufRead and maybe something like the utf8parse crate.