Files
ladybird/AK
sin-ack 28063de488 AK: Add ByteBuffer::{must_,}get_bytes_for_writing()
This is useful for writing new data at the end of a ByteBuffer. For
instance, with the Stream API:

    auto pending_bytes = TRY(stream.pending_bytes());
    auto receive_buffer = TRY(buffer.get_bytes_for_writing(
        pending_bytes));
    TRY(stream.read(receive_buffer));
2022-01-13 15:16:12 +03:30
..
2021-10-06 23:52:40 +01:00
2021-11-11 01:27:46 +01:00
2021-10-06 23:52:40 +01:00
2021-11-22 09:03:47 +01:00
2021-11-22 09:03:47 +01:00
2021-08-07 15:21:58 +02:00
2021-07-22 23:33:21 +02:00
2021-12-12 11:10:34 -08:00
2022-01-04 17:48:28 +00:00
2021-10-15 21:50:19 -07:00
2022-01-07 15:44:42 +01:00