Files
ladybird/Libraries/LibCore
asynts 6de63782c7 Streams: Consistent behaviour when reading from stream with error.
The streaming operator doesn't short-circuit, consider the following
snippet:

    void foo(InputStream& stream) {
        int a, b;
        stream >> a >> b;
    }

If the first read fails, the second is called regardless. It should be
well defined what happens in this case: nothing.
2020-09-06 12:54:45 +02:00
..
2020-06-11 22:44:54 +02:00
2020-07-28 17:07:22 +02:00
2020-07-28 17:07:22 +02:00
2020-07-29 14:41:57 +02:00