xieite::file_pipe::desc()

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

Returns the file descriptor of the underlying stream of a xieite::file_pipe {}.


Declaration

[[nodiscard]] int desc() const noexcept;


Example

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

	xieite::dump(pipe.desc());
}
Possible output:
3
(Demonstration in Compiler Explorer unavailable)