xieite::file_pipe::close()

Defined in header <xieite/io/file_pipe.hpp>

Closes a xieite::file_pipe {}. Automatically called upon destruction.


Declaration

void close() noexcept;


Example

int main() {
	auto pipe = xieite::file_pipe("echo", "r");

	pipe.close();
}
(Demonstration in Compiler Explorer unavailable)