Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | io: add BuferedWriter | bptato | 2024-03-16 | 1 | -0/+3 |
| | | | | | | | | | | Unsurprisingly enough, calling `write` a million times is never going to be very fast. BufferedWriter basically does the same thing as serialize.swrite did, but queues up writes in batches before sending them. TODO: give sread a similar treatment | ||||
* | io: add dynstream | bptato | 2024-03-12 | 1 | -0/+82 |
a new abstraction that we derive posixstream from; hopefully with time we can get rid of std/streams |