MCPcopy Create free account
hub / github.com/NativeScript/android / ada_can_parse_with_base

Function ada_can_parse_with_base

test-app/runtime/src/main/cpp/ada/ada.cpp:17051–17055  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

17049}
17050
17051bool ada_can_parse_with_base(const char* input, size_t input_length,
17052 const char* base, size_t base_length) noexcept {
17053 std::string_view base_view(base, base_length);
17054 return ada::can_parse(std::string_view(input, input_length), &base_view);
17055}
17056
17057void ada_free(ada_url result) noexcept {
17058 auto* r = (ada::result<ada::url_aggregator>*)result;

Callers

nothing calls this directly

Calls 1

can_parseFunction · 0.85

Tested by

no test coverage detected