xieite ::read ()
Defined in header <xieite/io/read.hpp>
Reads the entire contents of an input stream to a
std ::string {}
.Declaration
#0Uses[[nodiscard ]]std ::string read (std ::istream & stream )noexcept ;
std ::istreambuf_iterator {}
.#1
Reads the file stream in chunks, with the chunk size doubling every iteration.[[nodiscard ]]std ::string read (std ::FILE * stream )noexcept ;
Example
Output:int main () {std ::ofstream ("msg.txt" ) <<"Hello, world!" ;xieite ::dump ( xieite ::read ( xieite ::tmp (std ::ifstream ("msg.txt" )))); }
[View in Compiler Explorer]Hello, world!