u5e
UnicodeTextC++Library
canonical_combining_order.hpp
1 #ifndef INCLUDED_U5E_CANONICAL_COMBINING_ORDER
2 #define INCLUDED_U5E_CANONICAL_COMBINING_ORDER
3 
4 #include <u5e/props/canonical_combining_class.hpp>
5 
6 namespace u5e {
7 
8  /**
9  * \brief compare codepoints according to the canonical combining order
10  *
11  * This is intended to be used with std::sort on a utf32ne string type.
12  */
13  inline bool canonical_combining_order(int a, int b) {
14  return
16  <
18  }
19 }
20 
21 #endif
Canonical_Combining_Class attribute.
main u5e namespace
bool canonical_combining_order(int a, int b)
compare codepoints according to the canonical combining order
codepoint property handling