| 9 | #include <type_traits> |
| 10 | |
| 11 | bool Term::is_ASCII(const Term::Key& key) { |
| 12 | if (key >= 0 && key <= 127) { |
| 13 | return true; |
| 14 | } |
| 15 | return false; |
| 16 | } |
| 17 | |
| 18 | bool Term::is_extended_ASCII(const Term::Key& key) { |
| 19 | if (key >= 0 && key <= 255) { |
nothing calls this directly
no outgoing calls
no test coverage detected