| 24 | namespace Detail |
| 25 | { |
| 26 | inline bool IsSpace(char32_t character) |
| 27 | { |
| 28 | return character == '\t' || Unicode::GetCategory(character) & Unicode::Category_Separator; |
| 29 | } |
| 30 | |
| 31 | // This algorithm is inspired by the documentation of Qt |
| 32 | inline std::size_t GetNewSize(std::size_t newSize) |
no outgoing calls
no test coverage detected