MCPcopy Create free account
hub / github.com/HaxeFoundation/hxcpp / isEncoded

Method isEncoded

src/cpp/encoding/Encodings.cpp:6–14  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

4using namespace cpp::marshal;
5
6bool 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
16int64_t cpp::encoding::Ascii::encode(const String& string, View<uint8_t> buffer)
17{

Callers

nothing calls this directly

Calls 2

NullReferenceFunction · 0.85
nullClass · 0.50

Tested by

no test coverage detected