| 4 | using namespace cpp::marshal; |
| 5 | |
| 6 | bool cpp::encoding::Ascii::isEncoded(const String& string) |
| 7 | { |
| 8 | if (null() == string) |
| 9 | { |
| 10 | hx::NullReference("String", false); |
| 11 | } |
| 12 | |
| 13 | return string.isAsciiEncoded(); |
| 14 | } |
| 15 | |
| 16 | int64_t cpp::encoding::Ascii::encode(const String& string, View<uint8_t> buffer) |
| 17 | { |
nothing calls this directly
no test coverage detected