vprint_unicode

vprint_unicode (와이드 형식화 출력)

std::vprint_unicode()는 유니코드 문자를 형식화해 표준 출력에 출력해요. C++23에서 추가됐어요.

출처: cppreference

본문

std::vprint_unicode는 인자 목록을 미리 담아둔 std::format_args로 유니코드 텍스트를 출력해요.

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

std::print의 내부 구현으로 사용돼요.

더 알아보기 (Learn more)

cppreference