xieite ::file_pipe ::operator /*???*/ ()
Defined in header <xieite/io/file_pipe.hpp> Casts the underlying pipe to
bool .Declaration
[[nodiscard ]]explicit (false )operator bool ()const noexcept ;
Example
Possible output:int main () {if (auto pipe =xieite ::file_pipe ("echo Hello, world!" ,"r" )) {xieite ::dump (xieite ::read (pipe .get ())); } }
Hello, world!