about summary refs log tree commit diff stats
path: root/subx/Readme.md
diff options
context:
space:
mode:
Diffstat (limited to 'subx/Readme.md')
-rw-r--r--subx/Readme.md14
1 files changed, 10 insertions, 4 deletions
diff --git a/subx/Readme.md b/subx/Readme.md
index e8e4ad6d..517515d8 100644
--- a/subx/Readme.md
+++ b/subx/Readme.md
@@ -626,17 +626,23 @@ allocated memory for it.)_
 * `write-stream`: stream -> file
   - Can also be used to cat one stream into another.
   - Will abort the entire program if there isn't enough room.
+* `append-byte`: int -> stream
+  - Will abort the entire program if there isn't enough room.
+* `append-byte-hex`: int -> stream
+  - Will abort the entire program if there isn't enough room.
 * `write-buffered`: string -> buffered-file
-* `write-slice`: slice -> buffered-file
+* `write-slice-buffered`: slice -> buffered-file
 * `flush`: buffered-file
-* `print-byte`:  buffered-file, int
+* `write-byte-buffered`: int -> buffered-file
+* `print-byte-buffered`: int -> buffered-file
+  - textual representation in hex
 
 #### reading from disk
 * `read`: file -> stream
   - Can also be used to cat one stream into another.
   - Will silently stop reading when destination runs out of space.
-* `read-byte`: buffered-file -> byte
-* `read-line`: buffered-file -> stream
+* `read-byte-buffered`: buffered-file -> byte
+* `read-line-buffered`: buffered-file -> stream
   - Will abort the entire program if there isn't enough room.
 
 #### non-IO operations on streams