-
-
9425 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
-
9426 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1,
-
9427 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0,
-
9428 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0,
-
9429 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
-
9430 0, 0, 0, 0, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
-
9431 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
-
9432 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
-
9433 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
-
9434 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
-
9435 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1};
+
+
-
-
-
-
-
-
-
+
+
+
+
+
9434 static const std::string error =
"";
+
+
+
9437 std::string mapped_string = std::string(ut8_string);
+
9438 ascii_map(mapped_string.data(), mapped_string.size());
+
+
9440 size_t label_start = 0;
+
+
9442 while (label_start != mapped_string.size()) {
+
9443 size_t loc_dot = mapped_string.find(
'.', label_start);
+
9444 bool is_last_label = (loc_dot == std::string_view::npos);
+
9445 size_t label_size = is_last_label ? mapped_string.size() - label_start
+
9446 : loc_dot - label_start;
+
9447 size_t label_size_with_dot = is_last_label ? label_size : label_size + 1;
+
9448 std::string_view label_view(mapped_string.data() + label_start, label_size);
+
9449 label_start += label_size_with_dot;
+
9450 if (label_size == 0) {
+
+
9452 }
else if (label_view.starts_with(
"xn--")) {
+
+
9454 out.append(label_view);
+
9455 std::string_view puny_segment_ascii(
+
9456 out.data() + out.size() - label_view.size() + 4,
+
9457 label_view.size() - 4);
+
9458 std::u32string tmp_buffer;
+
+
+
+
+
+
9464 if (tmp_buffer != post_map) {
+
+
+
9467 std::u32string pre_normal = post_map;
+
+
9469 if (post_map != pre_normal) {
+
+
+
9472 if (post_map.empty()) {
+
+
+
+
+
+
+
9479 out.append(label_view);
+
+
9481 if (!is_last_label) {
+
+
+
+
+
-
-
-
-
-
-
+
+
+
+
+
+
+
+
9493 static const std::string error =
"";
+
+
9495 size_t utf32_length =
+
+
9497 std::u32string utf32(utf32_length,
'\0');
+
+
9499 ut8_string.data(), ut8_string.size(), utf32.data());
+
9500 if (actual_utf32_length == 0) {
+
+
+
+
+
+
+
9507 size_t label_start = 0;
+
+
9509 while (label_start != utf32.size()) {
+
9510 size_t loc_dot = utf32.find(
'.', label_start);
+
9511 bool is_last_label = (loc_dot == std::string_view::npos);
+
+
9513 is_last_label ? utf32.size() - label_start : loc_dot - label_start;
+
9514 size_t label_size_with_dot = is_last_label ? label_size : label_size + 1;
+
9515 std::u32string_view label_view(utf32.data() + label_start, label_size);
+
9516 label_start += label_size_with_dot;
+
9517 if (label_size == 0) {
+
+
9519 }
else if (label_view.starts_with(U
"xn--")) {
+
+
9521 for (
char32_t c : label_view) {
+
+
+
+
9525 out += (
unsigned char)(c);
+
+
9527 std::string_view puny_segment_ascii(
+
9528 out.data() + out.size() - label_view.size() + 4,
+
9529 label_view.size() - 4);
+
9530 std::u32string tmp_buffer;
+
+
+
+
+
+
9536 if (tmp_buffer != post_map) {
+
+
+
9539 std::u32string pre_normal = post_map;
+
+
9541 if (post_map != pre_normal) {
+
+
+
9544 if (post_map.empty()) {
+
+
+
+
+
+
+
+
+
+
9554 for (
char32_t c : label_view) {
+
9555 out += (
unsigned char)(c);
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
9571 if (!is_last_label) {
+
+
+
+
+
-
-
-
-
-
9450 static const std::string error =
"";
-
-
-
9453 std::string mapped_string = std::string(ut8_string);
-
9454 ascii_map(mapped_string.data(), mapped_string.size());
-
-
9456 size_t label_start = 0;
-
-
9458 while (label_start != mapped_string.size()) {
-
9459 size_t loc_dot = mapped_string.find(
'.', label_start);
-
9460 bool is_last_label = (loc_dot == std::string_view::npos);
-
9461 size_t label_size = is_last_label ? mapped_string.size() - label_start
-
9462 : loc_dot - label_start;
-
9463 size_t label_size_with_dot = is_last_label ? label_size : label_size + 1;
-
9464 std::string_view label_view(mapped_string.data() + label_start, label_size);
-
9465 label_start += label_size_with_dot;
-
9466 if (label_size == 0) {
-
-
-
-
9470 out.append(label_view);
-
9471 std::string_view puny_segment_ascii(
-
9472 out.data() + out.size() - label_view.size() + 4,
-
9473 label_view.size() - 4);
-
9474 std::u32string tmp_buffer;
-
-
-
-
-
-
9480 if (tmp_buffer != post_map) {
-
-
-
9483 std::u32string pre_normal = post_map;
-
-
9485 if (post_map != pre_normal) {
-
-
-
9488 if (post_map.empty()) {
-
-
-
-
-
-
-
9495 out.append(label_view);
-
-
9497 if (!is_last_label) {
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
9588 output.reserve(input.size());
+
+
9590 size_t label_start = 0;
+
9591 while (label_start < input.size()) {
+
9592 size_t loc_dot = input.find(
'.', label_start);
+
9593 bool is_last_label = (loc_dot == std::string_view::npos);
+
+
9595 is_last_label ? input.size() - label_start : loc_dot - label_start;
+
9596 auto label_view = std::string_view(input.data() + label_start, label_size);
+
+
+
9599 label_view.remove_prefix(4);
+
+
9601 std::u32string tmp_buffer;
+
+
+
+
9605 std::string final_utf8(utf8_size,
'\0');
+
+
+
9608 output.append(final_utf8);
+
+
+
+
+
9613 std::string_view(input.data() + label_start, label_size));
+
+
+
9616 output.append(std::string_view(input.data() + label_start, label_size));
+
+
+
9619 output.append(label_view);
+
+
+
9622 if (!is_last_label) {
+
9623 output.push_back(
'.');
+
+
+
9626 label_start += label_size + 1;
+
+
+
+
-
-
-
-
-
-
-
-
9509 static const std::string error =
"";
-
-
9511 size_t utf32_length =
-
-
9513 std::u32string utf32(utf32_length,
'\0');
-
-
9515 ut8_string.data(), ut8_string.size(), utf32.data());
-
9516 if (actual_utf32_length == 0) {
-
-
-
-
-
-
-
9523 size_t label_start = 0;
-
-
9525 while (label_start != utf32.size()) {
-
9526 size_t loc_dot = utf32.find(
'.', label_start);
-
9527 bool is_last_label = (loc_dot == std::string_view::npos);
-
-
9529 is_last_label ? utf32.size() - label_start : loc_dot - label_start;
-
9530 size_t label_size_with_dot = is_last_label ? label_size : label_size + 1;
-
9531 std::u32string_view label_view(utf32.data() + label_start, label_size);
-
9532 label_start += label_size_with_dot;
-
9533 if (label_size == 0) {
-
-
-
-
9537 for (
char32_t c : label_view) {
-
-
-
-
9541 out += (
unsigned char)(c);
-
-
9543 std::string_view puny_segment_ascii(
-
9544 out.data() + out.size() - label_view.size() + 4,
-
9545 label_view.size() - 4);
-
9546 std::u32string tmp_buffer;
-
-
-
-
-
-
9552 if (tmp_buffer != post_map) {
-
-
-
9555 std::u32string pre_normal = post_map;
-
-
9557 if (post_map != pre_normal) {
-
-
-
9560 if (post_map.empty()) {
-
-
-
-
-
-
-
-
-
-
9570 for (
char32_t c : label_view) {
-
9571 out += (
unsigned char)(c);
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
9587 if (!is_last_label) {
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
9604 output.reserve(input.size());
-
-
9606 size_t label_start = 0;
-
9607 while (label_start < input.size()) {
-
9608 size_t loc_dot = input.find(
'.', label_start);
-
9609 bool is_last_label = (loc_dot == std::string_view::npos);
-
-
9611 is_last_label ? input.size() - label_start : loc_dot - label_start;
-
9612 auto label_view = std::string_view(input.data() + label_start, label_size);
-
-
-
-
9616 label_view.remove_prefix(4);
-
-
9618 std::u32string tmp_buffer;
-
-
-
-
9622 std::string final_utf8(utf8_size,
'\0');
-
-
-
9625 output.append(final_utf8);
-
-
-
-
-
9630 std::string_view(input.data() + label_start, label_size));
-
-
-
9633 output.append(std::string_view(input.data() + label_start, label_size));
-
-
-
9636 output.append(label_view);
-
-
-
9639 if (!is_last_label) {
-
9640 output.push_back(
'.');
-
-
-
9643 label_start += label_size + 1;
-
-
-
-
-
-
-
-
+
+
+
void compose(std::u32string &input)
const uint8_t composition_index[4352]
@@ -9858,8 +9837,8 @@
constexpr char32_t hangul_lbase
void sort_marks(std::u32string &input)
const uint8_t canonical_combining_class_block[67][256]
-
static constexpr uint8_t is_forbidden_domain_code_point_table[]
-
bool constexpr is_ascii(std::u32string_view view)
+
static constexpr uint8_t is_forbidden_domain_code_point_table[]
+
bool constexpr is_ascii(std::u32string_view view)
void normalize(std::u32string &input)
constexpr char32_t hangul_lcount
constexpr char32_t hangul_scount
@@ -9869,18 +9848,17 @@
constexpr char32_t hangul_sbase
const uint8_t decomposition_index[4352]
const uint16_t composition_block[67][257]
-
std::string to_ascii(std::string_view ut8_string)
-
std::string to_unicode(std::string_view input)
+
std::string to_ascii(std::string_view ut8_string)
+
std::string to_unicode(std::string_view input)
constexpr char32_t hangul_vbase
uint8_t get_ccc(char32_t c) noexcept
-
static std::string from_ascii_to_ascii(std::string_view ut8_string)
+
static std::string from_ascii_to_ascii(std::string_view ut8_string)
static size_t find_last_not_of_nsm(const std::u32string_view label) noexcept
-
bool is_forbidden_domain_code_point(const char c) noexcept
+
bool is_forbidden_domain_code_point(const char c) noexcept
const uint32_t table[8000][2]
const char32_t decomposition_data[9102]
-
bool begins_with(std::u32string_view view, std::u32string_view prefix)
constexpr uint32_t initial_n
size_t utf8_length_from_utf32(const char32_t *buf, size_t len)
bool is_label_valid(std::u32string_view label)
@@ -9912,7 +9890,7 @@
-
bool contains_forbidden_domain_code_point(std::string_view ascii_string)
+
bool contains_forbidden_domain_code_point(std::string_view ascii_string)
std::u32string map(std::u32string_view input)
constexpr int32_t initial_bias
diff --git a/dd/d4c/ada__idna_8h.html b/dd/d4c/ada__idna_8h.html
index 7a474ad15..d8c32c158 100644
--- a/dd/d4c/ada__idna_8h.html
+++ b/dd/d4c/ada__idna_8h.html
@@ -176,10 +176,6 @@
|
bool | ada::idna::contains_forbidden_domain_code_point (std::string_view ascii_string) |
|
-
bool | ada::idna::begins_with (std::u32string_view view, std::u32string_view prefix) |
-
|
-
bool | ada::idna::begins_with (std::string_view view, std::string_view prefix) |
-
|
bool constexpr | ada::idna::is_ascii (std::u32string_view view) |
|
bool constexpr | ada::idna::is_ascii (std::string_view view) |
@@ -264,7 +260,7 @@
diff --git a/dd/d4c/ada__idna_8h.js b/dd/d4c/ada__idna_8h.js
index 0fb34a055..c1c91f73a 100644
--- a/dd/d4c/ada__idna_8h.js
+++ b/dd/d4c/ada__idna_8h.js
@@ -9,8 +9,6 @@ var ada__idna_8h =
[ "ADA_IDNA_VALIDITY_H", "dd/d4c/ada__idna_8h.html#a0d819d87708524de1f5a4515f7f9f6d4", null ],
[ "ascii_has_upper_case", "dd/d4c/ada__idna_8h.html#ac6f73440f8dc6ef6ecd14b7a3a836b21", null ],
[ "ascii_map", "dd/d4c/ada__idna_8h.html#a10ef8e085520b93791eef38bdabf5941", null ],
- [ "begins_with", "dd/d4c/ada__idna_8h.html#ada325b61431cf2aa7414dbfcd8e9c391", null ],
- [ "begins_with", "dd/d4c/ada__idna_8h.html#ab32141007e2a5423ea8cf91f849b9d39", null ],
[ "contains_forbidden_domain_code_point", "dd/d4c/ada__idna_8h.html#ac7ad7c23c6223982a88d1f079a2e6e97", null ],
[ "is_ascii", "dd/d4c/ada__idna_8h.html#a256324be086f84ee56e21f9bff4acacf", null ],
[ "is_ascii", "dd/d4c/ada__idna_8h.html#a66015ea551d99b27023cc184e74ba63d", null ],
diff --git a/dd/d4c/ada__idna_8h_source.html b/dd/d4c/ada__idna_8h_source.html
index ea5927ed2..bfc28a880 100644
--- a/dd/d4c/ada__idna_8h_source.html
+++ b/dd/d4c/ada__idna_8h_source.html
@@ -113,7 +113,7 @@
-
Go to the documentation of this file.
+
Go to the documentation of this file.
@@ -233,49 +233,45 @@
-
122bool begins_with(std::u32string_view view, std::u32string_view prefix);
-
123bool begins_with(std::string_view view, std::string_view prefix);
+
122bool constexpr is_ascii(std::u32string_view view);
+
123bool constexpr is_ascii(std::string_view view);
-
125bool constexpr is_ascii(std::u32string_view view);
-
126bool constexpr is_ascii(std::string_view view);
-
-
-
-
-
-
+
+
+
+
+
+
+
131#ifndef ADA_IDNA_TO_UNICODE_H
+
132#define ADA_IDNA_TO_UNICODE_H
-
134#ifndef ADA_IDNA_TO_UNICODE_H
-
135#define ADA_IDNA_TO_UNICODE_H
-
-
137#include <string_view>
-
-
-
-
141std::string
to_unicode(std::string_view input);
-
-
+
134#include <string_view>
+
+
+
+
138std::string
to_unicode(std::string_view input);
+
+
+
+
+
-
-
-
-
-
+
+
void ascii_map(char *input, size_t length)
bool punycode_to_utf32(std::string_view input, std::u32string &out)
size_t utf32_length_from_utf8(const char *buf, size_t len)
size_t utf32_to_utf8(const char32_t *buf, size_t len, char *utf8_output)
-
bool constexpr is_ascii(std::u32string_view view)
+
bool constexpr is_ascii(std::u32string_view view)
void normalize(std::u32string &input)
bool utf32_to_punycode(std::u32string_view input, std::string &out)
-
std::string to_ascii(std::string_view ut8_string)
-
std::string to_unicode(std::string_view input)
-
bool begins_with(std::u32string_view view, std::u32string_view prefix)
+
std::string to_ascii(std::string_view ut8_string)
+
std::string to_unicode(std::string_view input)
size_t utf8_length_from_utf32(const char32_t *buf, size_t len)
bool is_label_valid(std::u32string_view label)
bool ascii_has_upper_case(char *input, size_t length)
-
bool contains_forbidden_domain_code_point(std::string_view ascii_string)
+
bool contains_forbidden_domain_code_point(std::string_view ascii_string)
std::u32string map(std::u32string_view input)
size_t utf8_to_utf32(const char *buf, size_t len, char32_t *utf32_output)
bool verify_punycode(std::string_view input)
diff --git a/dd/d90/unicode_8h_source.html b/dd/d90/unicode_8h_source.html
index d44417cbd..097f75baa 100644
--- a/dd/d90/unicode_8h_source.html
+++ b/dd/d90/unicode_8h_source.html
@@ -180,8 +180,8 @@
Common definitions for cross-platform compiler support.
#define ada_really_inline
-
std::string to_ascii(std::string_view ut8_string)
-
bool contains_forbidden_domain_code_point(std::string_view ascii_string)
+
std::string to_ascii(std::string_view ut8_string)
+
bool contains_forbidden_domain_code_point(std::string_view ascii_string)
Includes the declarations for unicode operations.
ada_really_inline size_t percent_encode_index(const std::string_view input, const uint8_t character_set[])
diff --git a/dd/d9c/unicode_8cpp_source.html b/dd/d9c/unicode_8cpp_source.html
index 6c696c60a..21dd56d66 100644
--- a/dd/d9c/unicode_8cpp_source.html
+++ b/dd/d9c/unicode_8cpp_source.html
@@ -609,9 +609,9 @@
#define ada_really_inline
ada_really_inline constexpr bool bit_at(const uint8_t a[], const uint8_t i)
-
std::string to_ascii(std::string_view ut8_string)
+
std::string to_ascii(std::string_view ut8_string)
-
bool contains_forbidden_domain_code_point(std::string_view ascii_string)
+
bool contains_forbidden_domain_code_point(std::string_view ascii_string)
Includes the declarations for unicode operations.
static constexpr std::array< uint8_t, 256 > is_forbidden_domain_code_point_table
static constexpr std::array< uint8_t, 256 > is_forbidden_domain_code_point_table_or_upper
diff --git a/dd/dd6/ada__c_8cpp_source.html b/dd/dd6/ada__c_8cpp_source.html
index 08667f774..6b13f8f71 100644
--- a/dd/dd6/ada__c_8cpp_source.html
+++ b/dd/dd6/ada__c_8cpp_source.html
@@ -1070,8 +1070,8 @@
void * ada_url_search_params_keys_iter
void * ada_url_search_params_values_iter
-
std::string to_ascii(std::string_view ut8_string)
-
std::string to_unicode(std::string_view input)
+
std::string to_ascii(std::string_view ut8_string)
+
std::string to_unicode(std::string_view input)
bool can_parse(std::string_view input, const std::string_view *base_input=nullptr)
tl::expected< result_type, ada::errors > result
ada_warn_unused ada::result< result_type > parse(std::string_view input, const result_type *base_url=nullptr)
diff --git a/doxygen_crawl.html b/doxygen_crawl.html
index a57a1e773..6464ff6a1 100644
--- a/doxygen_crawl.html
+++ b/doxygen_crawl.html
@@ -460,7 +460,6 @@
-
@@ -498,7 +497,6 @@
-
@@ -732,7 +730,6 @@
-
@@ -770,7 +767,6 @@
-
@@ -895,13 +891,11 @@
-
-
diff --git a/namespacemembers.html b/namespacemembers.html
index 7bdd8bec0..dac6f6b8d 100644
--- a/namespacemembers.html
+++ b/namespacemembers.html
@@ -129,7 +129,6 @@
- a -
- b -
- B : ada::idna
- base : ada::idna
-- begins_with() : ada::idna
- bit_at() : ada::character_sets
- BN : ada::idna
- broadcast() : ada::unicode
diff --git a/namespacemembers_func.html b/namespacemembers_func.html
index 50c39ab18..61b49d6f2 100644
--- a/namespacemembers_func.html
+++ b/namespacemembers_func.html
@@ -120,7 +120,6 @@ - a -
- b -
diff --git a/navtreedata.js b/navtreedata.js
index b70e67f15..a272752b0 100644
--- a/navtreedata.js
+++ b/navtreedata.js
@@ -82,10 +82,10 @@ var NAVTREE =
var NAVTREEINDEX =
[
"annotated.html",
-"d5/ddb/namespaceada_1_1idna.html#ae3fa7abe424f63e3595039e90e3c316a",
-"da/dac/url__search__params_8h.html#aae48bce1c55d1bfd1b41bd2a64d5eb23a16120b23bf34ca6ac1ab8c5dee69bf33",
-"dd/d4c/ada__idna_8h.html#a3f4b1dede3010b9e5173fd8c91227ec0",
-"dd/dd6/ada__c_8cpp.html#adf43435636b3ff65d12c74dee86d9da0"
+"d5/dee/url-setters_8cpp.html",
+"da/dac/url__search__params_8h.html#aae48bce1c55d1bfd1b41bd2a64d5eb23ab7db4588385c4fc7ed5211c35c711598",
+"dd/d4c/ada__idna_8h.html#a66bd7d6170f3e06b968c739e40a35967",
+"dd/dd6/ada__c_8cpp.html#aec5b9e4136a5d73716cf84a9da656789"
];
var SYNCONMSG = 'click to disable panel synchronisation';
diff --git a/navtreeindex0.js b/navtreeindex0.js
index fa30ea13c..ab82488f4 100644
--- a/navtreeindex0.js
+++ b/navtreeindex0.js
@@ -165,57 +165,56 @@ var NAVTREEINDEX0 =
"d5/d36/parser_8h.html#ae5bc0e565c8d7db76f6bdc7f7243c6ef":[9,0,2,0,10,3],
"d5/d36/parser_8h_source.html":[9,0,2,0,10],
"d5/ddb/namespaceada_1_1idna.html":[7,0,0,3],
-"d5/ddb/namespaceada_1_1idna.html#a03db2791270405a5c682305c18c5d1cf":[7,0,0,3,8],
-"d5/ddb/namespaceada_1_1idna.html#a04152d08ff9b28a79096f98f9741ab8a":[7,0,0,3,41],
-"d5/ddb/namespaceada_1_1idna.html#a07dc07ec6be862cf01e910353dcb481e":[7,0,0,3,53],
-"d5/ddb/namespaceada_1_1idna.html#a0d1e1182a7cae8b4c1063dbc7614f88f":[7,0,0,3,36],
+"d5/ddb/namespaceada_1_1idna.html#a03db2791270405a5c682305c18c5d1cf":[7,0,0,3,6],
+"d5/ddb/namespaceada_1_1idna.html#a04152d08ff9b28a79096f98f9741ab8a":[7,0,0,3,39],
+"d5/ddb/namespaceada_1_1idna.html#a07dc07ec6be862cf01e910353dcb481e":[7,0,0,3,51],
+"d5/ddb/namespaceada_1_1idna.html#a0d1e1182a7cae8b4c1063dbc7614f88f":[7,0,0,3,34],
"d5/ddb/namespaceada_1_1idna.html#a10ef8e085520b93791eef38bdabf5941":[7,0,0,3,4],
-"d5/ddb/namespaceada_1_1idna.html#a1273085e8773bf04ccd97128cd3db1e0":[7,0,0,3,11],
-"d5/ddb/namespaceada_1_1idna.html#a164d095ce497ec0086fcd41e3f7e311e":[7,0,0,3,23],
-"d5/ddb/namespaceada_1_1idna.html#a2504167b83ba3ae4819f5d250ec0806d":[7,0,0,3,40],
-"d5/ddb/namespaceada_1_1idna.html#a2544de17d530836df29f7c7311f97d5e":[7,0,0,3,16],
-"d5/ddb/namespaceada_1_1idna.html#a256324be086f84ee56e21f9bff4acacf":[7,0,0,3,19],
-"d5/ddb/namespaceada_1_1idna.html#a273eb4809ead730a5835f426c059e7c7":[7,0,0,3,13],
+"d5/ddb/namespaceada_1_1idna.html#a1273085e8773bf04ccd97128cd3db1e0":[7,0,0,3,9],
+"d5/ddb/namespaceada_1_1idna.html#a164d095ce497ec0086fcd41e3f7e311e":[7,0,0,3,21],
+"d5/ddb/namespaceada_1_1idna.html#a2504167b83ba3ae4819f5d250ec0806d":[7,0,0,3,38],
+"d5/ddb/namespaceada_1_1idna.html#a2544de17d530836df29f7c7311f97d5e":[7,0,0,3,14],
+"d5/ddb/namespaceada_1_1idna.html#a256324be086f84ee56e21f9bff4acacf":[7,0,0,3,17],
+"d5/ddb/namespaceada_1_1idna.html#a273eb4809ead730a5835f426c059e7c7":[7,0,0,3,11],
"d5/ddb/namespaceada_1_1idna.html#a28815dfd4e31facb82c56c817dd1067f":[7,0,0,3,2],
-"d5/ddb/namespaceada_1_1idna.html#a28e25a08ef5ab3b8c5e25f77e9340566":[7,0,0,3,12],
-"d5/ddb/namespaceada_1_1idna.html#a2a8649da4131912025f71c76e5483c6e":[7,0,0,3,43],
-"d5/ddb/namespaceada_1_1idna.html#a2cfd434e37cade8764f29cc4d722b70f":[7,0,0,3,26],
-"d5/ddb/namespaceada_1_1idna.html#a3d7c9bfeb83a88063623160ae2887574":[7,0,0,3,49],
-"d5/ddb/namespaceada_1_1idna.html#a3f4b1dede3010b9e5173fd8c91227ec0":[7,0,0,3,30],
-"d5/ddb/namespaceada_1_1idna.html#a4137d2ecd3d2921846af696d6611aed9":[7,0,0,3,63],
-"d5/ddb/namespaceada_1_1idna.html#a43afa026d0aeb1a48e7ed8e2ca90d387":[7,0,0,3,38],
-"d5/ddb/namespaceada_1_1idna.html#a43b333f48581059d57dbbba4e5b13e9a":[7,0,0,3,32],
-"d5/ddb/namespaceada_1_1idna.html#a4af64ef680c616c7ce410932d8474afa":[7,0,0,3,47],
-"d5/ddb/namespaceada_1_1idna.html#a50bfbde0795e1b69056b441b888f3514":[7,0,0,3,27],
-"d5/ddb/namespaceada_1_1idna.html#a59287719010e9172d71163ba81d20d71":[7,0,0,3,37],
-"d5/ddb/namespaceada_1_1idna.html#a63497445165fe20b9ecc26c791f1de55":[7,0,0,3,58],
-"d5/ddb/namespaceada_1_1idna.html#a66015ea551d99b27023cc184e74ba63d":[7,0,0,3,20],
-"d5/ddb/namespaceada_1_1idna.html#a66bd7d6170f3e06b968c739e40a35967":[7,0,0,3,25],
-"d5/ddb/namespaceada_1_1idna.html#a6b4fd5ad887b44c75b6961aab3698bdb":[7,0,0,3,48],
-"d5/ddb/namespaceada_1_1idna.html#a6d4de1059fd64ba439f93e082d39e49b":[7,0,0,3,51],
-"d5/ddb/namespaceada_1_1idna.html#a705c21b2e695ed27a12de6e7419cb540":[7,0,0,3,14],
-"d5/ddb/namespaceada_1_1idna.html#a742b05e0aba2245da3ac0ffd9ec678b6":[7,0,0,3,31],
-"d5/ddb/namespaceada_1_1idna.html#a750c9c5e17eb8805d72a7a64c652c60c":[7,0,0,3,46],
-"d5/ddb/namespaceada_1_1idna.html#a75ee37a3911b0ce4d2563842a654a920":[7,0,0,3,50],
-"d5/ddb/namespaceada_1_1idna.html#a76ba8c375d368a14a5b009138b882859":[7,0,0,3,45],
-"d5/ddb/namespaceada_1_1idna.html#a7a9b9104fed112133289d3f67bb94b0a":[7,0,0,3,39],
-"d5/ddb/namespaceada_1_1idna.html#a7d88f623d0a7e056cc89920b20e13dde":[7,0,0,3,28],
-"d5/ddb/namespaceada_1_1idna.html#a7d9aecb5815cce8db291ed12d5d1774f":[7,0,0,3,29],
-"d5/ddb/namespaceada_1_1idna.html#a7f00835963b691723cdc2383bb362199":[7,0,0,3,54],
-"d5/ddb/namespaceada_1_1idna.html#a8c81c2acabc058ce6376560052072984":[7,0,0,3,18],
-"d5/ddb/namespaceada_1_1idna.html#a939fc0c16e2a4fe433685bcd44ad9c75":[7,0,0,3,17],
-"d5/ddb/namespaceada_1_1idna.html#aa39f46b87bed904cd88981b4531d475f":[7,0,0,3,15],
-"d5/ddb/namespaceada_1_1idna.html#aa916f8c8a88981da489e29cd954047c5":[7,0,0,3,42],
-"d5/ddb/namespaceada_1_1idna.html#aa9d13586049e9e107a2d372eeb81ddfc":[7,0,0,3,21],
-"d5/ddb/namespaceada_1_1idna.html#aab19eab266847496402079e77f5ffa93":[7,0,0,3,61],
-"d5/ddb/namespaceada_1_1idna.html#ab0f41d0b74696b2698bab08f36251526":[7,0,0,3,44],
-"d5/ddb/namespaceada_1_1idna.html#ab156a495c05e66e0ed42a69d71d2c588":[7,0,0,3,60],
-"d5/ddb/namespaceada_1_1idna.html#ab32141007e2a5423ea8cf91f849b9d39":[7,0,0,3,6],
-"d5/ddb/namespaceada_1_1idna.html#ab4504379d0bcd88ac427b8b70062d166":[7,0,0,3,57],
-"d5/ddb/namespaceada_1_1idna.html#abf65afb975393474b917637a8ae045bb":[7,0,0,3,33],
-"d5/ddb/namespaceada_1_1idna.html#ac39ccead632e6f2bf5049d1b643c5e1c":[7,0,0,3,22],
-"d5/ddb/namespaceada_1_1idna.html#ac48f13e12efe5af075e58ca8ed4690ae":[7,0,0,3,7],
-"d5/ddb/namespaceada_1_1idna.html#ac50c30d0d051c6f5b6463cedd5eda8e1":[7,0,0,3,9],
+"d5/ddb/namespaceada_1_1idna.html#a28e25a08ef5ab3b8c5e25f77e9340566":[7,0,0,3,10],
+"d5/ddb/namespaceada_1_1idna.html#a2a8649da4131912025f71c76e5483c6e":[7,0,0,3,41],
+"d5/ddb/namespaceada_1_1idna.html#a2cfd434e37cade8764f29cc4d722b70f":[7,0,0,3,24],
+"d5/ddb/namespaceada_1_1idna.html#a3d7c9bfeb83a88063623160ae2887574":[7,0,0,3,47],
+"d5/ddb/namespaceada_1_1idna.html#a3f4b1dede3010b9e5173fd8c91227ec0":[7,0,0,3,28],
+"d5/ddb/namespaceada_1_1idna.html#a4137d2ecd3d2921846af696d6611aed9":[7,0,0,3,61],
+"d5/ddb/namespaceada_1_1idna.html#a43afa026d0aeb1a48e7ed8e2ca90d387":[7,0,0,3,36],
+"d5/ddb/namespaceada_1_1idna.html#a43b333f48581059d57dbbba4e5b13e9a":[7,0,0,3,30],
+"d5/ddb/namespaceada_1_1idna.html#a4af64ef680c616c7ce410932d8474afa":[7,0,0,3,45],
+"d5/ddb/namespaceada_1_1idna.html#a50bfbde0795e1b69056b441b888f3514":[7,0,0,3,25],
+"d5/ddb/namespaceada_1_1idna.html#a59287719010e9172d71163ba81d20d71":[7,0,0,3,35],
+"d5/ddb/namespaceada_1_1idna.html#a63497445165fe20b9ecc26c791f1de55":[7,0,0,3,56],
+"d5/ddb/namespaceada_1_1idna.html#a66015ea551d99b27023cc184e74ba63d":[7,0,0,3,18],
+"d5/ddb/namespaceada_1_1idna.html#a66bd7d6170f3e06b968c739e40a35967":[7,0,0,3,23],
+"d5/ddb/namespaceada_1_1idna.html#a6b4fd5ad887b44c75b6961aab3698bdb":[7,0,0,3,46],
+"d5/ddb/namespaceada_1_1idna.html#a6d4de1059fd64ba439f93e082d39e49b":[7,0,0,3,49],
+"d5/ddb/namespaceada_1_1idna.html#a705c21b2e695ed27a12de6e7419cb540":[7,0,0,3,12],
+"d5/ddb/namespaceada_1_1idna.html#a742b05e0aba2245da3ac0ffd9ec678b6":[7,0,0,3,29],
+"d5/ddb/namespaceada_1_1idna.html#a750c9c5e17eb8805d72a7a64c652c60c":[7,0,0,3,44],
+"d5/ddb/namespaceada_1_1idna.html#a75ee37a3911b0ce4d2563842a654a920":[7,0,0,3,48],
+"d5/ddb/namespaceada_1_1idna.html#a76ba8c375d368a14a5b009138b882859":[7,0,0,3,43],
+"d5/ddb/namespaceada_1_1idna.html#a7a9b9104fed112133289d3f67bb94b0a":[7,0,0,3,37],
+"d5/ddb/namespaceada_1_1idna.html#a7d88f623d0a7e056cc89920b20e13dde":[7,0,0,3,26],
+"d5/ddb/namespaceada_1_1idna.html#a7d9aecb5815cce8db291ed12d5d1774f":[7,0,0,3,27],
+"d5/ddb/namespaceada_1_1idna.html#a7f00835963b691723cdc2383bb362199":[7,0,0,3,52],
+"d5/ddb/namespaceada_1_1idna.html#a8c81c2acabc058ce6376560052072984":[7,0,0,3,16],
+"d5/ddb/namespaceada_1_1idna.html#a939fc0c16e2a4fe433685bcd44ad9c75":[7,0,0,3,15],
+"d5/ddb/namespaceada_1_1idna.html#aa39f46b87bed904cd88981b4531d475f":[7,0,0,3,13],
+"d5/ddb/namespaceada_1_1idna.html#aa916f8c8a88981da489e29cd954047c5":[7,0,0,3,40],
+"d5/ddb/namespaceada_1_1idna.html#aa9d13586049e9e107a2d372eeb81ddfc":[7,0,0,3,19],
+"d5/ddb/namespaceada_1_1idna.html#aab19eab266847496402079e77f5ffa93":[7,0,0,3,59],
+"d5/ddb/namespaceada_1_1idna.html#ab0f41d0b74696b2698bab08f36251526":[7,0,0,3,42],
+"d5/ddb/namespaceada_1_1idna.html#ab156a495c05e66e0ed42a69d71d2c588":[7,0,0,3,58],
+"d5/ddb/namespaceada_1_1idna.html#ab4504379d0bcd88ac427b8b70062d166":[7,0,0,3,55],
+"d5/ddb/namespaceada_1_1idna.html#abf65afb975393474b917637a8ae045bb":[7,0,0,3,31],
+"d5/ddb/namespaceada_1_1idna.html#ac39ccead632e6f2bf5049d1b643c5e1c":[7,0,0,3,20],
+"d5/ddb/namespaceada_1_1idna.html#ac48f13e12efe5af075e58ca8ed4690ae":[7,0,0,3,5],
+"d5/ddb/namespaceada_1_1idna.html#ac50c30d0d051c6f5b6463cedd5eda8e1":[7,0,0,3,7],
"d5/ddb/namespaceada_1_1idna.html#ac6f73440f8dc6ef6ecd14b7a3a836b21":[7,0,0,3,3],
"d5/ddb/namespaceada_1_1idna.html#ac7495198fe0aa95543b347ac9cc548dd":[7,0,0,3,1],
"d5/ddb/namespaceada_1_1idna.html#ac7495198fe0aa95543b347ac9cc548dda048e5fd9489bae6b90f663e1c2ec2de4":[7,0,0,3,1,15],
@@ -242,12 +241,13 @@ var NAVTREEINDEX0 =
"d5/ddb/namespaceada_1_1idna.html#ac7495198fe0aa95543b347ac9cc548ddae67f79836e686d27f598076f417de917":[7,0,0,3,1,17],
"d5/ddb/namespaceada_1_1idna.html#ac7495198fe0aa95543b347ac9cc548ddaeb2cbb55b27f9f73c1655413f1df1d19":[7,0,0,3,1,1],
"d5/ddb/namespaceada_1_1idna.html#ac7495198fe0aa95543b347ac9cc548ddafc48151aee9d9d0dce07468e47f7fd7a":[7,0,0,3,1,11],
-"d5/ddb/namespaceada_1_1idna.html#ac7ad7c23c6223982a88d1f079a2e6e97":[7,0,0,3,10],
-"d5/ddb/namespaceada_1_1idna.html#acc44ee8cb1484d14560236b659e12565":[7,0,0,3,24],
-"d5/ddb/namespaceada_1_1idna.html#acdcde57bdbb6064aa3958878ae5f62f6":[7,0,0,3,56],
-"d5/ddb/namespaceada_1_1idna.html#ad2a2a6422a2c30b768e64caa35c39020":[7,0,0,3,62],
-"d5/ddb/namespaceada_1_1idna.html#ad39325463bccb5615ad4aafb3f45ddd6":[7,0,0,3,59],
-"d5/ddb/namespaceada_1_1idna.html#ad4ec90e439aa4453a705d0e4e26d493d":[7,0,0,3,55],
-"d5/ddb/namespaceada_1_1idna.html#ada325b61431cf2aa7414dbfcd8e9c391":[7,0,0,3,5],
-"d5/ddb/namespaceada_1_1idna.html#ae3c6519de00a8711290d24453721b0e7":[7,0,0,3,52]
+"d5/ddb/namespaceada_1_1idna.html#ac7ad7c23c6223982a88d1f079a2e6e97":[7,0,0,3,8],
+"d5/ddb/namespaceada_1_1idna.html#acc44ee8cb1484d14560236b659e12565":[7,0,0,3,22],
+"d5/ddb/namespaceada_1_1idna.html#acdcde57bdbb6064aa3958878ae5f62f6":[7,0,0,3,54],
+"d5/ddb/namespaceada_1_1idna.html#ad2a2a6422a2c30b768e64caa35c39020":[7,0,0,3,60],
+"d5/ddb/namespaceada_1_1idna.html#ad39325463bccb5615ad4aafb3f45ddd6":[7,0,0,3,57],
+"d5/ddb/namespaceada_1_1idna.html#ad4ec90e439aa4453a705d0e4e26d493d":[7,0,0,3,53],
+"d5/ddb/namespaceada_1_1idna.html#ae3c6519de00a8711290d24453721b0e7":[7,0,0,3,50],
+"d5/ddb/namespaceada_1_1idna.html#ae3fa7abe424f63e3595039e90e3c316a":[7,0,0,3,32],
+"d5/ddb/namespaceada_1_1idna.html#af593f5293a356a9fc9bb3878a96b3eae":[7,0,0,3,33]
};
diff --git a/navtreeindex1.js b/navtreeindex1.js
index 76f8bd33a..c538d0925 100644
--- a/navtreeindex1.js
+++ b/navtreeindex1.js
@@ -1,7 +1,5 @@
var NAVTREEINDEX1 =
{
-"d5/ddb/namespaceada_1_1idna.html#ae3fa7abe424f63e3595039e90e3c316a":[7,0,0,3,34],
-"d5/ddb/namespaceada_1_1idna.html#af593f5293a356a9fc9bb3878a96b3eae":[7,0,0,3,35],
"d5/dee/url-setters_8cpp.html":[9,0,3,10],
"d5/dee/url-setters_8cpp_source.html":[9,0,3,10],
"d5/df0/ada__c_8c.html":[9,0,1,0],
@@ -249,5 +247,7 @@ var NAVTREEINDEX1 =
"da/dac/url__search__params_8h.html#a0221646aa68b66f5dd447ea589c988a3":[9,0,2,0,25,5],
"da/dac/url__search__params_8h.html#a27b44c690edb4b609f8d0a2d7e7475ae":[9,0,2,0,25,3],
"da/dac/url__search__params_8h.html#a663e90222ab2aa9380ddf76bf055b2ad":[9,0,2,0,25,4],
-"da/dac/url__search__params_8h.html#aae48bce1c55d1bfd1b41bd2a64d5eb23":[9,0,2,0,25,6]
+"da/dac/url__search__params_8h.html#aae48bce1c55d1bfd1b41bd2a64d5eb23":[9,0,2,0,25,6],
+"da/dac/url__search__params_8h.html#aae48bce1c55d1bfd1b41bd2a64d5eb23a16120b23bf34ca6ac1ab8c5dee69bf33":[9,0,2,0,25,6,2],
+"da/dac/url__search__params_8h.html#aae48bce1c55d1bfd1b41bd2a64d5eb23a48fb38e1f876fa3dc9c8cd6cad73c243":[9,0,2,0,25,6,0]
};
diff --git a/navtreeindex2.js b/navtreeindex2.js
index 2b7e9096c..cd5ad01e6 100644
--- a/navtreeindex2.js
+++ b/navtreeindex2.js
@@ -1,64 +1,61 @@
var NAVTREEINDEX2 =
{
-"da/dac/url__search__params_8h.html#aae48bce1c55d1bfd1b41bd2a64d5eb23a16120b23bf34ca6ac1ab8c5dee69bf33":[9,0,2,0,25,6,2],
-"da/dac/url__search__params_8h.html#aae48bce1c55d1bfd1b41bd2a64d5eb23a48fb38e1f876fa3dc9c8cd6cad73c243":[9,0,2,0,25,6,0],
"da/dac/url__search__params_8h.html#aae48bce1c55d1bfd1b41bd2a64d5eb23ab7db4588385c4fc7ed5211c35c711598":[9,0,2,0,25,6,1],
"da/dac/url__search__params_8h.html#ac15176b2a757ccdfdec97ec4ca67ba88":[9,0,2,0,25,2],
"da/dac/url__search__params_8h_source.html":[9,0,2,0,25],
"db/d2e/ada__idna_8cpp.html":[9,0,3,2],
-"db/d2e/ada__idna_8cpp.html#a03db2791270405a5c682305c18c5d1cf":[9,0,3,2,10],
-"db/d2e/ada__idna_8cpp.html#a04152d08ff9b28a79096f98f9741ab8a":[9,0,3,2,43],
-"db/d2e/ada__idna_8cpp.html#a07dc07ec6be862cf01e910353dcb481e":[9,0,3,2,55],
-"db/d2e/ada__idna_8cpp.html#a0d1e1182a7cae8b4c1063dbc7614f88f":[9,0,3,2,38],
+"db/d2e/ada__idna_8cpp.html#a03db2791270405a5c682305c18c5d1cf":[9,0,3,2,8],
+"db/d2e/ada__idna_8cpp.html#a04152d08ff9b28a79096f98f9741ab8a":[9,0,3,2,41],
+"db/d2e/ada__idna_8cpp.html#a07dc07ec6be862cf01e910353dcb481e":[9,0,3,2,53],
+"db/d2e/ada__idna_8cpp.html#a0d1e1182a7cae8b4c1063dbc7614f88f":[9,0,3,2,36],
"db/d2e/ada__idna_8cpp.html#a10ef8e085520b93791eef38bdabf5941":[9,0,3,2,6],
-"db/d2e/ada__idna_8cpp.html#a1273085e8773bf04ccd97128cd3db1e0":[9,0,3,2,13],
-"db/d2e/ada__idna_8cpp.html#a164d095ce497ec0086fcd41e3f7e311e":[9,0,3,2,25],
-"db/d2e/ada__idna_8cpp.html#a2504167b83ba3ae4819f5d250ec0806d":[9,0,3,2,42],
-"db/d2e/ada__idna_8cpp.html#a2544de17d530836df29f7c7311f97d5e":[9,0,3,2,18],
-"db/d2e/ada__idna_8cpp.html#a256324be086f84ee56e21f9bff4acacf":[9,0,3,2,21],
-"db/d2e/ada__idna_8cpp.html#a273eb4809ead730a5835f426c059e7c7":[9,0,3,2,15],
+"db/d2e/ada__idna_8cpp.html#a1273085e8773bf04ccd97128cd3db1e0":[9,0,3,2,11],
+"db/d2e/ada__idna_8cpp.html#a164d095ce497ec0086fcd41e3f7e311e":[9,0,3,2,23],
+"db/d2e/ada__idna_8cpp.html#a2504167b83ba3ae4819f5d250ec0806d":[9,0,3,2,40],
+"db/d2e/ada__idna_8cpp.html#a2544de17d530836df29f7c7311f97d5e":[9,0,3,2,16],
+"db/d2e/ada__idna_8cpp.html#a256324be086f84ee56e21f9bff4acacf":[9,0,3,2,19],
+"db/d2e/ada__idna_8cpp.html#a273eb4809ead730a5835f426c059e7c7":[9,0,3,2,13],
"db/d2e/ada__idna_8cpp.html#a28815dfd4e31facb82c56c817dd1067f":[9,0,3,2,4],
-"db/d2e/ada__idna_8cpp.html#a28e25a08ef5ab3b8c5e25f77e9340566":[9,0,3,2,14],
-"db/d2e/ada__idna_8cpp.html#a2a8649da4131912025f71c76e5483c6e":[9,0,3,2,45],
-"db/d2e/ada__idna_8cpp.html#a2cfd434e37cade8764f29cc4d722b70f":[9,0,3,2,28],
+"db/d2e/ada__idna_8cpp.html#a28e25a08ef5ab3b8c5e25f77e9340566":[9,0,3,2,12],
+"db/d2e/ada__idna_8cpp.html#a2a8649da4131912025f71c76e5483c6e":[9,0,3,2,43],
+"db/d2e/ada__idna_8cpp.html#a2cfd434e37cade8764f29cc4d722b70f":[9,0,3,2,26],
"db/d2e/ada__idna_8cpp.html#a3a25ba82c407ebffcbc7cae1f2b20098":[9,0,3,2,2],
-"db/d2e/ada__idna_8cpp.html#a3d7c9bfeb83a88063623160ae2887574":[9,0,3,2,51],
+"db/d2e/ada__idna_8cpp.html#a3d7c9bfeb83a88063623160ae2887574":[9,0,3,2,49],
"db/d2e/ada__idna_8cpp.html#a3e0cb8abb7a779921adaf54930dbdb07":[9,0,3,2,1],
-"db/d2e/ada__idna_8cpp.html#a3f4b1dede3010b9e5173fd8c91227ec0":[9,0,3,2,32],
-"db/d2e/ada__idna_8cpp.html#a4137d2ecd3d2921846af696d6611aed9":[9,0,3,2,65],
-"db/d2e/ada__idna_8cpp.html#a43afa026d0aeb1a48e7ed8e2ca90d387":[9,0,3,2,40],
-"db/d2e/ada__idna_8cpp.html#a43b333f48581059d57dbbba4e5b13e9a":[9,0,3,2,34],
-"db/d2e/ada__idna_8cpp.html#a4af64ef680c616c7ce410932d8474afa":[9,0,3,2,49],
-"db/d2e/ada__idna_8cpp.html#a50bfbde0795e1b69056b441b888f3514":[9,0,3,2,29],
-"db/d2e/ada__idna_8cpp.html#a59287719010e9172d71163ba81d20d71":[9,0,3,2,39],
-"db/d2e/ada__idna_8cpp.html#a63497445165fe20b9ecc26c791f1de55":[9,0,3,2,60],
-"db/d2e/ada__idna_8cpp.html#a66015ea551d99b27023cc184e74ba63d":[9,0,3,2,22],
-"db/d2e/ada__idna_8cpp.html#a66bd7d6170f3e06b968c739e40a35967":[9,0,3,2,27],
-"db/d2e/ada__idna_8cpp.html#a6b4fd5ad887b44c75b6961aab3698bdb":[9,0,3,2,50],
-"db/d2e/ada__idna_8cpp.html#a6d4de1059fd64ba439f93e082d39e49b":[9,0,3,2,53],
-"db/d2e/ada__idna_8cpp.html#a705c21b2e695ed27a12de6e7419cb540":[9,0,3,2,16],
-"db/d2e/ada__idna_8cpp.html#a742b05e0aba2245da3ac0ffd9ec678b6":[9,0,3,2,33],
-"db/d2e/ada__idna_8cpp.html#a750c9c5e17eb8805d72a7a64c652c60c":[9,0,3,2,48],
-"db/d2e/ada__idna_8cpp.html#a75ee37a3911b0ce4d2563842a654a920":[9,0,3,2,52],
-"db/d2e/ada__idna_8cpp.html#a76ba8c375d368a14a5b009138b882859":[9,0,3,2,47],
-"db/d2e/ada__idna_8cpp.html#a7a9b9104fed112133289d3f67bb94b0a":[9,0,3,2,41],
-"db/d2e/ada__idna_8cpp.html#a7d88f623d0a7e056cc89920b20e13dde":[9,0,3,2,30],
-"db/d2e/ada__idna_8cpp.html#a7d9aecb5815cce8db291ed12d5d1774f":[9,0,3,2,31],
-"db/d2e/ada__idna_8cpp.html#a7f00835963b691723cdc2383bb362199":[9,0,3,2,56],
-"db/d2e/ada__idna_8cpp.html#a8c81c2acabc058ce6376560052072984":[9,0,3,2,20],
-"db/d2e/ada__idna_8cpp.html#a939fc0c16e2a4fe433685bcd44ad9c75":[9,0,3,2,19],
-"db/d2e/ada__idna_8cpp.html#aa39f46b87bed904cd88981b4531d475f":[9,0,3,2,17],
-"db/d2e/ada__idna_8cpp.html#aa916f8c8a88981da489e29cd954047c5":[9,0,3,2,44],
-"db/d2e/ada__idna_8cpp.html#aa9d13586049e9e107a2d372eeb81ddfc":[9,0,3,2,23],
-"db/d2e/ada__idna_8cpp.html#aab19eab266847496402079e77f5ffa93":[9,0,3,2,63],
-"db/d2e/ada__idna_8cpp.html#ab0f41d0b74696b2698bab08f36251526":[9,0,3,2,46],
-"db/d2e/ada__idna_8cpp.html#ab156a495c05e66e0ed42a69d71d2c588":[9,0,3,2,62],
-"db/d2e/ada__idna_8cpp.html#ab32141007e2a5423ea8cf91f849b9d39":[9,0,3,2,8],
-"db/d2e/ada__idna_8cpp.html#ab4504379d0bcd88ac427b8b70062d166":[9,0,3,2,59],
-"db/d2e/ada__idna_8cpp.html#abf65afb975393474b917637a8ae045bb":[9,0,3,2,35],
-"db/d2e/ada__idna_8cpp.html#ac39ccead632e6f2bf5049d1b643c5e1c":[9,0,3,2,24],
-"db/d2e/ada__idna_8cpp.html#ac48f13e12efe5af075e58ca8ed4690ae":[9,0,3,2,9],
-"db/d2e/ada__idna_8cpp.html#ac50c30d0d051c6f5b6463cedd5eda8e1":[9,0,3,2,11],
+"db/d2e/ada__idna_8cpp.html#a3f4b1dede3010b9e5173fd8c91227ec0":[9,0,3,2,30],
+"db/d2e/ada__idna_8cpp.html#a4137d2ecd3d2921846af696d6611aed9":[9,0,3,2,63],
+"db/d2e/ada__idna_8cpp.html#a43afa026d0aeb1a48e7ed8e2ca90d387":[9,0,3,2,38],
+"db/d2e/ada__idna_8cpp.html#a43b333f48581059d57dbbba4e5b13e9a":[9,0,3,2,32],
+"db/d2e/ada__idna_8cpp.html#a4af64ef680c616c7ce410932d8474afa":[9,0,3,2,47],
+"db/d2e/ada__idna_8cpp.html#a50bfbde0795e1b69056b441b888f3514":[9,0,3,2,27],
+"db/d2e/ada__idna_8cpp.html#a59287719010e9172d71163ba81d20d71":[9,0,3,2,37],
+"db/d2e/ada__idna_8cpp.html#a63497445165fe20b9ecc26c791f1de55":[9,0,3,2,58],
+"db/d2e/ada__idna_8cpp.html#a66015ea551d99b27023cc184e74ba63d":[9,0,3,2,20],
+"db/d2e/ada__idna_8cpp.html#a66bd7d6170f3e06b968c739e40a35967":[9,0,3,2,25],
+"db/d2e/ada__idna_8cpp.html#a6b4fd5ad887b44c75b6961aab3698bdb":[9,0,3,2,48],
+"db/d2e/ada__idna_8cpp.html#a6d4de1059fd64ba439f93e082d39e49b":[9,0,3,2,51],
+"db/d2e/ada__idna_8cpp.html#a705c21b2e695ed27a12de6e7419cb540":[9,0,3,2,14],
+"db/d2e/ada__idna_8cpp.html#a742b05e0aba2245da3ac0ffd9ec678b6":[9,0,3,2,31],
+"db/d2e/ada__idna_8cpp.html#a750c9c5e17eb8805d72a7a64c652c60c":[9,0,3,2,46],
+"db/d2e/ada__idna_8cpp.html#a75ee37a3911b0ce4d2563842a654a920":[9,0,3,2,50],
+"db/d2e/ada__idna_8cpp.html#a76ba8c375d368a14a5b009138b882859":[9,0,3,2,45],
+"db/d2e/ada__idna_8cpp.html#a7a9b9104fed112133289d3f67bb94b0a":[9,0,3,2,39],
+"db/d2e/ada__idna_8cpp.html#a7d88f623d0a7e056cc89920b20e13dde":[9,0,3,2,28],
+"db/d2e/ada__idna_8cpp.html#a7d9aecb5815cce8db291ed12d5d1774f":[9,0,3,2,29],
+"db/d2e/ada__idna_8cpp.html#a7f00835963b691723cdc2383bb362199":[9,0,3,2,54],
+"db/d2e/ada__idna_8cpp.html#a8c81c2acabc058ce6376560052072984":[9,0,3,2,18],
+"db/d2e/ada__idna_8cpp.html#a939fc0c16e2a4fe433685bcd44ad9c75":[9,0,3,2,17],
+"db/d2e/ada__idna_8cpp.html#aa39f46b87bed904cd88981b4531d475f":[9,0,3,2,15],
+"db/d2e/ada__idna_8cpp.html#aa916f8c8a88981da489e29cd954047c5":[9,0,3,2,42],
+"db/d2e/ada__idna_8cpp.html#aa9d13586049e9e107a2d372eeb81ddfc":[9,0,3,2,21],
+"db/d2e/ada__idna_8cpp.html#aab19eab266847496402079e77f5ffa93":[9,0,3,2,61],
+"db/d2e/ada__idna_8cpp.html#ab0f41d0b74696b2698bab08f36251526":[9,0,3,2,44],
+"db/d2e/ada__idna_8cpp.html#ab156a495c05e66e0ed42a69d71d2c588":[9,0,3,2,60],
+"db/d2e/ada__idna_8cpp.html#ab4504379d0bcd88ac427b8b70062d166":[9,0,3,2,57],
+"db/d2e/ada__idna_8cpp.html#abf65afb975393474b917637a8ae045bb":[9,0,3,2,33],
+"db/d2e/ada__idna_8cpp.html#ac39ccead632e6f2bf5049d1b643c5e1c":[9,0,3,2,22],
+"db/d2e/ada__idna_8cpp.html#ac48f13e12efe5af075e58ca8ed4690ae":[9,0,3,2,7],
+"db/d2e/ada__idna_8cpp.html#ac50c30d0d051c6f5b6463cedd5eda8e1":[9,0,3,2,9],
"db/d2e/ada__idna_8cpp.html#ac6f73440f8dc6ef6ecd14b7a3a836b21":[9,0,3,2,5],
"db/d2e/ada__idna_8cpp.html#ac7495198fe0aa95543b347ac9cc548dd":[9,0,3,2,3],
"db/d2e/ada__idna_8cpp.html#ac7495198fe0aa95543b347ac9cc548dda048e5fd9489bae6b90f663e1c2ec2de4":[9,0,3,2,3,15],
@@ -85,16 +82,15 @@ var NAVTREEINDEX2 =
"db/d2e/ada__idna_8cpp.html#ac7495198fe0aa95543b347ac9cc548ddae67f79836e686d27f598076f417de917":[9,0,3,2,3,17],
"db/d2e/ada__idna_8cpp.html#ac7495198fe0aa95543b347ac9cc548ddaeb2cbb55b27f9f73c1655413f1df1d19":[9,0,3,2,3,1],
"db/d2e/ada__idna_8cpp.html#ac7495198fe0aa95543b347ac9cc548ddafc48151aee9d9d0dce07468e47f7fd7a":[9,0,3,2,3,11],
-"db/d2e/ada__idna_8cpp.html#ac7ad7c23c6223982a88d1f079a2e6e97":[9,0,3,2,12],
-"db/d2e/ada__idna_8cpp.html#acc44ee8cb1484d14560236b659e12565":[9,0,3,2,26],
-"db/d2e/ada__idna_8cpp.html#acdcde57bdbb6064aa3958878ae5f62f6":[9,0,3,2,58],
-"db/d2e/ada__idna_8cpp.html#ad2a2a6422a2c30b768e64caa35c39020":[9,0,3,2,64],
-"db/d2e/ada__idna_8cpp.html#ad39325463bccb5615ad4aafb3f45ddd6":[9,0,3,2,61],
-"db/d2e/ada__idna_8cpp.html#ad4ec90e439aa4453a705d0e4e26d493d":[9,0,3,2,57],
-"db/d2e/ada__idna_8cpp.html#ada325b61431cf2aa7414dbfcd8e9c391":[9,0,3,2,7],
-"db/d2e/ada__idna_8cpp.html#ae3c6519de00a8711290d24453721b0e7":[9,0,3,2,54],
-"db/d2e/ada__idna_8cpp.html#ae3fa7abe424f63e3595039e90e3c316a":[9,0,3,2,36],
-"db/d2e/ada__idna_8cpp.html#af593f5293a356a9fc9bb3878a96b3eae":[9,0,3,2,37],
+"db/d2e/ada__idna_8cpp.html#ac7ad7c23c6223982a88d1f079a2e6e97":[9,0,3,2,10],
+"db/d2e/ada__idna_8cpp.html#acc44ee8cb1484d14560236b659e12565":[9,0,3,2,24],
+"db/d2e/ada__idna_8cpp.html#acdcde57bdbb6064aa3958878ae5f62f6":[9,0,3,2,56],
+"db/d2e/ada__idna_8cpp.html#ad2a2a6422a2c30b768e64caa35c39020":[9,0,3,2,62],
+"db/d2e/ada__idna_8cpp.html#ad39325463bccb5615ad4aafb3f45ddd6":[9,0,3,2,59],
+"db/d2e/ada__idna_8cpp.html#ad4ec90e439aa4453a705d0e4e26d493d":[9,0,3,2,55],
+"db/d2e/ada__idna_8cpp.html#ae3c6519de00a8711290d24453721b0e7":[9,0,3,2,52],
+"db/d2e/ada__idna_8cpp.html#ae3fa7abe424f63e3595039e90e3c316a":[9,0,3,2,34],
+"db/d2e/ada__idna_8cpp.html#af593f5293a356a9fc9bb3878a96b3eae":[9,0,3,2,35],
"db/d2e/ada__idna_8cpp_source.html":[9,0,3,2],
"db/d3b/state_8h.html":[9,0,2,0,14],
"db/d3b/state_8h.html#a3b7cc372b3ac372722c850ca149215d6":[9,0,2,0,14,1],
@@ -248,6 +244,10 @@ var NAVTREEINDEX2 =
"dd/d4c/ada__idna_8h.html#a0d819d87708524de1f5a4515f7f9f6d4":[9,0,2,0,0,6],
"dd/d4c/ada__idna_8h.html#a10ef8e085520b93791eef38bdabf5941":[9,0,2,0,0,8],
"dd/d4c/ada__idna_8h.html#a1aa558ee2cc89cbb7dff288c1c6c41e8":[9,0,2,0,0,1],
-"dd/d4c/ada__idna_8h.html#a256324be086f84ee56e21f9bff4acacf":[9,0,2,0,0,12],
-"dd/d4c/ada__idna_8h.html#a2cfd434e37cade8764f29cc4d722b70f":[9,0,2,0,0,17]
+"dd/d4c/ada__idna_8h.html#a256324be086f84ee56e21f9bff4acacf":[9,0,2,0,0,10],
+"dd/d4c/ada__idna_8h.html#a2cfd434e37cade8764f29cc4d722b70f":[9,0,2,0,0,15],
+"dd/d4c/ada__idna_8h.html#a3f4b1dede3010b9e5173fd8c91227ec0":[9,0,2,0,0,18],
+"dd/d4c/ada__idna_8h.html#a43b333f48581059d57dbbba4e5b13e9a":[9,0,2,0,0,20],
+"dd/d4c/ada__idna_8h.html#a64c312344c7a988a09eacdd12fc4fe5d":[9,0,2,0,0,0],
+"dd/d4c/ada__idna_8h.html#a66015ea551d99b27023cc184e74ba63d":[9,0,2,0,0,11]
};
diff --git a/navtreeindex3.js b/navtreeindex3.js
index 47fbab548..00543e926 100644
--- a/navtreeindex3.js
+++ b/navtreeindex3.js
@@ -1,26 +1,20 @@
var NAVTREEINDEX3 =
{
-"dd/d4c/ada__idna_8h.html#a3f4b1dede3010b9e5173fd8c91227ec0":[9,0,2,0,0,20],
-"dd/d4c/ada__idna_8h.html#a43b333f48581059d57dbbba4e5b13e9a":[9,0,2,0,0,22],
-"dd/d4c/ada__idna_8h.html#a64c312344c7a988a09eacdd12fc4fe5d":[9,0,2,0,0,0],
-"dd/d4c/ada__idna_8h.html#a66015ea551d99b27023cc184e74ba63d":[9,0,2,0,0,13],
-"dd/d4c/ada__idna_8h.html#a66bd7d6170f3e06b968c739e40a35967":[9,0,2,0,0,16],
-"dd/d4c/ada__idna_8h.html#a742b05e0aba2245da3ac0ffd9ec678b6":[9,0,2,0,0,21],
+"dd/d4c/ada__idna_8h.html#a66bd7d6170f3e06b968c739e40a35967":[9,0,2,0,0,14],
+"dd/d4c/ada__idna_8h.html#a742b05e0aba2245da3ac0ffd9ec678b6":[9,0,2,0,0,19],
"dd/d4c/ada__idna_8h.html#a7c51f02c4cff8d8f66171c2c8716f5df":[9,0,2,0,0,5],
-"dd/d4c/ada__idna_8h.html#a7d88f623d0a7e056cc89920b20e13dde":[9,0,2,0,0,18],
-"dd/d4c/ada__idna_8h.html#a7d9aecb5815cce8db291ed12d5d1774f":[9,0,2,0,0,19],
+"dd/d4c/ada__idna_8h.html#a7d88f623d0a7e056cc89920b20e13dde":[9,0,2,0,0,16],
+"dd/d4c/ada__idna_8h.html#a7d9aecb5815cce8db291ed12d5d1774f":[9,0,2,0,0,17],
"dd/d4c/ada__idna_8h.html#a9662a57a85b4be7cbefd946734024fe6":[9,0,2,0,0,4],
"dd/d4c/ada__idna_8h.html#a9942f3702efabf632ba34ecd609e211c":[9,0,2,0,0,3],
"dd/d4c/ada__idna_8h.html#aaa7c2ae34181ce7dd06159e254304596":[9,0,2,0,0,2],
-"dd/d4c/ada__idna_8h.html#ab32141007e2a5423ea8cf91f849b9d39":[9,0,2,0,0,10],
-"dd/d4c/ada__idna_8h.html#abf65afb975393474b917637a8ae045bb":[9,0,2,0,0,23],
-"dd/d4c/ada__idna_8h.html#ac39ccead632e6f2bf5049d1b643c5e1c":[9,0,2,0,0,14],
+"dd/d4c/ada__idna_8h.html#abf65afb975393474b917637a8ae045bb":[9,0,2,0,0,21],
+"dd/d4c/ada__idna_8h.html#ac39ccead632e6f2bf5049d1b643c5e1c":[9,0,2,0,0,12],
"dd/d4c/ada__idna_8h.html#ac6f73440f8dc6ef6ecd14b7a3a836b21":[9,0,2,0,0,7],
-"dd/d4c/ada__idna_8h.html#ac7ad7c23c6223982a88d1f079a2e6e97":[9,0,2,0,0,11],
-"dd/d4c/ada__idna_8h.html#acc44ee8cb1484d14560236b659e12565":[9,0,2,0,0,15],
-"dd/d4c/ada__idna_8h.html#ada325b61431cf2aa7414dbfcd8e9c391":[9,0,2,0,0,9],
-"dd/d4c/ada__idna_8h.html#ae3fa7abe424f63e3595039e90e3c316a":[9,0,2,0,0,24],
-"dd/d4c/ada__idna_8h.html#af593f5293a356a9fc9bb3878a96b3eae":[9,0,2,0,0,25],
+"dd/d4c/ada__idna_8h.html#ac7ad7c23c6223982a88d1f079a2e6e97":[9,0,2,0,0,9],
+"dd/d4c/ada__idna_8h.html#acc44ee8cb1484d14560236b659e12565":[9,0,2,0,0,13],
+"dd/d4c/ada__idna_8h.html#ae3fa7abe424f63e3595039e90e3c316a":[9,0,2,0,0,22],
+"dd/d4c/ada__idna_8h.html#af593f5293a356a9fc9bb3878a96b3eae":[9,0,2,0,0,23],
"dd/d4c/ada__idna_8h_source.html":[9,0,2,0,0],
"dd/d64/namespaceada.html":[7,0,0],
"dd/d64/namespaceada.html#a0221646aa68b66f5dd447ea589c988a3":[7,0,0,18],
@@ -249,5 +243,11 @@ var NAVTREEINDEX3 =
"dd/dd6/ada__c_8cpp.html#ad3323e027f014a8b302c680198e11492":[9,0,3,1,44],
"dd/dd6/ada__c_8cpp.html#ad4b436a85d4ef55293361f90ea8ffc48":[9,0,3,1,67],
"dd/dd6/ada__c_8cpp.html#ad80e19d1dd8d0b2b4831cdf2519fb184":[9,0,3,1,74],
-"dd/dd6/ada__c_8cpp.html#adc241ad1595c427a589e61a561a3f916":[9,0,3,1,85]
+"dd/dd6/ada__c_8cpp.html#adc241ad1595c427a589e61a561a3f916":[9,0,3,1,85],
+"dd/dd6/ada__c_8cpp.html#adf43435636b3ff65d12c74dee86d9da0":[9,0,3,1,59],
+"dd/dd6/ada__c_8cpp.html#ae17f46b5b5cd69a0608fbf1d5aabc545":[9,0,3,1,73],
+"dd/dd6/ada__c_8cpp.html#ae4c399eed2d7eafdb4263147a653d1e1":[9,0,3,1,60],
+"dd/dd6/ada__c_8cpp.html#ae6b8b22187c2379cd9331d16a6cd4f8f":[9,0,3,1,42],
+"dd/dd6/ada__c_8cpp.html#ae8b223fca129426568ba6476e2cd5a4c":[9,0,3,1,9],
+"dd/dd6/ada__c_8cpp.html#aeaf6867f8c367b98291f141ac7b0ac99":[9,0,3,1,66]
};
diff --git a/navtreeindex4.js b/navtreeindex4.js
index 0cf29fb3c..ffb4e90e9 100644
--- a/navtreeindex4.js
+++ b/navtreeindex4.js
@@ -1,11 +1,5 @@
var NAVTREEINDEX4 =
{
-"dd/dd6/ada__c_8cpp.html#adf43435636b3ff65d12c74dee86d9da0":[9,0,3,1,59],
-"dd/dd6/ada__c_8cpp.html#ae17f46b5b5cd69a0608fbf1d5aabc545":[9,0,3,1,73],
-"dd/dd6/ada__c_8cpp.html#ae4c399eed2d7eafdb4263147a653d1e1":[9,0,3,1,60],
-"dd/dd6/ada__c_8cpp.html#ae6b8b22187c2379cd9331d16a6cd4f8f":[9,0,3,1,42],
-"dd/dd6/ada__c_8cpp.html#ae8b223fca129426568ba6476e2cd5a4c":[9,0,3,1,9],
-"dd/dd6/ada__c_8cpp.html#aeaf6867f8c367b98291f141ac7b0ac99":[9,0,3,1,66],
"dd/dd6/ada__c_8cpp.html#aec5b9e4136a5d73716cf84a9da656789":[9,0,3,1,64],
"dd/dd6/ada__c_8cpp.html#af0f52b45140d99995d144ebf4b9d591a":[9,0,3,1,14],
"dd/dd6/ada__c_8cpp.html#afefee1972fe326cbcd42dbbf5887109d":[9,0,3,1,36],
diff --git a/search/all_2.js b/search/all_2.js
index 00628485c..d73dab782 100644
--- a/search/all_2.js
+++ b/search/all_2.js
@@ -4,11 +4,10 @@ var searchData=
['back_1',['back',['../dd/dcb/structada_1_1url__search__params.html#a40041db87e2c4c51a5dd22e9b90aef1c',1,'ada::url_search_params']]],
['base_2',['base',['../d5/ddb/namespaceada_1_1idna.html#a0d1e1182a7cae8b4c1063dbc7614f88f',1,'ada::idna']]],
['begin_3',['begin',['../dd/dcb/structada_1_1url__search__params.html#a0f1a43af8f4f062deeff1453383d3c90',1,'ada::url_search_params']]],
- ['begins_5fwith_4',['begins_with',['../d5/ddb/namespaceada_1_1idna.html#ab32141007e2a5423ea8cf91f849b9d39',1,'ada::idna::begins_with(std::u32string_view view, std::u32string_view prefix)'],['../d5/ddb/namespaceada_1_1idna.html#ada325b61431cf2aa7414dbfcd8e9c391',1,'ada::idna::begins_with(std::string_view view, std::string_view prefix)']]],
- ['benchmark_20runner_5',['Benchmark Runner',['../db/d8a/md_docs_2cli.html#autotoc_md8',1,'']]],
- ['bindings_20of_20ada_6',['Bindings of Ada',['../index.html#autotoc_md15',1,'']]],
- ['bit_5fat_7',['bit_at',['../d7/d35/namespaceada_1_1character__sets.html#a2ca6a9b8234902d944f7a052fdf9935f',1,'ada::character_sets']]],
- ['bn_8',['BN',['../d5/ddb/namespaceada_1_1idna.html#ac7495198fe0aa95543b347ac9cc548ddaeb2cbb55b27f9f73c1655413f1df1d19',1,'ada::idna']]],
- ['broadcast_9',['broadcast',['../d2/dc3/namespaceada_1_1unicode.html#a6ed16a9339ab5625b761e534b10fce84',1,'ada::unicode']]],
- ['building_10',['Building',['../index.html#autotoc_md24',1,'']]]
+ ['benchmark_20runner_4',['Benchmark Runner',['../db/d8a/md_docs_2cli.html#autotoc_md8',1,'']]],
+ ['bindings_20of_20ada_5',['Bindings of Ada',['../index.html#autotoc_md15',1,'']]],
+ ['bit_5fat_6',['bit_at',['../d7/d35/namespaceada_1_1character__sets.html#a2ca6a9b8234902d944f7a052fdf9935f',1,'ada::character_sets']]],
+ ['bn_7',['BN',['../d5/ddb/namespaceada_1_1idna.html#ac7495198fe0aa95543b347ac9cc548ddaeb2cbb55b27f9f73c1655413f1df1d19',1,'ada::idna']]],
+ ['broadcast_8',['broadcast',['../d2/dc3/namespaceada_1_1unicode.html#a6ed16a9339ab5625b761e534b10fce84',1,'ada::unicode']]],
+ ['building_9',['Building',['../index.html#autotoc_md24',1,'']]]
];
diff --git a/search/functions_1.js b/search/functions_1.js
index 7b85d4aa1..ba0ccf1ad 100644
--- a/search/functions_1.js
+++ b/search/functions_1.js
@@ -2,7 +2,6 @@ var searchData=
[
['back_0',['back',['../dd/dcb/structada_1_1url__search__params.html#a40041db87e2c4c51a5dd22e9b90aef1c',1,'ada::url_search_params']]],
['begin_1',['begin',['../dd/dcb/structada_1_1url__search__params.html#a0f1a43af8f4f062deeff1453383d3c90',1,'ada::url_search_params']]],
- ['begins_5fwith_2',['begins_with',['../d5/ddb/namespaceada_1_1idna.html#ab32141007e2a5423ea8cf91f849b9d39',1,'ada::idna::begins_with(std::u32string_view view, std::u32string_view prefix)'],['../d5/ddb/namespaceada_1_1idna.html#ada325b61431cf2aa7414dbfcd8e9c391',1,'ada::idna::begins_with(std::string_view view, std::string_view prefix)']]],
- ['bit_5fat_3',['bit_at',['../d7/d35/namespaceada_1_1character__sets.html#a2ca6a9b8234902d944f7a052fdf9935f',1,'ada::character_sets']]],
- ['broadcast_4',['broadcast',['../d2/dc3/namespaceada_1_1unicode.html#a6ed16a9339ab5625b761e534b10fce84',1,'ada::unicode']]]
+ ['bit_5fat_2',['bit_at',['../d7/d35/namespaceada_1_1character__sets.html#a2ca6a9b8234902d944f7a052fdf9935f',1,'ada::character_sets']]],
+ ['broadcast_3',['broadcast',['../d2/dc3/namespaceada_1_1unicode.html#a6ed16a9339ab5625b761e534b10fce84',1,'ada::unicode']]]
];