xieite::dump()

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

Dumps values to stdout, separated by single spaces.
Essentially just std::println() with an automatically-generated format string.
Based on [P2879].


Declaration

template<typename... Args>
void dump(Args&&... args) noexcept;


Example

int main() {
	int x = 418;
	double y = 3.14159;

	xieite::dump(x, "test", y);
}
Output:
418 test 3.14159
[View in Compiler Explorer]