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

Function has_hex_prefix

test-app/runtime/src/main/cpp/ada/ada.h:1028–1030  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1026}
1027
1028constexpr bool has_hex_prefix(std::string_view input) {
1029 return input.size() >= 2 && has_hex_prefix_unsafe(input);
1030}
1031
1032constexpr bool is_digit(char x) noexcept { return (x >= '0') & (x <= '9'); }
1033

Callers 1

parse_ipv4Method · 0.85

Calls 2

has_hex_prefix_unsafeFunction · 0.85
sizeMethod · 0.45

Tested by

no test coverage detected