diff --git a/core/bufio/index.html b/core/bufio/index.html index 6eab400b78..5a858981e1 100644 --- a/core/bufio/index.html +++ b/core/bufio/index.html @@ -1036,7 +1036,7 @@

  -

writer_write writes a string into the buffer +

writer_write_string writes a string into the buffer It returns the number of bytes written If n < len(p), it will return an error explaining why the write is short

@@ -1053,7 +1053,7 @@

Source Files

  • writer.odin
  • Generation Information

    -

    Generated with odin version dev-2023-08 (vendor "odin") Windows_amd64 @ 2023-08-04 21:08:17.722625000 +0000 UTC

    +

    Generated with odin version dev-2023-09 (vendor "odin") Windows_amd64 @ 2023-09-02 21:07:07.954228400 +0000 UTC

    -

    buffer_unread_byte ¶

    +

    buffer_unread_byte ¶

    buffer_unread_byte :: proc(b: ^Buffer) -> io.Error {…}
    -

    buffer_unread_rune ¶

    +

    buffer_unread_rune ¶

    buffer_unread_rune :: proc(b: ^Buffer) -> io.Error {…}
    -

    buffer_write ¶

    +

    buffer_write ¶

    buffer_write :: proc(b: ^Buffer, p: []u8) -> (n: int, err: io.Error) {…}
    -

    buffer_write_at ¶

    +

    buffer_write_at ¶

    buffer_write_at :: proc(b: ^Buffer, p: []u8, offset: int) -> (n: int, err: io.Error) {…}
    -

    buffer_write_byte ¶

    +

    buffer_write_byte ¶

    buffer_write_byte :: proc(b: ^Buffer, c: u8) -> io.Error {…}
    -

    buffer_write_ptr ¶

    +

    buffer_write_ptr ¶

    buffer_write_ptr :: proc(b: ^Buffer, ptr: rawptr, size: int) -> (n: int, err: io.Error) {…}
    -

    buffer_write_rune ¶

    +

    buffer_write_rune ¶

    buffer_write_rune :: proc(b: ^Buffer, r: rune) -> (n: int, err: io.Error) {…}
    -

    buffer_write_string ¶

    +

    buffer_write_string ¶

    buffer_write_string :: proc(b: ^Buffer, s: string) -> (n: int, err: io.Error) {…}
    -

    buffer_write_to ¶

    +

    buffer_write_to ¶

    buffer_write_to :: proc(b: ^Buffer, w: io.Stream) -> (n: i64, err: io.Error) {…}
    @@ -1248,7 +1248,7 @@

    Source Files

  • reader.odin
  • Generation Information

    -

    Generated with odin version dev-2023-08 (vendor "odin") Windows_amd64 @ 2023-08-04 21:08:17.950740300 +0000 UTC

    +

    Generated with odin version dev-2023-09 (vendor "odin") Windows_amd64 @ 2023-09-02 21:07:07.767948200 +0000 UTC