convert to lower case if c is a letter a-z, A-Z.
| 1414 | } |
| 1415 | /// convert to lower case if c is a letter a-z, A-Z. |
| 1416 | static inline Char lowercase(Char c) |
| 1417 | { |
| 1418 | return static_cast<unsigned char>(c | 0x20); |
| 1419 | } |
| 1420 | /// convert to upper case if c is a letter a-z, A-Z. |
| 1421 | static inline Char uppercase(Char c) |
| 1422 | { |
nothing calls this directly
no outgoing calls
no test coverage detected