diff options
-rw-r--r-- | subx/Readme.md | 18 |
1 files changed, 13 insertions, 5 deletions
diff --git a/subx/Readme.md b/subx/Readme.md index cb00eae0..57efa780 100644 --- a/subx/Readme.md +++ b/subx/Readme.md @@ -627,18 +627,26 @@ allocated memory for it.)_ #### writing to disk * `write`: string -> file - Can also be used to cat a string into a stream. - - Will abort the entire program if there isn't enough room. + - Will abort the entire program if destination is a stream and doesn't have + enough room. * `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. + - Will abort the entire program if destination is a stream and doesn't have + enough room. +* `write-slice`: slice -> stream + - Will abort the entire program if there isn't enough room in the + destination stream. * `append-byte`: int -> stream - - Will abort the entire program if there isn't enough room. + - Will abort the entire program if there isn't enough room in the + destination stream. * `append-byte-hex`: int -> stream - textual representation in hex, no '0x' prefix - - Will abort the entire program if there isn't enough room. + - Will abort the entire program if there isn't enough room in the + destination stream. * `print-int32`: int -> stream - textual representation in hex, including '0x' prefix - - Will abort the entire program if there isn't enough room. + - Will abort the entire program if there isn't enough room in the + destination stream. * `write-buffered`: string -> buffered-file * `write-slice-buffered`: slice -> buffered-file * `flush`: buffered-file |