Files
RoosterDragon b313f47660 Implement Stream.Read(Span<byte>) overloads.
The default Stream implementation of this method has to rent an array so it can call the overload that accepts an array, and then copy the output over. This is because the array overload is required and the span overload was only added more recently.

We can avoid the overhead of this by implementing the span overload and working with the destination span directly. Do so for all classes we have that derive from Stream, and redirect their array overload to the span overload for code reuse.
2024-08-04 10:40:43 +01:00
..
2023-04-17 00:05:12 +02:00
2023-10-30 23:31:33 +02:00
2023-01-11 11:58:54 +02:00
2024-06-03 10:25:06 +02:00
2023-04-08 16:51:51 +03:00
2023-04-08 16:51:51 +03:00
2023-04-08 16:51:51 +03:00
2023-02-28 21:21:40 +02:00
2023-10-30 23:31:33 +02:00
2023-11-14 20:33:36 +02:00
2023-08-02 19:42:31 +03:00
2023-04-08 16:51:51 +03:00
2023-06-06 11:51:47 +03:00
2023-08-20 20:41:27 +02:00