|
Adobe Source Libraries 2.0.0
A collection of C++ libraries.
|
#include <unicode.hpp>
| T | is an 8, 16, or 32 bit integral type for a UTF code point |
| U | is an 8, 16, or 32 bit integral type for a UTF code point |
expand_utf<T, U>::value is the maximum expansion when converting a UTF sequence from T to U determined by the following table: | source/result | UTF-8 | UTF-16 | UTF-32 |
|---|---|---|---|
| UTF-8 | 1 | 1 | 1 |
| UTF-16 | 3 | 1 | 1 |
| UTF-32 | 4 | 2 | 1 |
Definition at line 520 of file unicode.hpp.