You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jan 5, 2025. It is now read-only.
Now that the basic skeleton of the program has been built, it's time to actually enter the code.
59
+
## ストリームの連結
60
+
61
+
<!-- Now that the basic skeleton of the program has been built, it's time to actually enter the code.
60
62
A proper implementation of `cat` can be used with infinite IO streams, such as `/dev/random`, which means that it can't read its input into memory before outputting it.
61
63
Furthermore, it should not work one character at a time, as this leads to frustratingly slow performance.
62
-
Instead, it's better to read contiguous blocks of data all at once, directing the data to the standard output one block at a time.
64
+
Instead, it's better to read contiguous blocks of data all at once, directing the data to the standard output one block at a time. -->
0 commit comments