Unicode in C++

Unicode in C++

CppNow

10 лет назад

9,462 Просмотров

Ссылки и html тэги не поддерживаются


Комментарии:

@bloody_albatross
@bloody_albatross - 02.09.2014 23:24

There should be a template specialization std::basic_string<codepoint> that stores the string internally like Python does (if possible use Latin1 bytes, if not then UCS2 and if that isn't possible UCS4/UTF-32) and iterates over code points like u32string would. "codepoint" would be a class that is basically a char32_t. Maybe you could give it more functionality, e.g. only allowing valid code points.

Ответить
@victornoagbodji
@victornoagbodji - 04.09.2014 07:03

this is one of the most useful talks i have watched this year so far. kudos to the presenter.

Ответить
@t567698
@t567698 - 03.09.2016 10:52

Excellent intro and very competent. Recommended.

Ответить
@MegaTomek18
@MegaTomek18 - 06.02.2017 13:23

Ответить