vprint_nonunicode

vprint_nonunicode (비유니코드 형식화 출력)

std::vprint_nonunicode()는 유니코드 변환 없이 형식화된 값을 출력해요. C++23에서 추가됐어요.

출처: cppreference

본문

std::vprint_nonunicode는 유니코드 처리를 하지 않고 값을 출력해요.

void vprint_nonunicode( std::string_view fmt, std::format_args args );

원시 바이트 그대로 출력할 때 사용해요.

더 알아보기 (Learn more)

cppreference