diff --git a/.gitignore b/.gitignore index a55558461b..e051c611ac 100644 --- a/.gitignore +++ b/.gitignore @@ -23,6 +23,7 @@ _aot_generated/ modules/dasSFML/libsfml/ site/ doc/sphinx-build/ +doc/source/stdlib/detail/ doc/source/__pycache__/ doc/source/_build/doctrees/environment.pickle doc/source/_build/ diff --git a/daslib/rst_comment.das b/daslib/rst_comment.das index a2fc2687b3..4011c22593 100644 --- a/daslib/rst_comment.das +++ b/daslib/rst_comment.das @@ -475,6 +475,7 @@ class RstComment : AstCommentReader { output = get_das_root() + "/doc/source/stdlib/detail/" } let fname = "{output}/{name}.rst" + mkdir(output) fopen(fname,"wb") <| $ ( f ) { if (f==null) { panic_rst("can't open {fname}") diff --git a/doc/source/reference/language/options.rst b/doc/source/reference/language/options.rst index 1488f751dd..c3b6869201 100644 --- a/doc/source/reference/language/options.rst +++ b/doc/source/reference/language/options.rst @@ -289,8 +289,11 @@ Safety and Strictness - Disallows ``unsafe``-ly uninitialized structures. * - ``unsafe_table_lookup`` - bool - - true - - Makes table lookup (``tab[key]``) an unsafe operation. + - false + - Makes table lookup (``tab[key]``) an unsafe operation. When ``false`` (default), + table lookups are safe but the compiler still detects dangerous patterns where + the same table is indexed multiple times in a single expression + (``table_lookup_collision`` lint error). * - ``relaxed_pointer_const`` - bool - false diff --git a/doc/source/reference/language/tables.rst b/doc/source/reference/language/tables.rst index 521e3165e7..000f8ecec7 100644 --- a/doc/source/reference/language/tables.rst +++ b/doc/source/reference/language/tables.rst @@ -20,20 +20,43 @@ Tables are associative containers implemented as a set of key/value pairs: tab["some"] = 20 // replaces the value for 'some' key } -Accessing a table element via the index operator is unsafe, because Daslang containers store unboxed values. +Daslang containers store unboxed values, so table lookups via the index operator (``tab[key]``) can +cause undefined behavior when the **same table** is referenced more than once in the **same expression**. Consider the following example: .. code-block:: das - tab["1"] = tab["2"] // this potentially breaks the table + tab["1"] = tab["2"] // ERROR: potential table lookup collision -What happens is table may get resized either after tab["1"] or tab["2"] if either key is missing (similar to C++ STL hash_map). +What happens is the table may get resized after either ``tab["1"]`` or ``tab["2"]`` if the key is missing +(similar to C++ STL hash_map), invalidating the reference returned by the other lookup. -It is possible to suppress this unsafe error via ``CodeOfPolicies``, or by using the following option: +The compiler detects this and reports a ``table_lookup_collision`` lint error. The check catches any +expression where the same table appears in two or more index operations that keep the result as a +reference (assignments, moves, clones). Value lookups (where the result is immediately copied out) +are safe and not flagged. + +Other dangerous patterns include: + +.. code-block:: das + + tab[1] := tab[2] // ERROR: clone between two lookups + tab[1] <- tab[2] // ERROR: move between two lookups + foo.tab[1] = foo.tab[2] // ERROR: same table via field access + +A single ``tab[key]`` in an expression is always safe. Multiple lookups of **different** tables in the +same expression are also safe: + +.. code-block:: das + + tab1[1] = tab2[2] // OK: different tables + +It is possible to make **all** table lookups unsafe (requiring an ``unsafe`` block) via ``CodeOfPolicies`` +or the following option: .. code-block:: das - options unsafe_table_lookup = false + options unsafe_table_lookup // makes every tab[key] require unsafe Safe navigation of the table is safe, since it does not create missing keys: diff --git a/doc/source/reference/language/unsafe.rst b/doc/source/reference/language/unsafe.rst index 710068f0d6..f460ea042f 100644 --- a/doc/source/reference/language/unsafe.rst +++ b/doc/source/reference/language/unsafe.rst @@ -171,10 +171,16 @@ They are typically controlled via CodeOfPolicies or appropriate option: .. code-block:: das - options unsafe_table_lookup = false // makes table indexing safe. refers to CodeOfPolicies::unsafe_table_lookup + options unsafe_table_lookup // makes ALL table indexing unsafe. refers to CodeOfPolicies::unsafe_table_lookup var tab <- { 1=>"one", 2=>"two" } - tab[3] = "three" // this is unsafe, since it can create a pointer to a temporary object + unsafe { + tab[3] = "three" // requires unsafe when unsafe_table_lookup is enabled + } + +By default ``unsafe_table_lookup`` is ``false`` — individual table lookups are safe. However, the compiler +still detects dangerous patterns where the same table is indexed more than once in a single expression +(see :ref:`Tables ` for details). .. seealso:: diff --git a/doc/source/stdlib/ast.rst b/doc/source/stdlib/ast.rst index d3664e77e7..7d627063c6 100644 --- a/doc/source/stdlib/ast.rst +++ b/doc/source/stdlib/ast.rst @@ -493,6 +493,8 @@ properties of the `ExprAt` object. * **under_clone** (0x10) - The expression is under a clone operation. + * **under_deref** (0x20) - The expression is under a dereference (ExprRef2Value), safe for table lookup collision detection. + .. _alias-ExprMakeLocalFlags: diff --git a/doc/source/stdlib/builtin.rst b/doc/source/stdlib/builtin.rst index 64fc7dc018..5d69cca8db 100644 --- a/doc/source/stdlib/builtin.rst +++ b/doc/source/stdlib/builtin.rst @@ -3348,3 +3348,18 @@ Notifies the compiler that ahead-of-time code generation is now in progress. ++++++++++++++ +Uncategorized ++++++++++++++ + +.. _function-builtin_with_argv_array_ls_anything_gr__block_ls__c_void_gr_: + +.. das:function:: with_argv(new_arguments: array; block: block<():void>) + +Sets ``argc``, ``argv`` to first argument, for the ``body`` block. + +:Arguments: * **new_arguments** : array implicit + + * **block** : block implicit + + diff --git a/doc/source/stdlib/detail/PUGIXML_boost.rst b/doc/source/stdlib/detail/PUGIXML_boost.rst deleted file mode 100644 index 459c2fee62..0000000000 --- a/doc/source/stdlib/detail/PUGIXML_boost.rst +++ /dev/null @@ -1,84 +0,0 @@ -.. |detail/function-PUGIXML_boost-for_each_child| replace:: to be documented in |detail/function-PUGIXML_boost-for_each_child|.rst - -.. |detail/function-PUGIXML_boost-for_each_attribute| replace:: to be documented in |detail/function-PUGIXML_boost-for_each_attribute|.rst - -.. |detail/function-PUGIXML_boost-for_each| replace:: to be documented in |detail/function-PUGIXML_boost-for_each|.rst - -.. |detail/function-PUGIXML_boost-each| replace:: to be documented in |detail/function-PUGIXML_boost-each|.rst - -.. |detail/function-PUGIXML_boost-each_child| replace:: to be documented in |detail/function-PUGIXML_boost-each_child|.rst - -.. |detail/function-PUGIXML_boost-each_attribute| replace:: to be documented in |detail/function-PUGIXML_boost-each_attribute|.rst - -.. |detail/function-PUGIXML_boost-open_xml| replace:: to be documented in |detail/function-PUGIXML_boost-open_xml|.rst - -.. |detail/function-PUGIXML_boost-parse_xml| replace:: to be documented in |detail/function-PUGIXML_boost-parse_xml|.rst - -.. |detail/function-PUGIXML_boost-with_doc| replace:: to be documented in |detail/function-PUGIXML_boost-with_doc|.rst - -.. |detail/function-PUGIXML_boost-[]| replace:: to be documented in |detail/function-PUGIXML_boost-[]|.rst - -.. |detail/function-PUGIXML_boost-node_text| replace:: to be documented in |detail/function-PUGIXML_boost-node_text|.rst - -.. |detail/function-PUGIXML_boost-node_attr| replace:: to be documented in |detail/function-PUGIXML_boost-node_attr|.rst - -.. |detail/function-PUGIXML_boost-node_attr_int| replace:: to be documented in |detail/function-PUGIXML_boost-node_attr_int|.rst - -.. |detail/function-PUGIXML_boost-node_attr_float| replace:: to be documented in |detail/function-PUGIXML_boost-node_attr_float|.rst - -.. |detail/function-PUGIXML_boost-node_attr_bool| replace:: to be documented in |detail/function-PUGIXML_boost-node_attr_bool|.rst - -.. |detail/function-PUGIXML_boost-add_child| replace:: to be documented in |detail/function-PUGIXML_boost-add_child|.rst - -.. |detail/function-PUGIXML_boost-add_child_ex| replace:: to be documented in |detail/function-PUGIXML_boost-add_child_ex|.rst - -.. |detail/function-PUGIXML_boost-add_attr| replace:: to be documented in |detail/function-PUGIXML_boost-add_attr|.rst - -.. |detail/function-PUGIXML_boost-tag| replace:: to be documented in |detail/function-PUGIXML_boost-tag|.rst - -.. |detail/function-PUGIXML_boost-attr| replace:: to be documented in |detail/function-PUGIXML_boost-attr|.rst - -.. |detail/function-PUGIXML_boost-to_string| replace:: to be documented in |detail/function-PUGIXML_boost-to_string|.rst - -.. |detail/function-PUGIXML_boost-`is`int| replace:: to be documented in |detail/function-PUGIXML_boost-`is`int|.rst - -.. |detail/function-PUGIXML_boost-`as`int| replace:: to be documented in |detail/function-PUGIXML_boost-`as`int|.rst - -.. |detail/function-PUGIXML_boost-`is`float| replace:: to be documented in |detail/function-PUGIXML_boost-`is`float|.rst - -.. |detail/function-PUGIXML_boost-`as`float| replace:: to be documented in |detail/function-PUGIXML_boost-`as`float|.rst - -.. |detail/function-PUGIXML_boost-`is`double| replace:: to be documented in |detail/function-PUGIXML_boost-`is`double|.rst - -.. |detail/function-PUGIXML_boost-`as`double| replace:: to be documented in |detail/function-PUGIXML_boost-`as`double|.rst - -.. |detail/function-PUGIXML_boost-`is`bool| replace:: to be documented in |detail/function-PUGIXML_boost-`is`bool|.rst - -.. |detail/function-PUGIXML_boost-`as`bool| replace:: to be documented in |detail/function-PUGIXML_boost-`as`bool|.rst - -.. |detail/function-PUGIXML_boost-`is`string| replace:: to be documented in |detail/function-PUGIXML_boost-`is`string|.rst - -.. |detail/function-PUGIXML_boost-`as`string| replace:: to be documented in |detail/function-PUGIXML_boost-`as`string|.rst - -.. |detail/function-PUGIXML_boost-`is`uint| replace:: to be documented in |detail/function-PUGIXML_boost-`is`uint|.rst - -.. |detail/function-PUGIXML_boost-`as`uint| replace:: to be documented in |detail/function-PUGIXML_boost-`as`uint|.rst - -.. |detail/function-PUGIXML_boost-`as`xml_node| replace:: to be documented in |detail/function-PUGIXML_boost-`as`xml_node|.rst - -.. |detail/function-PUGIXML_boost-with_xpath| replace:: to be documented in |detail/function-PUGIXML_boost-with_xpath|.rst - -.. |detail/function-PUGIXML_boost-select_text| replace:: to be documented in |detail/function-PUGIXML_boost-select_text|.rst - -.. |detail/function-PUGIXML_boost-select_value| replace:: to be documented in |detail/function-PUGIXML_boost-select_value|.rst - -.. |detail/function-PUGIXML_boost-for_each_select| replace:: to be documented in |detail/function-PUGIXML_boost-for_each_select|.rst - -.. |detail/function-PUGIXML_boost-from_XML| replace:: to be documented in |detail/function-PUGIXML_boost-from_XML|.rst - -.. |detail/function-PUGIXML_boost-XML_table| replace:: to be documented in |detail/function-PUGIXML_boost-XML_table|.rst - -.. |detail/function-PUGIXML_boost-XML| replace:: to be documented in |detail/function-PUGIXML_boost-XML|.rst - -.. |detail/function-PUGIXML_boost-to_XML| replace:: to be documented in |detail/function-PUGIXML_boost-to_XML|.rst - diff --git a/doc/source/stdlib/detail/algorithm.rst b/doc/source/stdlib/detail/algorithm.rst deleted file mode 100644 index c568f974f5..0000000000 --- a/doc/source/stdlib/detail/algorithm.rst +++ /dev/null @@ -1,42 +0,0 @@ -.. |detail/function-algorithm-unique| replace:: to be documented in |detail/function-algorithm-unique|.rst - -.. |detail/function-algorithm-sort_unique| replace:: to be documented in |detail/function-algorithm-sort_unique|.rst - -.. |detail/function-algorithm-reverse| replace:: to be documented in |detail/function-algorithm-reverse|.rst - -.. |detail/function-algorithm-combine| replace:: to be documented in |detail/function-algorithm-combine|.rst - -.. |detail/function-algorithm-lower_bound| replace:: to be documented in |detail/function-algorithm-lower_bound|.rst - -.. |detail/function-algorithm-binary_search| replace:: to be documented in |detail/function-algorithm-binary_search|.rst - -.. |detail/function-algorithm-upper_bound| replace:: to be documented in |detail/function-algorithm-upper_bound|.rst - -.. |detail/function-algorithm-equal_range| replace:: to be documented in |detail/function-algorithm-equal_range|.rst - -.. |detail/function-algorithm-erase_all| replace:: to be documented in |detail/function-algorithm-erase_all|.rst - -.. |detail/function-algorithm-fill| replace:: to be documented in |detail/function-algorithm-fill|.rst - -.. |detail/function-algorithm-is_sorted| replace:: to be documented in |detail/function-algorithm-is_sorted|.rst - -.. |detail/function-algorithm-rotate| replace:: to be documented in |detail/function-algorithm-rotate|.rst - -.. |detail/function-algorithm-min_element| replace:: to be documented in |detail/function-algorithm-min_element|.rst - -.. |detail/function-algorithm-max_element| replace:: to be documented in |detail/function-algorithm-max_element|.rst - -.. |detail/function-algorithm-topological_sort| replace:: to be documented in |detail/function-algorithm-topological_sort|.rst - -.. |detail/function-algorithm-intersection| replace:: to be documented in |detail/function-algorithm-intersection|.rst - -.. |detail/function-algorithm-union| replace:: to be documented in |detail/function-algorithm-union|.rst - -.. |detail/function-algorithm-difference| replace:: to be documented in |detail/function-algorithm-difference|.rst - -.. |detail/function-algorithm-identical| replace:: to be documented in |detail/function-algorithm-identical|.rst - -.. |detail/function-algorithm-symmetric_difference| replace:: to be documented in |detail/function-algorithm-symmetric_difference|.rst - -.. |detail/function-algorithm-is_subset| replace:: to be documented in |detail/function-algorithm-is_subset|.rst - diff --git a/doc/source/stdlib/detail/ansi_colors.rst b/doc/source/stdlib/detail/ansi_colors.rst deleted file mode 100644 index d5fcafd41e..0000000000 --- a/doc/source/stdlib/detail/ansi_colors.rst +++ /dev/null @@ -1,22 +0,0 @@ -.. |detail/function-ansi_colors-init_ansi_colors| replace:: to be documented in |detail/function-ansi_colors-init_ansi_colors|.rst - -.. |detail/function-ansi_colors-red_str| replace:: to be documented in |detail/function-ansi_colors-red_str|.rst - -.. |detail/function-ansi_colors-green_str| replace:: to be documented in |detail/function-ansi_colors-green_str|.rst - -.. |detail/function-ansi_colors-yellow_str| replace:: to be documented in |detail/function-ansi_colors-yellow_str|.rst - -.. |detail/function-ansi_colors-blue_str| replace:: to be documented in |detail/function-ansi_colors-blue_str|.rst - -.. |detail/function-ansi_colors-magenta_str| replace:: to be documented in |detail/function-ansi_colors-magenta_str|.rst - -.. |detail/function-ansi_colors-cyan_str| replace:: to be documented in |detail/function-ansi_colors-cyan_str|.rst - -.. |detail/function-ansi_colors-bold_str| replace:: to be documented in |detail/function-ansi_colors-bold_str|.rst - -.. |detail/function-ansi_colors-dim_str| replace:: to be documented in |detail/function-ansi_colors-dim_str|.rst - -.. |detail/function-ansi_colors-underline_str| replace:: to be documented in |detail/function-ansi_colors-underline_str|.rst - -.. |detail/function-ansi_colors-reset_str| replace:: to be documented in |detail/function-ansi_colors-reset_str|.rst - diff --git a/doc/source/stdlib/detail/apply.rst b/doc/source/stdlib/detail/apply.rst deleted file mode 100644 index 7440cd7adc..0000000000 --- a/doc/source/stdlib/detail/apply.rst +++ /dev/null @@ -1,4 +0,0 @@ -.. |detail/class-apply-ApplyMacro| replace:: to be documented in |detail/class-apply-ApplyMacro|.rst - -.. |detail/method-apply-ApplyMacro.visit| replace:: to be documented in |detail/method-apply-ApplyMacro.visit|.rst - diff --git a/doc/source/stdlib/detail/apply_in_context.rst b/doc/source/stdlib/detail/apply_in_context.rst deleted file mode 100644 index 29caf82772..0000000000 --- a/doc/source/stdlib/detail/apply_in_context.rst +++ /dev/null @@ -1,4 +0,0 @@ -.. |detail/class-apply_in_context-AppendCondAnnotation| replace:: to be documented in |detail/class-apply_in_context-AppendCondAnnotation|.rst - -.. |detail/method-apply_in_context-AppendCondAnnotation.patch| replace:: to be documented in |detail/method-apply_in_context-AppendCondAnnotation.patch|.rst - diff --git a/doc/source/stdlib/detail/archive.rst b/doc/source/stdlib/detail/archive.rst deleted file mode 100644 index 9d156b3729..0000000000 --- a/doc/source/stdlib/detail/archive.rst +++ /dev/null @@ -1,40 +0,0 @@ -.. |detail/class-archive-Serializer| replace:: to be documented in |detail/class-archive-Serializer|.rst - -.. |detail/method-archive-Serializer.write| replace:: to be documented in |detail/method-archive-Serializer.write|.rst - -.. |detail/method-archive-Serializer.read| replace:: to be documented in |detail/method-archive-Serializer.read|.rst - -.. |detail/method-archive-Serializer.error| replace:: to be documented in |detail/method-archive-Serializer.error|.rst - -.. |detail/method-archive-Serializer.OK| replace:: to be documented in |detail/method-archive-Serializer.OK|.rst - -.. |detail/class-archive-MemSerializer| replace:: to be documented in |detail/class-archive-MemSerializer|.rst - -.. |detail/method-archive-MemSerializer.write| replace:: to be documented in |detail/method-archive-MemSerializer.write|.rst - -.. |detail/method-archive-MemSerializer.read| replace:: to be documented in |detail/method-archive-MemSerializer.read|.rst - -.. |detail/method-archive-MemSerializer.error| replace:: to be documented in |detail/method-archive-MemSerializer.error|.rst - -.. |detail/method-archive-MemSerializer.OK| replace:: to be documented in |detail/method-archive-MemSerializer.OK|.rst - -.. |detail/method-archive-MemSerializer.extractData| replace:: to be documented in |detail/method-archive-MemSerializer.extractData|.rst - -.. |detail/method-archive-MemSerializer.getCopyOfData| replace:: to be documented in |detail/method-archive-MemSerializer.getCopyOfData|.rst - -.. |detail/method-archive-MemSerializer.getLastError| replace:: to be documented in |detail/method-archive-MemSerializer.getLastError|.rst - -.. |detail/structure-archive-Archive| replace:: to be documented in |detail/structure-archive-Archive|.rst - -.. |detail/function-archive-serialize| replace:: to be documented in |detail/function-archive-serialize|.rst - -.. |detail/function-archive-serialize_raw| replace:: to be documented in |detail/function-archive-serialize_raw|.rst - -.. |detail/function-archive-read_raw| replace:: to be documented in |detail/function-archive-read_raw|.rst - -.. |detail/function-archive-write_raw| replace:: to be documented in |detail/function-archive-write_raw|.rst - -.. |detail/function-archive-mem_archive_save| replace:: to be documented in |detail/function-archive-mem_archive_save|.rst - -.. |detail/function-archive-mem_archive_load| replace:: to be documented in |detail/function-archive-mem_archive_load|.rst - diff --git a/doc/source/stdlib/detail/array_boost.rst b/doc/source/stdlib/detail/array_boost.rst deleted file mode 100644 index 3bd6f3b007..0000000000 --- a/doc/source/stdlib/detail/array_boost.rst +++ /dev/null @@ -1,6 +0,0 @@ -.. |detail/function-array_boost-temp_array| replace:: to be documented in |detail/function-array_boost-temp_array|.rst - -.. |detail/function-array_boost-empty| replace:: to be documented in |detail/function-array_boost-empty|.rst - -.. |detail/function-array_boost-array_view| replace:: to be documented in |detail/function-array_boost-array_view|.rst - diff --git a/doc/source/stdlib/detail/assert_once.rst b/doc/source/stdlib/detail/assert_once.rst deleted file mode 100644 index b4391c56ae..0000000000 --- a/doc/source/stdlib/detail/assert_once.rst +++ /dev/null @@ -1,6 +0,0 @@ -.. |detail/class-assert_once-AssertOnceMacro| replace:: to be documented in |detail/class-assert_once-AssertOnceMacro|.rst - -.. |detail/method-assert_once-AssertOnceMacro.transform| replace:: to be documented in |detail/method-assert_once-AssertOnceMacro.transform|.rst - -.. |detail/function-assert_once-assert_once| replace:: to be documented in |detail/function-assert_once-assert_once|.rst - diff --git a/doc/source/stdlib/detail/ast.rst b/doc/source/stdlib/detail/ast.rst deleted file mode 100644 index 4a1b494582..0000000000 --- a/doc/source/stdlib/detail/ast.rst +++ /dev/null @@ -1,1576 +0,0 @@ -.. |handmade/typedef-ast-TypeDeclFlags| replace:: to be documented in |handmade/typedef-ast-TypeDeclFlags|.rst - -.. |handmade/typedef-ast-FieldDeclarationFlags| replace:: to be documented in |handmade/typedef-ast-FieldDeclarationFlags|.rst - -.. |handmade/typedef-ast-StructureFlags| replace:: to be documented in |handmade/typedef-ast-StructureFlags|.rst - -.. |handmade/typedef-ast-ExprGenFlags| replace:: to be documented in |handmade/typedef-ast-ExprGenFlags|.rst - -.. |handmade/typedef-ast-ExprLetFlags| replace:: to be documented in |handmade/typedef-ast-ExprLetFlags|.rst - -.. |handmade/typedef-ast-ExprFlags| replace:: to be documented in |handmade/typedef-ast-ExprFlags|.rst - -.. |handmade/typedef-ast-ExprPrintFlags| replace:: to be documented in |handmade/typedef-ast-ExprPrintFlags|.rst - -.. |handmade/typedef-ast-FunctionFlags| replace:: to be documented in |handmade/typedef-ast-FunctionFlags|.rst - -.. |handmade/typedef-ast-MoreFunctionFlags| replace:: to be documented in |handmade/typedef-ast-MoreFunctionFlags|.rst - -.. |handmade/typedef-ast-FunctionSideEffectFlags| replace:: to be documented in |handmade/typedef-ast-FunctionSideEffectFlags|.rst - -.. |handmade/typedef-ast-VariableFlags| replace:: to be documented in |handmade/typedef-ast-VariableFlags|.rst - -.. |handmade/typedef-ast-VariableAccessFlags| replace:: to be documented in |handmade/typedef-ast-VariableAccessFlags|.rst - -.. |handmade/typedef-ast-ExprBlockFlags| replace:: to be documented in |handmade/typedef-ast-ExprBlockFlags|.rst - -.. |handmade/typedef-ast-ExprAtFlags| replace:: to be documented in |handmade/typedef-ast-ExprAtFlags|.rst - -.. |handmade/typedef-ast-ExprMakeLocalFlags| replace:: to be documented in |handmade/typedef-ast-ExprMakeLocalFlags|.rst - -.. |handmade/typedef-ast-ExprAscendFlags| replace:: to be documented in |handmade/typedef-ast-ExprAscendFlags|.rst - -.. |handmade/typedef-ast-ExprCastFlags| replace:: to be documented in |handmade/typedef-ast-ExprCastFlags|.rst - -.. |handmade/typedef-ast-ExprVarFlags| replace:: to be documented in |handmade/typedef-ast-ExprVarFlags|.rst - -.. |handmade/typedef-ast-ExprMakeStructFlags| replace:: to be documented in |handmade/typedef-ast-ExprMakeStructFlags|.rst - -.. |handmade/typedef-ast-MakeFieldDeclFlags| replace:: to be documented in |handmade/typedef-ast-MakeFieldDeclFlags|.rst - -.. |handmade/typedef-ast-ExprFieldDerefFlags| replace:: to be documented in |handmade/typedef-ast-ExprFieldDerefFlags|.rst - -.. |handmade/typedef-ast-ExprFieldFieldFlags| replace:: to be documented in |handmade/typedef-ast-ExprFieldFieldFlags|.rst - -.. |handmade/typedef-ast-ExprSwizzleFieldFlags| replace:: to be documented in |handmade/typedef-ast-ExprSwizzleFieldFlags|.rst - -.. |handmade/typedef-ast-ExprYieldFlags| replace:: to be documented in |handmade/typedef-ast-ExprYieldFlags|.rst - -.. |handmade/typedef-ast-ExprReturnFlags| replace:: to be documented in |handmade/typedef-ast-ExprReturnFlags|.rst - -.. |handmade/typedef-ast-ExprMakeBlockFlags| replace:: to be documented in |handmade/typedef-ast-ExprMakeBlockFlags|.rst - -.. |handmade/typedef-ast-CopyFlags| replace:: to be documented in |handmade/typedef-ast-CopyFlags|.rst - -.. |handmade/typedef-ast-MoveFlags| replace:: to be documented in |handmade/typedef-ast-MoveFlags|.rst - -.. |handmade/typedef-ast-IfFlags| replace:: to be documented in |handmade/typedef-ast-IfFlags|.rst - -.. |handmade/typedef-ast-StringBuilderFlags| replace:: to be documented in |handmade/typedef-ast-StringBuilderFlags|.rst - -.. |handmade/typedef-ast-ExpressionPtr| replace:: to be documented in |handmade/typedef-ast-ExpressionPtr|.rst - -.. |handmade/typedef-ast-ProgramPtr| replace:: to be documented in |handmade/typedef-ast-ProgramPtr|.rst - -.. |handmade/typedef-ast-TypeDeclPtr| replace:: to be documented in |handmade/typedef-ast-TypeDeclPtr|.rst - -.. |handmade/typedef-ast-VectorTypeDeclPtr| replace:: to be documented in |handmade/typedef-ast-VectorTypeDeclPtr|.rst - -.. |handmade/typedef-ast-EnumerationPtr| replace:: to be documented in |handmade/typedef-ast-EnumerationPtr|.rst - -.. |handmade/typedef-ast-StructurePtr| replace:: to be documented in |handmade/typedef-ast-StructurePtr|.rst - -.. |handmade/typedef-ast-FunctionPtr| replace:: to be documented in |handmade/typedef-ast-FunctionPtr|.rst - -.. |handmade/typedef-ast-VariablePtr| replace:: to be documented in |handmade/typedef-ast-VariablePtr|.rst - -.. |handmade/typedef-ast-MakeFieldDeclPtr| replace:: to be documented in |handmade/typedef-ast-MakeFieldDeclPtr|.rst - -.. |handmade/typedef-ast-ExprMakeBlockPtr| replace:: to be documented in |handmade/typedef-ast-ExprMakeBlockPtr|.rst - -.. |handmade/typedef-ast-FunctionAnnotationPtr| replace:: to be documented in |handmade/typedef-ast-FunctionAnnotationPtr|.rst - -.. |handmade/typedef-ast-StructureAnnotationPtr| replace:: to be documented in |handmade/typedef-ast-StructureAnnotationPtr|.rst - -.. |handmade/typedef-ast-EnumerationAnnotationPtr| replace:: to be documented in |handmade/typedef-ast-EnumerationAnnotationPtr|.rst - -.. |handmade/typedef-ast-PassMacroPtr| replace:: to be documented in |handmade/typedef-ast-PassMacroPtr|.rst - -.. |handmade/typedef-ast-VariantMacroPtr| replace:: to be documented in |handmade/typedef-ast-VariantMacroPtr|.rst - -.. |handmade/typedef-ast-ReaderMacroPtr| replace:: to be documented in |handmade/typedef-ast-ReaderMacroPtr|.rst - -.. |handmade/typedef-ast-CommentReaderPtr| replace:: to be documented in |handmade/typedef-ast-CommentReaderPtr|.rst - -.. |handmade/typedef-ast-CallMacroPtr| replace:: to be documented in |handmade/typedef-ast-CallMacroPtr|.rst - -.. |handmade/typedef-ast-TypeInfoMacroPtr| replace:: to be documented in |handmade/typedef-ast-TypeInfoMacroPtr|.rst - -.. |handmade/typedef-ast-ForLoopMacroPtr| replace:: to be documented in |handmade/typedef-ast-ForLoopMacroPtr|.rst - -.. |handmade/typedef-ast-CaptureMacroPtr| replace:: to be documented in |handmade/typedef-ast-CaptureMacroPtr|.rst - -.. |handmade/typedef-ast-TypeMacroPtr| replace:: to be documented in |handmade/typedef-ast-TypeMacroPtr|.rst - -.. |handmade/typedef-ast-SimulateMacroPtr| replace:: to be documented in |handmade/typedef-ast-SimulateMacroPtr|.rst - -.. |handmade/enumeration-ast-CaptureMode| replace:: to be documented in |handmade/enumeration-ast-CaptureMode|.rst - -.. |handmade/enumeration-ast-SideEffects| replace:: to be documented in |handmade/enumeration-ast-SideEffects|.rst - -.. |handmade/class-ast-AstFunctionAnnotation| replace:: to be documented in |handmade/class-ast-AstFunctionAnnotation|.rst - -.. |handmade/method-ast-AstFunctionAnnotation.transform| replace:: to be documented in |handmade/method-ast-AstFunctionAnnotation.transform|.rst - -.. |handmade/method-ast-AstFunctionAnnotation.verifyCall| replace:: to be documented in |handmade/method-ast-AstFunctionAnnotation.verifyCall|.rst - -.. |handmade/method-ast-AstFunctionAnnotation.apply| replace:: to be documented in |handmade/method-ast-AstFunctionAnnotation.apply|.rst - -.. |handmade/method-ast-AstFunctionAnnotation.generic_apply| replace:: to be documented in |handmade/method-ast-AstFunctionAnnotation.generic_apply|.rst - -.. |handmade/method-ast-AstFunctionAnnotation.finish| replace:: to be documented in |handmade/method-ast-AstFunctionAnnotation.finish|.rst - -.. |handmade/method-ast-AstFunctionAnnotation.patch| replace:: to be documented in |handmade/method-ast-AstFunctionAnnotation.patch|.rst - -.. |handmade/method-ast-AstFunctionAnnotation.fixup| replace:: to be documented in |handmade/method-ast-AstFunctionAnnotation.fixup|.rst - -.. |handmade/method-ast-AstFunctionAnnotation.lint| replace:: to be documented in |handmade/method-ast-AstFunctionAnnotation.lint|.rst - -.. |handmade/method-ast-AstFunctionAnnotation.complete| replace:: to be documented in |handmade/method-ast-AstFunctionAnnotation.complete|.rst - -.. |handmade/method-ast-AstFunctionAnnotation.isCompatible| replace:: to be documented in |handmade/method-ast-AstFunctionAnnotation.isCompatible|.rst - -.. |handmade/method-ast-AstFunctionAnnotation.isSpecialized| replace:: to be documented in |handmade/method-ast-AstFunctionAnnotation.isSpecialized|.rst - -.. |handmade/method-ast-AstFunctionAnnotation.appendToMangledName| replace:: to be documented in |handmade/method-ast-AstFunctionAnnotation.appendToMangledName|.rst - -.. |handmade/class-ast-AstBlockAnnotation| replace:: to be documented in |handmade/class-ast-AstBlockAnnotation|.rst - -.. |handmade/method-ast-AstBlockAnnotation.apply| replace:: to be documented in |handmade/method-ast-AstBlockAnnotation.apply|.rst - -.. |handmade/method-ast-AstBlockAnnotation.finish| replace:: to be documented in |handmade/method-ast-AstBlockAnnotation.finish|.rst - -.. |handmade/class-ast-AstStructureAnnotation| replace:: to be documented in |handmade/class-ast-AstStructureAnnotation|.rst - -.. |handmade/method-ast-AstStructureAnnotation.apply| replace:: to be documented in |handmade/method-ast-AstStructureAnnotation.apply|.rst - -.. |handmade/method-ast-AstStructureAnnotation.finish| replace:: to be documented in |handmade/method-ast-AstStructureAnnotation.finish|.rst - -.. |handmade/method-ast-AstStructureAnnotation.patch| replace:: to be documented in |handmade/method-ast-AstStructureAnnotation.patch|.rst - -.. |handmade/method-ast-AstStructureAnnotation.complete| replace:: to be documented in |handmade/method-ast-AstStructureAnnotation.complete|.rst - -.. |handmade/method-ast-AstStructureAnnotation.aotPrefix| replace:: to be documented in |handmade/method-ast-AstStructureAnnotation.aotPrefix|.rst - -.. |handmade/method-ast-AstStructureAnnotation.aotBody| replace:: to be documented in |handmade/method-ast-AstStructureAnnotation.aotBody|.rst - -.. |handmade/method-ast-AstStructureAnnotation.aotSuffix| replace:: to be documented in |handmade/method-ast-AstStructureAnnotation.aotSuffix|.rst - -.. |handmade/class-ast-AstPassMacro| replace:: to be documented in |handmade/class-ast-AstPassMacro|.rst - -.. |handmade/method-ast-AstPassMacro.apply| replace:: to be documented in |handmade/method-ast-AstPassMacro.apply|.rst - -.. |handmade/class-ast-AstVariantMacro| replace:: to be documented in |handmade/class-ast-AstVariantMacro|.rst - -.. |handmade/method-ast-AstVariantMacro.visitExprIsVariant| replace:: to be documented in |handmade/method-ast-AstVariantMacro.visitExprIsVariant|.rst - -.. |handmade/method-ast-AstVariantMacro.visitExprAsVariant| replace:: to be documented in |handmade/method-ast-AstVariantMacro.visitExprAsVariant|.rst - -.. |handmade/method-ast-AstVariantMacro.visitExprSafeAsVariant| replace:: to be documented in |handmade/method-ast-AstVariantMacro.visitExprSafeAsVariant|.rst - -.. |handmade/class-ast-AstForLoopMacro| replace:: to be documented in |handmade/class-ast-AstForLoopMacro|.rst - -.. |handmade/method-ast-AstForLoopMacro.visitExprFor| replace:: to be documented in |handmade/method-ast-AstForLoopMacro.visitExprFor|.rst - -.. |handmade/class-ast-AstCaptureMacro| replace:: to be documented in |handmade/class-ast-AstCaptureMacro|.rst - -.. |handmade/method-ast-AstCaptureMacro.captureExpression| replace:: to be documented in |handmade/method-ast-AstCaptureMacro.captureExpression|.rst - -.. |handmade/method-ast-AstCaptureMacro.captureFunction| replace:: to be documented in |handmade/method-ast-AstCaptureMacro.captureFunction|.rst - -.. |handmade/method-ast-AstCaptureMacro.releaseFunction| replace:: to be documented in |handmade/method-ast-AstCaptureMacro.releaseFunction|.rst - -.. |handmade/class-ast-AstTypeMacro| replace:: to be documented in |handmade/class-ast-AstTypeMacro|.rst - -.. |handmade/method-ast-AstTypeMacro.visit| replace:: to be documented in |handmade/method-ast-AstTypeMacro.visit|.rst - -.. |handmade/class-ast-AstSimulateMacro| replace:: to be documented in |handmade/class-ast-AstSimulateMacro|.rst - -.. |handmade/method-ast-AstSimulateMacro.preSimulate| replace:: to be documented in |handmade/method-ast-AstSimulateMacro.preSimulate|.rst - -.. |handmade/method-ast-AstSimulateMacro.simulate| replace:: to be documented in |handmade/method-ast-AstSimulateMacro.simulate|.rst - -.. |handmade/class-ast-AstReaderMacro| replace:: to be documented in |handmade/class-ast-AstReaderMacro|.rst - -.. |handmade/method-ast-AstReaderMacro.accept| replace:: to be documented in |handmade/method-ast-AstReaderMacro.accept|.rst - -.. |handmade/method-ast-AstReaderMacro.suffix| replace:: to be documented in |handmade/method-ast-AstReaderMacro.suffix|.rst - -.. |handmade/method-ast-AstReaderMacro.visit| replace:: to be documented in |handmade/method-ast-AstReaderMacro.visit|.rst - -.. |handmade/class-ast-AstCommentReader| replace:: to be documented in |handmade/class-ast-AstCommentReader|.rst - -.. |handmade/method-ast-AstCommentReader.open| replace:: to be documented in |handmade/method-ast-AstCommentReader.open|.rst - -.. |handmade/method-ast-AstCommentReader.accept| replace:: to be documented in |handmade/method-ast-AstCommentReader.accept|.rst - -.. |handmade/method-ast-AstCommentReader.close| replace:: to be documented in |handmade/method-ast-AstCommentReader.close|.rst - -.. |handmade/method-ast-AstCommentReader.beforeStructure| replace:: to be documented in |handmade/method-ast-AstCommentReader.beforeStructure|.rst - -.. |handmade/method-ast-AstCommentReader.afterStructure| replace:: to be documented in |handmade/method-ast-AstCommentReader.afterStructure|.rst - -.. |handmade/method-ast-AstCommentReader.beforeStructureFields| replace:: to be documented in |handmade/method-ast-AstCommentReader.beforeStructureFields|.rst - -.. |handmade/method-ast-AstCommentReader.afterStructureField| replace:: to be documented in |handmade/method-ast-AstCommentReader.afterStructureField|.rst - -.. |handmade/method-ast-AstCommentReader.afterStructureFields| replace:: to be documented in |handmade/method-ast-AstCommentReader.afterStructureFields|.rst - -.. |handmade/method-ast-AstCommentReader.beforeFunction| replace:: to be documented in |handmade/method-ast-AstCommentReader.beforeFunction|.rst - -.. |handmade/method-ast-AstCommentReader.afterFunction| replace:: to be documented in |handmade/method-ast-AstCommentReader.afterFunction|.rst - -.. |handmade/method-ast-AstCommentReader.beforeGlobalVariables| replace:: to be documented in |handmade/method-ast-AstCommentReader.beforeGlobalVariables|.rst - -.. |handmade/method-ast-AstCommentReader.afterGlobalVariable| replace:: to be documented in |handmade/method-ast-AstCommentReader.afterGlobalVariable|.rst - -.. |handmade/method-ast-AstCommentReader.afterGlobalVariables| replace:: to be documented in |handmade/method-ast-AstCommentReader.afterGlobalVariables|.rst - -.. |handmade/method-ast-AstCommentReader.beforeVariant| replace:: to be documented in |handmade/method-ast-AstCommentReader.beforeVariant|.rst - -.. |handmade/method-ast-AstCommentReader.beforeVariantEntries| replace:: to be documented in |handmade/method-ast-AstCommentReader.beforeVariantEntries|.rst - -.. |handmade/method-ast-AstCommentReader.afterVariantEntry| replace:: to be documented in |handmade/method-ast-AstCommentReader.afterVariantEntry|.rst - -.. |handmade/method-ast-AstCommentReader.afterVariantEntries| replace:: to be documented in |handmade/method-ast-AstCommentReader.afterVariantEntries|.rst - -.. |handmade/method-ast-AstCommentReader.afterVariant| replace:: to be documented in |handmade/method-ast-AstCommentReader.afterVariant|.rst - -.. |handmade/method-ast-AstCommentReader.beforeTuple| replace:: to be documented in |handmade/method-ast-AstCommentReader.beforeTuple|.rst - -.. |handmade/method-ast-AstCommentReader.beforeTupleEntries| replace:: to be documented in |handmade/method-ast-AstCommentReader.beforeTupleEntries|.rst - -.. |handmade/method-ast-AstCommentReader.afterTupleEntry| replace:: to be documented in |handmade/method-ast-AstCommentReader.afterTupleEntry|.rst - -.. |handmade/method-ast-AstCommentReader.afterTupleEntries| replace:: to be documented in |handmade/method-ast-AstCommentReader.afterTupleEntries|.rst - -.. |handmade/method-ast-AstCommentReader.afterTuple| replace:: to be documented in |handmade/method-ast-AstCommentReader.afterTuple|.rst - -.. |handmade/method-ast-AstCommentReader.beforeBitfield| replace:: to be documented in |handmade/method-ast-AstCommentReader.beforeBitfield|.rst - -.. |handmade/method-ast-AstCommentReader.beforeBitfieldEntries| replace:: to be documented in |handmade/method-ast-AstCommentReader.beforeBitfieldEntries|.rst - -.. |handmade/method-ast-AstCommentReader.afterBitfieldEntry| replace:: to be documented in |handmade/method-ast-AstCommentReader.afterBitfieldEntry|.rst - -.. |handmade/method-ast-AstCommentReader.afterBitfieldEntries| replace:: to be documented in |handmade/method-ast-AstCommentReader.afterBitfieldEntries|.rst - -.. |handmade/method-ast-AstCommentReader.afterBitfield| replace:: to be documented in |handmade/method-ast-AstCommentReader.afterBitfield|.rst - -.. |handmade/method-ast-AstCommentReader.beforeEnumeration| replace:: to be documented in |handmade/method-ast-AstCommentReader.beforeEnumeration|.rst - -.. |handmade/method-ast-AstCommentReader.beforeEnumerationEntries| replace:: to be documented in |handmade/method-ast-AstCommentReader.beforeEnumerationEntries|.rst - -.. |handmade/method-ast-AstCommentReader.afterEnumerationEntry| replace:: to be documented in |handmade/method-ast-AstCommentReader.afterEnumerationEntry|.rst - -.. |handmade/method-ast-AstCommentReader.afterEnumerationEntries| replace:: to be documented in |handmade/method-ast-AstCommentReader.afterEnumerationEntries|.rst - -.. |handmade/method-ast-AstCommentReader.afterEnumeration| replace:: to be documented in |handmade/method-ast-AstCommentReader.afterEnumeration|.rst - -.. |handmade/method-ast-AstCommentReader.beforeAlias| replace:: to be documented in |handmade/method-ast-AstCommentReader.beforeAlias|.rst - -.. |handmade/method-ast-AstCommentReader.afterAlias| replace:: to be documented in |handmade/method-ast-AstCommentReader.afterAlias|.rst - -.. |handmade/class-ast-AstCallMacro| replace:: to be documented in |handmade/class-ast-AstCallMacro|.rst - -.. |handmade/method-ast-AstCallMacro.preVisit| replace:: to be documented in |handmade/method-ast-AstCallMacro.preVisit|.rst - -.. |handmade/method-ast-AstCallMacro.visit| replace:: to be documented in |handmade/method-ast-AstCallMacro.visit|.rst - -.. |handmade/method-ast-AstCallMacro.canVisitArgument| replace:: to be documented in |handmade/method-ast-AstCallMacro.canVisitArgument|.rst - -.. |handmade/method-ast-AstCallMacro.canFoldReturnResult| replace:: to be documented in |handmade/method-ast-AstCallMacro.canFoldReturnResult|.rst - -.. |handmade/class-ast-AstTypeInfoMacro| replace:: to be documented in |handmade/class-ast-AstTypeInfoMacro|.rst - -.. |handmade/method-ast-AstTypeInfoMacro.getAstChange| replace:: to be documented in |handmade/method-ast-AstTypeInfoMacro.getAstChange|.rst - -.. |handmade/method-ast-AstTypeInfoMacro.getAstType| replace:: to be documented in |handmade/method-ast-AstTypeInfoMacro.getAstType|.rst - -.. |handmade/class-ast-AstEnumerationAnnotation| replace:: to be documented in |handmade/class-ast-AstEnumerationAnnotation|.rst - -.. |handmade/method-ast-AstEnumerationAnnotation.apply| replace:: to be documented in |handmade/method-ast-AstEnumerationAnnotation.apply|.rst - -.. |handmade/class-ast-AstVisitor| replace:: to be documented in |handmade/class-ast-AstVisitor|.rst - -.. |handmade/method-ast-AstVisitor.preVisitProgram| replace:: to be documented in |handmade/method-ast-AstVisitor.preVisitProgram|.rst - -.. |handmade/method-ast-AstVisitor.visitProgram| replace:: to be documented in |handmade/method-ast-AstVisitor.visitProgram|.rst - -.. |handmade/method-ast-AstVisitor.preVisitProgramBody| replace:: to be documented in |handmade/method-ast-AstVisitor.preVisitProgramBody|.rst - -.. |handmade/method-ast-AstVisitor.preVisitModule| replace:: to be documented in |handmade/method-ast-AstVisitor.preVisitModule|.rst - -.. |handmade/method-ast-AstVisitor.visitModule| replace:: to be documented in |handmade/method-ast-AstVisitor.visitModule|.rst - -.. |handmade/method-ast-AstVisitor.preVisitExprTypeDecl| replace:: to be documented in |handmade/method-ast-AstVisitor.preVisitExprTypeDecl|.rst - -.. |handmade/method-ast-AstVisitor.visitExprTypeDecl| replace:: to be documented in |handmade/method-ast-AstVisitor.visitExprTypeDecl|.rst - -.. |handmade/method-ast-AstVisitor.preVisitTypeDecl| replace:: to be documented in |handmade/method-ast-AstVisitor.preVisitTypeDecl|.rst - -.. |handmade/method-ast-AstVisitor.visitTypeDecl| replace:: to be documented in |handmade/method-ast-AstVisitor.visitTypeDecl|.rst - -.. |handmade/method-ast-AstVisitor.preVisitAlias| replace:: to be documented in |handmade/method-ast-AstVisitor.preVisitAlias|.rst - -.. |handmade/method-ast-AstVisitor.visitAlias| replace:: to be documented in |handmade/method-ast-AstVisitor.visitAlias|.rst - -.. |handmade/method-ast-AstVisitor.canVisitEnumeration| replace:: to be documented in |handmade/method-ast-AstVisitor.canVisitEnumeration|.rst - -.. |handmade/method-ast-AstVisitor.preVisitEnumeration| replace:: to be documented in |handmade/method-ast-AstVisitor.preVisitEnumeration|.rst - -.. |handmade/method-ast-AstVisitor.preVisitEnumerationValue| replace:: to be documented in |handmade/method-ast-AstVisitor.preVisitEnumerationValue|.rst - -.. |handmade/method-ast-AstVisitor.visitEnumerationValue| replace:: to be documented in |handmade/method-ast-AstVisitor.visitEnumerationValue|.rst - -.. |handmade/method-ast-AstVisitor.visitEnumeration| replace:: to be documented in |handmade/method-ast-AstVisitor.visitEnumeration|.rst - -.. |handmade/method-ast-AstVisitor.canVisitStructure| replace:: to be documented in |handmade/method-ast-AstVisitor.canVisitStructure|.rst - -.. |handmade/method-ast-AstVisitor.preVisitStructure| replace:: to be documented in |handmade/method-ast-AstVisitor.preVisitStructure|.rst - -.. |handmade/method-ast-AstVisitor.preVisitStructureField| replace:: to be documented in |handmade/method-ast-AstVisitor.preVisitStructureField|.rst - -.. |handmade/method-ast-AstVisitor.canVisitStructureFieldInit| replace:: to be documented in |handmade/method-ast-AstVisitor.canVisitStructureFieldInit|.rst - -.. |handmade/method-ast-AstVisitor.visitStructureField| replace:: to be documented in |handmade/method-ast-AstVisitor.visitStructureField|.rst - -.. |handmade/method-ast-AstVisitor.visitStructure| replace:: to be documented in |handmade/method-ast-AstVisitor.visitStructure|.rst - -.. |handmade/method-ast-AstVisitor.canVisitFunction| replace:: to be documented in |handmade/method-ast-AstVisitor.canVisitFunction|.rst - -.. |handmade/method-ast-AstVisitor.canVisitFunctionArgumentInit| replace:: to be documented in |handmade/method-ast-AstVisitor.canVisitFunctionArgumentInit|.rst - -.. |handmade/method-ast-AstVisitor.preVisitFunction| replace:: to be documented in |handmade/method-ast-AstVisitor.preVisitFunction|.rst - -.. |handmade/method-ast-AstVisitor.visitFunction| replace:: to be documented in |handmade/method-ast-AstVisitor.visitFunction|.rst - -.. |handmade/method-ast-AstVisitor.preVisitFunctionArgument| replace:: to be documented in |handmade/method-ast-AstVisitor.preVisitFunctionArgument|.rst - -.. |handmade/method-ast-AstVisitor.visitFunctionArgument| replace:: to be documented in |handmade/method-ast-AstVisitor.visitFunctionArgument|.rst - -.. |handmade/method-ast-AstVisitor.preVisitFunctionArgumentInit| replace:: to be documented in |handmade/method-ast-AstVisitor.preVisitFunctionArgumentInit|.rst - -.. |handmade/method-ast-AstVisitor.visitFunctionArgumentInit| replace:: to be documented in |handmade/method-ast-AstVisitor.visitFunctionArgumentInit|.rst - -.. |handmade/method-ast-AstVisitor.preVisitFunctionBody| replace:: to be documented in |handmade/method-ast-AstVisitor.preVisitFunctionBody|.rst - -.. |handmade/method-ast-AstVisitor.visitFunctionBody| replace:: to be documented in |handmade/method-ast-AstVisitor.visitFunctionBody|.rst - -.. |handmade/method-ast-AstVisitor.preVisitExpression| replace:: to be documented in |handmade/method-ast-AstVisitor.preVisitExpression|.rst - -.. |handmade/method-ast-AstVisitor.visitExpression| replace:: to be documented in |handmade/method-ast-AstVisitor.visitExpression|.rst - -.. |handmade/method-ast-AstVisitor.preVisitExprBlock| replace:: to be documented in |handmade/method-ast-AstVisitor.preVisitExprBlock|.rst - -.. |handmade/method-ast-AstVisitor.visitExprBlock| replace:: to be documented in |handmade/method-ast-AstVisitor.visitExprBlock|.rst - -.. |handmade/method-ast-AstVisitor.preVisitExprBlockArgument| replace:: to be documented in |handmade/method-ast-AstVisitor.preVisitExprBlockArgument|.rst - -.. |handmade/method-ast-AstVisitor.visitExprBlockArgument| replace:: to be documented in |handmade/method-ast-AstVisitor.visitExprBlockArgument|.rst - -.. |handmade/method-ast-AstVisitor.preVisitExprBlockArgumentInit| replace:: to be documented in |handmade/method-ast-AstVisitor.preVisitExprBlockArgumentInit|.rst - -.. |handmade/method-ast-AstVisitor.visitExprBlockArgumentInit| replace:: to be documented in |handmade/method-ast-AstVisitor.visitExprBlockArgumentInit|.rst - -.. |handmade/method-ast-AstVisitor.preVisitExprBlockExpression| replace:: to be documented in |handmade/method-ast-AstVisitor.preVisitExprBlockExpression|.rst - -.. |handmade/method-ast-AstVisitor.visitExprBlockExpression| replace:: to be documented in |handmade/method-ast-AstVisitor.visitExprBlockExpression|.rst - -.. |handmade/method-ast-AstVisitor.preVisitExprBlockFinal| replace:: to be documented in |handmade/method-ast-AstVisitor.preVisitExprBlockFinal|.rst - -.. |handmade/method-ast-AstVisitor.visitExprBlockFinal| replace:: to be documented in |handmade/method-ast-AstVisitor.visitExprBlockFinal|.rst - -.. |handmade/method-ast-AstVisitor.preVisitExprBlockFinalExpression| replace:: to be documented in |handmade/method-ast-AstVisitor.preVisitExprBlockFinalExpression|.rst - -.. |handmade/method-ast-AstVisitor.visitExprBlockFinalExpression| replace:: to be documented in |handmade/method-ast-AstVisitor.visitExprBlockFinalExpression|.rst - -.. |handmade/method-ast-AstVisitor.preVisitExprLet| replace:: to be documented in |handmade/method-ast-AstVisitor.preVisitExprLet|.rst - -.. |handmade/method-ast-AstVisitor.visitExprLet| replace:: to be documented in |handmade/method-ast-AstVisitor.visitExprLet|.rst - -.. |handmade/method-ast-AstVisitor.preVisitExprLetVariable| replace:: to be documented in |handmade/method-ast-AstVisitor.preVisitExprLetVariable|.rst - -.. |handmade/method-ast-AstVisitor.visitExprLetVariable| replace:: to be documented in |handmade/method-ast-AstVisitor.visitExprLetVariable|.rst - -.. |handmade/method-ast-AstVisitor.preVisitExprLetVariableInit| replace:: to be documented in |handmade/method-ast-AstVisitor.preVisitExprLetVariableInit|.rst - -.. |handmade/method-ast-AstVisitor.visitExprLetVariableInit| replace:: to be documented in |handmade/method-ast-AstVisitor.visitExprLetVariableInit|.rst - -.. |handmade/method-ast-AstVisitor.canVisitGlobalVariable| replace:: to be documented in |handmade/method-ast-AstVisitor.canVisitGlobalVariable|.rst - -.. |handmade/method-ast-AstVisitor.preVisitGlobalLet| replace:: to be documented in |handmade/method-ast-AstVisitor.preVisitGlobalLet|.rst - -.. |handmade/method-ast-AstVisitor.visitGlobalLet| replace:: to be documented in |handmade/method-ast-AstVisitor.visitGlobalLet|.rst - -.. |handmade/method-ast-AstVisitor.preVisitGlobalLetVariable| replace:: to be documented in |handmade/method-ast-AstVisitor.preVisitGlobalLetVariable|.rst - -.. |handmade/method-ast-AstVisitor.visitGlobalLetVariable| replace:: to be documented in |handmade/method-ast-AstVisitor.visitGlobalLetVariable|.rst - -.. |handmade/method-ast-AstVisitor.preVisitGlobalLetVariableInit| replace:: to be documented in |handmade/method-ast-AstVisitor.preVisitGlobalLetVariableInit|.rst - -.. |handmade/method-ast-AstVisitor.visitGlobalLetVariableInit| replace:: to be documented in |handmade/method-ast-AstVisitor.visitGlobalLetVariableInit|.rst - -.. |handmade/method-ast-AstVisitor.preVisitExprStringBuilder| replace:: to be documented in |handmade/method-ast-AstVisitor.preVisitExprStringBuilder|.rst - -.. |handmade/method-ast-AstVisitor.visitExprStringBuilder| replace:: to be documented in |handmade/method-ast-AstVisitor.visitExprStringBuilder|.rst - -.. |handmade/method-ast-AstVisitor.preVisitExprStringBuilderElement| replace:: to be documented in |handmade/method-ast-AstVisitor.preVisitExprStringBuilderElement|.rst - -.. |handmade/method-ast-AstVisitor.visitExprStringBuilderElement| replace:: to be documented in |handmade/method-ast-AstVisitor.visitExprStringBuilderElement|.rst - -.. |handmade/method-ast-AstVisitor.preVisitExprNew| replace:: to be documented in |handmade/method-ast-AstVisitor.preVisitExprNew|.rst - -.. |handmade/method-ast-AstVisitor.visitExprNew| replace:: to be documented in |handmade/method-ast-AstVisitor.visitExprNew|.rst - -.. |handmade/method-ast-AstVisitor.preVisitExprNewArgument| replace:: to be documented in |handmade/method-ast-AstVisitor.preVisitExprNewArgument|.rst - -.. |handmade/method-ast-AstVisitor.visitExprNewArgument| replace:: to be documented in |handmade/method-ast-AstVisitor.visitExprNewArgument|.rst - -.. |handmade/method-ast-AstVisitor.preVisitExprNamedCall| replace:: to be documented in |handmade/method-ast-AstVisitor.preVisitExprNamedCall|.rst - -.. |handmade/method-ast-AstVisitor.visitExprNamedCall| replace:: to be documented in |handmade/method-ast-AstVisitor.visitExprNamedCall|.rst - -.. |handmade/method-ast-AstVisitor.preVisitExprNamedCallArgument| replace:: to be documented in |handmade/method-ast-AstVisitor.preVisitExprNamedCallArgument|.rst - -.. |handmade/method-ast-AstVisitor.visitExprNamedCallArgument| replace:: to be documented in |handmade/method-ast-AstVisitor.visitExprNamedCallArgument|.rst - -.. |handmade/method-ast-AstVisitor.preVisitExprLooksLikeCall| replace:: to be documented in |handmade/method-ast-AstVisitor.preVisitExprLooksLikeCall|.rst - -.. |handmade/method-ast-AstVisitor.visitExprLooksLikeCall| replace:: to be documented in |handmade/method-ast-AstVisitor.visitExprLooksLikeCall|.rst - -.. |handmade/method-ast-AstVisitor.canVisitExprLooksLikeCallArgument| replace:: to be documented in |handmade/method-ast-AstVisitor.canVisitExprLooksLikeCallArgument|.rst - -.. |handmade/method-ast-AstVisitor.preVisitExprLooksLikeCallArgument| replace:: to be documented in |handmade/method-ast-AstVisitor.preVisitExprLooksLikeCallArgument|.rst - -.. |handmade/method-ast-AstVisitor.visitExprLooksLikeCallArgument| replace:: to be documented in |handmade/method-ast-AstVisitor.visitExprLooksLikeCallArgument|.rst - -.. |handmade/method-ast-AstVisitor.canVisitCall| replace:: to be documented in |handmade/method-ast-AstVisitor.canVisitCall|.rst - -.. |handmade/method-ast-AstVisitor.preVisitExprCall| replace:: to be documented in |handmade/method-ast-AstVisitor.preVisitExprCall|.rst - -.. |handmade/method-ast-AstVisitor.visitExprCall| replace:: to be documented in |handmade/method-ast-AstVisitor.visitExprCall|.rst - -.. |handmade/method-ast-AstVisitor.preVisitExprCallArgument| replace:: to be documented in |handmade/method-ast-AstVisitor.preVisitExprCallArgument|.rst - -.. |handmade/method-ast-AstVisitor.visitExprCallArgument| replace:: to be documented in |handmade/method-ast-AstVisitor.visitExprCallArgument|.rst - -.. |handmade/method-ast-AstVisitor.preVisitExprNullCoalescing| replace:: to be documented in |handmade/method-ast-AstVisitor.preVisitExprNullCoalescing|.rst - -.. |handmade/method-ast-AstVisitor.visitExprNullCoalescing| replace:: to be documented in |handmade/method-ast-AstVisitor.visitExprNullCoalescing|.rst - -.. |handmade/method-ast-AstVisitor.preVisitExprNullCoalescingDefault| replace:: to be documented in |handmade/method-ast-AstVisitor.preVisitExprNullCoalescingDefault|.rst - -.. |handmade/method-ast-AstVisitor.preVisitExprAt| replace:: to be documented in |handmade/method-ast-AstVisitor.preVisitExprAt|.rst - -.. |handmade/method-ast-AstVisitor.visitExprAt| replace:: to be documented in |handmade/method-ast-AstVisitor.visitExprAt|.rst - -.. |handmade/method-ast-AstVisitor.preVisitExprAtIndex| replace:: to be documented in |handmade/method-ast-AstVisitor.preVisitExprAtIndex|.rst - -.. |handmade/method-ast-AstVisitor.preVisitExprSafeAt| replace:: to be documented in |handmade/method-ast-AstVisitor.preVisitExprSafeAt|.rst - -.. |handmade/method-ast-AstVisitor.visitExprSafeAt| replace:: to be documented in |handmade/method-ast-AstVisitor.visitExprSafeAt|.rst - -.. |handmade/method-ast-AstVisitor.preVisitExprSafeAtIndex| replace:: to be documented in |handmade/method-ast-AstVisitor.preVisitExprSafeAtIndex|.rst - -.. |handmade/method-ast-AstVisitor.preVisitExprIs| replace:: to be documented in |handmade/method-ast-AstVisitor.preVisitExprIs|.rst - -.. |handmade/method-ast-AstVisitor.visitExprIs| replace:: to be documented in |handmade/method-ast-AstVisitor.visitExprIs|.rst - -.. |handmade/method-ast-AstVisitor.preVisitExprIsType| replace:: to be documented in |handmade/method-ast-AstVisitor.preVisitExprIsType|.rst - -.. |handmade/method-ast-AstVisitor.preVisitExprOp2| replace:: to be documented in |handmade/method-ast-AstVisitor.preVisitExprOp2|.rst - -.. |handmade/method-ast-AstVisitor.visitExprOp2| replace:: to be documented in |handmade/method-ast-AstVisitor.visitExprOp2|.rst - -.. |handmade/method-ast-AstVisitor.preVisitExprOp2Right| replace:: to be documented in |handmade/method-ast-AstVisitor.preVisitExprOp2Right|.rst - -.. |handmade/method-ast-AstVisitor.preVisitExprOp3| replace:: to be documented in |handmade/method-ast-AstVisitor.preVisitExprOp3|.rst - -.. |handmade/method-ast-AstVisitor.visitExprOp3| replace:: to be documented in |handmade/method-ast-AstVisitor.visitExprOp3|.rst - -.. |handmade/method-ast-AstVisitor.preVisitExprOp3Left| replace:: to be documented in |handmade/method-ast-AstVisitor.preVisitExprOp3Left|.rst - -.. |handmade/method-ast-AstVisitor.preVisitExprOp3Right| replace:: to be documented in |handmade/method-ast-AstVisitor.preVisitExprOp3Right|.rst - -.. |handmade/method-ast-AstVisitor.isRightFirstExprCopy| replace:: to be documented in |handmade/method-ast-AstVisitor.isRightFirstExprCopy|.rst - -.. |handmade/method-ast-AstVisitor.preVisitExprCopy| replace:: to be documented in |handmade/method-ast-AstVisitor.preVisitExprCopy|.rst - -.. |handmade/method-ast-AstVisitor.visitExprCopy| replace:: to be documented in |handmade/method-ast-AstVisitor.visitExprCopy|.rst - -.. |handmade/method-ast-AstVisitor.preVisitExprCopyRight| replace:: to be documented in |handmade/method-ast-AstVisitor.preVisitExprCopyRight|.rst - -.. |handmade/method-ast-AstVisitor.isRightFirstExprMove| replace:: to be documented in |handmade/method-ast-AstVisitor.isRightFirstExprMove|.rst - -.. |handmade/method-ast-AstVisitor.preVisitExprMove| replace:: to be documented in |handmade/method-ast-AstVisitor.preVisitExprMove|.rst - -.. |handmade/method-ast-AstVisitor.visitExprMove| replace:: to be documented in |handmade/method-ast-AstVisitor.visitExprMove|.rst - -.. |handmade/method-ast-AstVisitor.preVisitExprMoveRight| replace:: to be documented in |handmade/method-ast-AstVisitor.preVisitExprMoveRight|.rst - -.. |handmade/method-ast-AstVisitor.isRightFirstExprClone| replace:: to be documented in |handmade/method-ast-AstVisitor.isRightFirstExprClone|.rst - -.. |handmade/method-ast-AstVisitor.preVisitExprClone| replace:: to be documented in |handmade/method-ast-AstVisitor.preVisitExprClone|.rst - -.. |handmade/method-ast-AstVisitor.visitExprClone| replace:: to be documented in |handmade/method-ast-AstVisitor.visitExprClone|.rst - -.. |handmade/method-ast-AstVisitor.preVisitExprCloneRight| replace:: to be documented in |handmade/method-ast-AstVisitor.preVisitExprCloneRight|.rst - -.. |handmade/method-ast-AstVisitor.canVisitWithAliasSubexpression| replace:: to be documented in |handmade/method-ast-AstVisitor.canVisitWithAliasSubexpression|.rst - -.. |handmade/method-ast-AstVisitor.preVisitExprAssume| replace:: to be documented in |handmade/method-ast-AstVisitor.preVisitExprAssume|.rst - -.. |handmade/method-ast-AstVisitor.visitExprAssume| replace:: to be documented in |handmade/method-ast-AstVisitor.visitExprAssume|.rst - -.. |handmade/method-ast-AstVisitor.preVisitExprWith| replace:: to be documented in |handmade/method-ast-AstVisitor.preVisitExprWith|.rst - -.. |handmade/method-ast-AstVisitor.visitExprWith| replace:: to be documented in |handmade/method-ast-AstVisitor.visitExprWith|.rst - -.. |handmade/method-ast-AstVisitor.preVisitExprWithBody| replace:: to be documented in |handmade/method-ast-AstVisitor.preVisitExprWithBody|.rst - -.. |handmade/method-ast-AstVisitor.preVisitExprWhile| replace:: to be documented in |handmade/method-ast-AstVisitor.preVisitExprWhile|.rst - -.. |handmade/method-ast-AstVisitor.visitExprWhile| replace:: to be documented in |handmade/method-ast-AstVisitor.visitExprWhile|.rst - -.. |handmade/method-ast-AstVisitor.preVisitExprWhileBody| replace:: to be documented in |handmade/method-ast-AstVisitor.preVisitExprWhileBody|.rst - -.. |handmade/method-ast-AstVisitor.preVisitExprTryCatch| replace:: to be documented in |handmade/method-ast-AstVisitor.preVisitExprTryCatch|.rst - -.. |handmade/method-ast-AstVisitor.visitExprTryCatch| replace:: to be documented in |handmade/method-ast-AstVisitor.visitExprTryCatch|.rst - -.. |handmade/method-ast-AstVisitor.preVisitExprTryCatchCatch| replace:: to be documented in |handmade/method-ast-AstVisitor.preVisitExprTryCatchCatch|.rst - -.. |handmade/method-ast-AstVisitor.preVisitExprIfThenElse| replace:: to be documented in |handmade/method-ast-AstVisitor.preVisitExprIfThenElse|.rst - -.. |handmade/method-ast-AstVisitor.visitExprIfThenElse| replace:: to be documented in |handmade/method-ast-AstVisitor.visitExprIfThenElse|.rst - -.. |handmade/method-ast-AstVisitor.preVisitExprIfThenElseIfBlock| replace:: to be documented in |handmade/method-ast-AstVisitor.preVisitExprIfThenElseIfBlock|.rst - -.. |handmade/method-ast-AstVisitor.preVisitExprIfThenElseElseBlock| replace:: to be documented in |handmade/method-ast-AstVisitor.preVisitExprIfThenElseElseBlock|.rst - -.. |handmade/method-ast-AstVisitor.preVisitExprFor| replace:: to be documented in |handmade/method-ast-AstVisitor.preVisitExprFor|.rst - -.. |handmade/method-ast-AstVisitor.visitExprFor| replace:: to be documented in |handmade/method-ast-AstVisitor.visitExprFor|.rst - -.. |handmade/method-ast-AstVisitor.preVisitExprForVariable| replace:: to be documented in |handmade/method-ast-AstVisitor.preVisitExprForVariable|.rst - -.. |handmade/method-ast-AstVisitor.visitExprForVariable| replace:: to be documented in |handmade/method-ast-AstVisitor.visitExprForVariable|.rst - -.. |handmade/method-ast-AstVisitor.preVisitExprForSource| replace:: to be documented in |handmade/method-ast-AstVisitor.preVisitExprForSource|.rst - -.. |handmade/method-ast-AstVisitor.visitExprForSource| replace:: to be documented in |handmade/method-ast-AstVisitor.visitExprForSource|.rst - -.. |handmade/method-ast-AstVisitor.preVisitExprForStack| replace:: to be documented in |handmade/method-ast-AstVisitor.preVisitExprForStack|.rst - -.. |handmade/method-ast-AstVisitor.preVisitExprForBody| replace:: to be documented in |handmade/method-ast-AstVisitor.preVisitExprForBody|.rst - -.. |handmade/method-ast-AstVisitor.preVisitExprMakeVariant| replace:: to be documented in |handmade/method-ast-AstVisitor.preVisitExprMakeVariant|.rst - -.. |handmade/method-ast-AstVisitor.visitExprMakeVariant| replace:: to be documented in |handmade/method-ast-AstVisitor.visitExprMakeVariant|.rst - -.. |handmade/method-ast-AstVisitor.preVisitExprMakeVariantField| replace:: to be documented in |handmade/method-ast-AstVisitor.preVisitExprMakeVariantField|.rst - -.. |handmade/method-ast-AstVisitor.visitExprMakeVariantField| replace:: to be documented in |handmade/method-ast-AstVisitor.visitExprMakeVariantField|.rst - -.. |handmade/method-ast-AstVisitor.canVisitExprMakeStructBody| replace:: to be documented in |handmade/method-ast-AstVisitor.canVisitExprMakeStructBody|.rst - -.. |handmade/method-ast-AstVisitor.canVisitExprMakeStructBlock| replace:: to be documented in |handmade/method-ast-AstVisitor.canVisitExprMakeStructBlock|.rst - -.. |handmade/method-ast-AstVisitor.preVisitExprMakeStruct| replace:: to be documented in |handmade/method-ast-AstVisitor.preVisitExprMakeStruct|.rst - -.. |handmade/method-ast-AstVisitor.visitExprMakeStruct| replace:: to be documented in |handmade/method-ast-AstVisitor.visitExprMakeStruct|.rst - -.. |handmade/method-ast-AstVisitor.preVisitStructureAlias| replace:: to be documented in |handmade/method-ast-AstVisitor.preVisitStructureAlias|.rst - -.. |handmade/method-ast-AstVisitor.visitStructureAlias| replace:: to be documented in |handmade/method-ast-AstVisitor.visitStructureAlias|.rst - -.. |handmade/method-ast-AstVisitor.preVisitExprMakeStructIndex| replace:: to be documented in |handmade/method-ast-AstVisitor.preVisitExprMakeStructIndex|.rst - -.. |handmade/method-ast-AstVisitor.visitExprMakeStructIndex| replace:: to be documented in |handmade/method-ast-AstVisitor.visitExprMakeStructIndex|.rst - -.. |handmade/method-ast-AstVisitor.preVisitExprMakeStructField| replace:: to be documented in |handmade/method-ast-AstVisitor.preVisitExprMakeStructField|.rst - -.. |handmade/method-ast-AstVisitor.visitExprMakeStructField| replace:: to be documented in |handmade/method-ast-AstVisitor.visitExprMakeStructField|.rst - -.. |handmade/method-ast-AstVisitor.preVisitMakeStructureBlock| replace:: to be documented in |handmade/method-ast-AstVisitor.preVisitMakeStructureBlock|.rst - -.. |handmade/method-ast-AstVisitor.visitMakeStructureBlock| replace:: to be documented in |handmade/method-ast-AstVisitor.visitMakeStructureBlock|.rst - -.. |handmade/method-ast-AstVisitor.preVisitExprMakeArray| replace:: to be documented in |handmade/method-ast-AstVisitor.preVisitExprMakeArray|.rst - -.. |handmade/method-ast-AstVisitor.visitExprMakeArray| replace:: to be documented in |handmade/method-ast-AstVisitor.visitExprMakeArray|.rst - -.. |handmade/method-ast-AstVisitor.preVisitExprMakeArrayIndex| replace:: to be documented in |handmade/method-ast-AstVisitor.preVisitExprMakeArrayIndex|.rst - -.. |handmade/method-ast-AstVisitor.visitExprMakeArrayIndex| replace:: to be documented in |handmade/method-ast-AstVisitor.visitExprMakeArrayIndex|.rst - -.. |handmade/method-ast-AstVisitor.preVisitExprMakeTuple| replace:: to be documented in |handmade/method-ast-AstVisitor.preVisitExprMakeTuple|.rst - -.. |handmade/method-ast-AstVisitor.visitExprMakeTuple| replace:: to be documented in |handmade/method-ast-AstVisitor.visitExprMakeTuple|.rst - -.. |handmade/method-ast-AstVisitor.preVisitExprMakeTupleIndex| replace:: to be documented in |handmade/method-ast-AstVisitor.preVisitExprMakeTupleIndex|.rst - -.. |handmade/method-ast-AstVisitor.visitExprMakeTupleIndex| replace:: to be documented in |handmade/method-ast-AstVisitor.visitExprMakeTupleIndex|.rst - -.. |handmade/method-ast-AstVisitor.preVisitExprArrayComprehension| replace:: to be documented in |handmade/method-ast-AstVisitor.preVisitExprArrayComprehension|.rst - -.. |handmade/method-ast-AstVisitor.visitExprArrayComprehension| replace:: to be documented in |handmade/method-ast-AstVisitor.visitExprArrayComprehension|.rst - -.. |handmade/method-ast-AstVisitor.preVisitExprArrayComprehensionSubexpr| replace:: to be documented in |handmade/method-ast-AstVisitor.preVisitExprArrayComprehensionSubexpr|.rst - -.. |handmade/method-ast-AstVisitor.preVisitExprArrayComprehensionWhere| replace:: to be documented in |handmade/method-ast-AstVisitor.preVisitExprArrayComprehensionWhere|.rst - -.. |handmade/method-ast-AstVisitor.canVisitExprTypeInfo| replace:: to be documented in |handmade/method-ast-AstVisitor.canVisitExprTypeInfo|.rst - -.. |handmade/method-ast-AstVisitor.preVisitExprTypeInfo| replace:: to be documented in |handmade/method-ast-AstVisitor.preVisitExprTypeInfo|.rst - -.. |handmade/method-ast-AstVisitor.visitExprTypeInfo| replace:: to be documented in |handmade/method-ast-AstVisitor.visitExprTypeInfo|.rst - -.. |handmade/method-ast-AstVisitor.preVisitExprPtr2Ref| replace:: to be documented in |handmade/method-ast-AstVisitor.preVisitExprPtr2Ref|.rst - -.. |handmade/method-ast-AstVisitor.visitExprPtr2Ref| replace:: to be documented in |handmade/method-ast-AstVisitor.visitExprPtr2Ref|.rst - -.. |handmade/method-ast-AstVisitor.preVisitExprLabel| replace:: to be documented in |handmade/method-ast-AstVisitor.preVisitExprLabel|.rst - -.. |handmade/method-ast-AstVisitor.visitExprLabel| replace:: to be documented in |handmade/method-ast-AstVisitor.visitExprLabel|.rst - -.. |handmade/method-ast-AstVisitor.preVisitExprGoto| replace:: to be documented in |handmade/method-ast-AstVisitor.preVisitExprGoto|.rst - -.. |handmade/method-ast-AstVisitor.visitExprGoto| replace:: to be documented in |handmade/method-ast-AstVisitor.visitExprGoto|.rst - -.. |handmade/method-ast-AstVisitor.preVisitExprRef2Value| replace:: to be documented in |handmade/method-ast-AstVisitor.preVisitExprRef2Value|.rst - -.. |handmade/method-ast-AstVisitor.visitExprRef2Value| replace:: to be documented in |handmade/method-ast-AstVisitor.visitExprRef2Value|.rst - -.. |handmade/method-ast-AstVisitor.preVisitExprRef2Ptr| replace:: to be documented in |handmade/method-ast-AstVisitor.preVisitExprRef2Ptr|.rst - -.. |handmade/method-ast-AstVisitor.visitExprRef2Ptr| replace:: to be documented in |handmade/method-ast-AstVisitor.visitExprRef2Ptr|.rst - -.. |handmade/method-ast-AstVisitor.preVisitExprAddr| replace:: to be documented in |handmade/method-ast-AstVisitor.preVisitExprAddr|.rst - -.. |handmade/method-ast-AstVisitor.visitExprAddr| replace:: to be documented in |handmade/method-ast-AstVisitor.visitExprAddr|.rst - -.. |handmade/method-ast-AstVisitor.preVisitExprAssert| replace:: to be documented in |handmade/method-ast-AstVisitor.preVisitExprAssert|.rst - -.. |handmade/method-ast-AstVisitor.visitExprAssert| replace:: to be documented in |handmade/method-ast-AstVisitor.visitExprAssert|.rst - -.. |handmade/method-ast-AstVisitor.preVisitExprStaticAssert| replace:: to be documented in |handmade/method-ast-AstVisitor.preVisitExprStaticAssert|.rst - -.. |handmade/method-ast-AstVisitor.visitExprStaticAssert| replace:: to be documented in |handmade/method-ast-AstVisitor.visitExprStaticAssert|.rst - -.. |handmade/method-ast-AstVisitor.preVisitExprQuote| replace:: to be documented in |handmade/method-ast-AstVisitor.preVisitExprQuote|.rst - -.. |handmade/method-ast-AstVisitor.visitExprQuote| replace:: to be documented in |handmade/method-ast-AstVisitor.visitExprQuote|.rst - -.. |handmade/method-ast-AstVisitor.preVisitExprDebug| replace:: to be documented in |handmade/method-ast-AstVisitor.preVisitExprDebug|.rst - -.. |handmade/method-ast-AstVisitor.visitExprDebug| replace:: to be documented in |handmade/method-ast-AstVisitor.visitExprDebug|.rst - -.. |handmade/method-ast-AstVisitor.preVisitExprInvoke| replace:: to be documented in |handmade/method-ast-AstVisitor.preVisitExprInvoke|.rst - -.. |handmade/method-ast-AstVisitor.visitExprInvoke| replace:: to be documented in |handmade/method-ast-AstVisitor.visitExprInvoke|.rst - -.. |handmade/method-ast-AstVisitor.preVisitExprErase| replace:: to be documented in |handmade/method-ast-AstVisitor.preVisitExprErase|.rst - -.. |handmade/method-ast-AstVisitor.visitExprErase| replace:: to be documented in |handmade/method-ast-AstVisitor.visitExprErase|.rst - -.. |handmade/method-ast-AstVisitor.preVisitExprSetInsert| replace:: to be documented in |handmade/method-ast-AstVisitor.preVisitExprSetInsert|.rst - -.. |handmade/method-ast-AstVisitor.visitExprSetInsert| replace:: to be documented in |handmade/method-ast-AstVisitor.visitExprSetInsert|.rst - -.. |handmade/method-ast-AstVisitor.preVisitExprFind| replace:: to be documented in |handmade/method-ast-AstVisitor.preVisitExprFind|.rst - -.. |handmade/method-ast-AstVisitor.visitExprFind| replace:: to be documented in |handmade/method-ast-AstVisitor.visitExprFind|.rst - -.. |handmade/method-ast-AstVisitor.preVisitExprKeyExists| replace:: to be documented in |handmade/method-ast-AstVisitor.preVisitExprKeyExists|.rst - -.. |handmade/method-ast-AstVisitor.visitExprKeyExists| replace:: to be documented in |handmade/method-ast-AstVisitor.visitExprKeyExists|.rst - -.. |handmade/method-ast-AstVisitor.preVisitExprAscend| replace:: to be documented in |handmade/method-ast-AstVisitor.preVisitExprAscend|.rst - -.. |handmade/method-ast-AstVisitor.visitExprAscend| replace:: to be documented in |handmade/method-ast-AstVisitor.visitExprAscend|.rst - -.. |handmade/method-ast-AstVisitor.preVisitExprCast| replace:: to be documented in |handmade/method-ast-AstVisitor.preVisitExprCast|.rst - -.. |handmade/method-ast-AstVisitor.visitExprCast| replace:: to be documented in |handmade/method-ast-AstVisitor.visitExprCast|.rst - -.. |handmade/method-ast-AstVisitor.preVisitExprDeleteSizeExpression| replace:: to be documented in |handmade/method-ast-AstVisitor.preVisitExprDeleteSizeExpression|.rst - -.. |handmade/method-ast-AstVisitor.preVisitExprDelete| replace:: to be documented in |handmade/method-ast-AstVisitor.preVisitExprDelete|.rst - -.. |handmade/method-ast-AstVisitor.visitExprDelete| replace:: to be documented in |handmade/method-ast-AstVisitor.visitExprDelete|.rst - -.. |handmade/method-ast-AstVisitor.preVisitExprVar| replace:: to be documented in |handmade/method-ast-AstVisitor.preVisitExprVar|.rst - -.. |handmade/method-ast-AstVisitor.visitExprVar| replace:: to be documented in |handmade/method-ast-AstVisitor.visitExprVar|.rst - -.. |handmade/method-ast-AstVisitor.preVisitExprTag| replace:: to be documented in |handmade/method-ast-AstVisitor.preVisitExprTag|.rst - -.. |handmade/method-ast-AstVisitor.preVisitExprTagValue| replace:: to be documented in |handmade/method-ast-AstVisitor.preVisitExprTagValue|.rst - -.. |handmade/method-ast-AstVisitor.visitExprTag| replace:: to be documented in |handmade/method-ast-AstVisitor.visitExprTag|.rst - -.. |handmade/method-ast-AstVisitor.preVisitExprField| replace:: to be documented in |handmade/method-ast-AstVisitor.preVisitExprField|.rst - -.. |handmade/method-ast-AstVisitor.visitExprField| replace:: to be documented in |handmade/method-ast-AstVisitor.visitExprField|.rst - -.. |handmade/method-ast-AstVisitor.preVisitExprSafeField| replace:: to be documented in |handmade/method-ast-AstVisitor.preVisitExprSafeField|.rst - -.. |handmade/method-ast-AstVisitor.visitExprSafeField| replace:: to be documented in |handmade/method-ast-AstVisitor.visitExprSafeField|.rst - -.. |handmade/method-ast-AstVisitor.preVisitExprSwizzle| replace:: to be documented in |handmade/method-ast-AstVisitor.preVisitExprSwizzle|.rst - -.. |handmade/method-ast-AstVisitor.visitExprSwizzle| replace:: to be documented in |handmade/method-ast-AstVisitor.visitExprSwizzle|.rst - -.. |handmade/method-ast-AstVisitor.preVisitExprIsVariant| replace:: to be documented in |handmade/method-ast-AstVisitor.preVisitExprIsVariant|.rst - -.. |handmade/method-ast-AstVisitor.visitExprIsVariant| replace:: to be documented in |handmade/method-ast-AstVisitor.visitExprIsVariant|.rst - -.. |handmade/method-ast-AstVisitor.preVisitExprAsVariant| replace:: to be documented in |handmade/method-ast-AstVisitor.preVisitExprAsVariant|.rst - -.. |handmade/method-ast-AstVisitor.visitExprAsVariant| replace:: to be documented in |handmade/method-ast-AstVisitor.visitExprAsVariant|.rst - -.. |handmade/method-ast-AstVisitor.preVisitExprSafeAsVariant| replace:: to be documented in |handmade/method-ast-AstVisitor.preVisitExprSafeAsVariant|.rst - -.. |handmade/method-ast-AstVisitor.visitExprSafeAsVariant| replace:: to be documented in |handmade/method-ast-AstVisitor.visitExprSafeAsVariant|.rst - -.. |handmade/method-ast-AstVisitor.preVisitExprOp1| replace:: to be documented in |handmade/method-ast-AstVisitor.preVisitExprOp1|.rst - -.. |handmade/method-ast-AstVisitor.visitExprOp1| replace:: to be documented in |handmade/method-ast-AstVisitor.visitExprOp1|.rst - -.. |handmade/method-ast-AstVisitor.preVisitExprReturn| replace:: to be documented in |handmade/method-ast-AstVisitor.preVisitExprReturn|.rst - -.. |handmade/method-ast-AstVisitor.visitExprReturn| replace:: to be documented in |handmade/method-ast-AstVisitor.visitExprReturn|.rst - -.. |handmade/method-ast-AstVisitor.preVisitExprYield| replace:: to be documented in |handmade/method-ast-AstVisitor.preVisitExprYield|.rst - -.. |handmade/method-ast-AstVisitor.visitExprYield| replace:: to be documented in |handmade/method-ast-AstVisitor.visitExprYield|.rst - -.. |handmade/method-ast-AstVisitor.preVisitExprBreak| replace:: to be documented in |handmade/method-ast-AstVisitor.preVisitExprBreak|.rst - -.. |handmade/method-ast-AstVisitor.visitExprBreak| replace:: to be documented in |handmade/method-ast-AstVisitor.visitExprBreak|.rst - -.. |handmade/method-ast-AstVisitor.preVisitExprContinue| replace:: to be documented in |handmade/method-ast-AstVisitor.preVisitExprContinue|.rst - -.. |handmade/method-ast-AstVisitor.visitExprContinue| replace:: to be documented in |handmade/method-ast-AstVisitor.visitExprContinue|.rst - -.. |handmade/method-ast-AstVisitor.canVisitMakeBlockBody| replace:: to be documented in |handmade/method-ast-AstVisitor.canVisitMakeBlockBody|.rst - -.. |handmade/method-ast-AstVisitor.preVisitExprMakeBlock| replace:: to be documented in |handmade/method-ast-AstVisitor.preVisitExprMakeBlock|.rst - -.. |handmade/method-ast-AstVisitor.visitExprMakeBlock| replace:: to be documented in |handmade/method-ast-AstVisitor.visitExprMakeBlock|.rst - -.. |handmade/method-ast-AstVisitor.preVisitExprMakeGenerator| replace:: to be documented in |handmade/method-ast-AstVisitor.preVisitExprMakeGenerator|.rst - -.. |handmade/method-ast-AstVisitor.visitExprMakeGenerator| replace:: to be documented in |handmade/method-ast-AstVisitor.visitExprMakeGenerator|.rst - -.. |handmade/method-ast-AstVisitor.preVisitExprMemZero| replace:: to be documented in |handmade/method-ast-AstVisitor.preVisitExprMemZero|.rst - -.. |handmade/method-ast-AstVisitor.visitExprMemZero| replace:: to be documented in |handmade/method-ast-AstVisitor.visitExprMemZero|.rst - -.. |handmade/method-ast-AstVisitor.preVisitExprConst| replace:: to be documented in |handmade/method-ast-AstVisitor.preVisitExprConst|.rst - -.. |handmade/method-ast-AstVisitor.visitExprConst| replace:: to be documented in |handmade/method-ast-AstVisitor.visitExprConst|.rst - -.. |handmade/method-ast-AstVisitor.preVisitExprConstPtr| replace:: to be documented in |handmade/method-ast-AstVisitor.preVisitExprConstPtr|.rst - -.. |handmade/method-ast-AstVisitor.visitExprConstPtr| replace:: to be documented in |handmade/method-ast-AstVisitor.visitExprConstPtr|.rst - -.. |handmade/method-ast-AstVisitor.preVisitExprConstEnumeration| replace:: to be documented in |handmade/method-ast-AstVisitor.preVisitExprConstEnumeration|.rst - -.. |handmade/method-ast-AstVisitor.visitExprConstEnumeration| replace:: to be documented in |handmade/method-ast-AstVisitor.visitExprConstEnumeration|.rst - -.. |handmade/method-ast-AstVisitor.preVisitExprConstBitfield| replace:: to be documented in |handmade/method-ast-AstVisitor.preVisitExprConstBitfield|.rst - -.. |handmade/method-ast-AstVisitor.visitExprConstBitfield| replace:: to be documented in |handmade/method-ast-AstVisitor.visitExprConstBitfield|.rst - -.. |handmade/method-ast-AstVisitor.preVisitExprConstInt8| replace:: to be documented in |handmade/method-ast-AstVisitor.preVisitExprConstInt8|.rst - -.. |handmade/method-ast-AstVisitor.visitExprConstInt8| replace:: to be documented in |handmade/method-ast-AstVisitor.visitExprConstInt8|.rst - -.. |handmade/method-ast-AstVisitor.preVisitExprConstInt16| replace:: to be documented in |handmade/method-ast-AstVisitor.preVisitExprConstInt16|.rst - -.. |handmade/method-ast-AstVisitor.visitExprConstInt16| replace:: to be documented in |handmade/method-ast-AstVisitor.visitExprConstInt16|.rst - -.. |handmade/method-ast-AstVisitor.preVisitExprConstInt64| replace:: to be documented in |handmade/method-ast-AstVisitor.preVisitExprConstInt64|.rst - -.. |handmade/method-ast-AstVisitor.visitExprConstInt64| replace:: to be documented in |handmade/method-ast-AstVisitor.visitExprConstInt64|.rst - -.. |handmade/method-ast-AstVisitor.preVisitExprConstInt| replace:: to be documented in |handmade/method-ast-AstVisitor.preVisitExprConstInt|.rst - -.. |handmade/method-ast-AstVisitor.visitExprConstInt| replace:: to be documented in |handmade/method-ast-AstVisitor.visitExprConstInt|.rst - -.. |handmade/method-ast-AstVisitor.preVisitExprConstInt2| replace:: to be documented in |handmade/method-ast-AstVisitor.preVisitExprConstInt2|.rst - -.. |handmade/method-ast-AstVisitor.visitExprConstInt2| replace:: to be documented in |handmade/method-ast-AstVisitor.visitExprConstInt2|.rst - -.. |handmade/method-ast-AstVisitor.preVisitExprConstInt3| replace:: to be documented in |handmade/method-ast-AstVisitor.preVisitExprConstInt3|.rst - -.. |handmade/method-ast-AstVisitor.visitExprConstInt3| replace:: to be documented in |handmade/method-ast-AstVisitor.visitExprConstInt3|.rst - -.. |handmade/method-ast-AstVisitor.preVisitExprConstInt4| replace:: to be documented in |handmade/method-ast-AstVisitor.preVisitExprConstInt4|.rst - -.. |handmade/method-ast-AstVisitor.visitExprConstInt4| replace:: to be documented in |handmade/method-ast-AstVisitor.visitExprConstInt4|.rst - -.. |handmade/method-ast-AstVisitor.preVisitExprConstUInt8| replace:: to be documented in |handmade/method-ast-AstVisitor.preVisitExprConstUInt8|.rst - -.. |handmade/method-ast-AstVisitor.visitExprConstUInt8| replace:: to be documented in |handmade/method-ast-AstVisitor.visitExprConstUInt8|.rst - -.. |handmade/method-ast-AstVisitor.preVisitExprConstUInt16| replace:: to be documented in |handmade/method-ast-AstVisitor.preVisitExprConstUInt16|.rst - -.. |handmade/method-ast-AstVisitor.visitExprConstUInt16| replace:: to be documented in |handmade/method-ast-AstVisitor.visitExprConstUInt16|.rst - -.. |handmade/method-ast-AstVisitor.preVisitExprConstUInt64| replace:: to be documented in |handmade/method-ast-AstVisitor.preVisitExprConstUInt64|.rst - -.. |handmade/method-ast-AstVisitor.visitExprConstUInt64| replace:: to be documented in |handmade/method-ast-AstVisitor.visitExprConstUInt64|.rst - -.. |handmade/method-ast-AstVisitor.preVisitExprConstUInt| replace:: to be documented in |handmade/method-ast-AstVisitor.preVisitExprConstUInt|.rst - -.. |handmade/method-ast-AstVisitor.visitExprConstUInt| replace:: to be documented in |handmade/method-ast-AstVisitor.visitExprConstUInt|.rst - -.. |handmade/method-ast-AstVisitor.preVisitExprConstUInt2| replace:: to be documented in |handmade/method-ast-AstVisitor.preVisitExprConstUInt2|.rst - -.. |handmade/method-ast-AstVisitor.visitExprConstUInt2| replace:: to be documented in |handmade/method-ast-AstVisitor.visitExprConstUInt2|.rst - -.. |handmade/method-ast-AstVisitor.preVisitExprConstUInt3| replace:: to be documented in |handmade/method-ast-AstVisitor.preVisitExprConstUInt3|.rst - -.. |handmade/method-ast-AstVisitor.visitExprConstUInt3| replace:: to be documented in |handmade/method-ast-AstVisitor.visitExprConstUInt3|.rst - -.. |handmade/method-ast-AstVisitor.preVisitExprConstUInt4| replace:: to be documented in |handmade/method-ast-AstVisitor.preVisitExprConstUInt4|.rst - -.. |handmade/method-ast-AstVisitor.visitExprConstUInt4| replace:: to be documented in |handmade/method-ast-AstVisitor.visitExprConstUInt4|.rst - -.. |handmade/method-ast-AstVisitor.preVisitExprConstRange| replace:: to be documented in |handmade/method-ast-AstVisitor.preVisitExprConstRange|.rst - -.. |handmade/method-ast-AstVisitor.visitExprConstRange| replace:: to be documented in |handmade/method-ast-AstVisitor.visitExprConstRange|.rst - -.. |handmade/method-ast-AstVisitor.preVisitExprConstURange| replace:: to be documented in |handmade/method-ast-AstVisitor.preVisitExprConstURange|.rst - -.. |handmade/method-ast-AstVisitor.visitExprConstURange| replace:: to be documented in |handmade/method-ast-AstVisitor.visitExprConstURange|.rst - -.. |handmade/method-ast-AstVisitor.preVisitExprConstRange64| replace:: to be documented in |handmade/method-ast-AstVisitor.preVisitExprConstRange64|.rst - -.. |handmade/method-ast-AstVisitor.visitExprConstRange64| replace:: to be documented in |handmade/method-ast-AstVisitor.visitExprConstRange64|.rst - -.. |handmade/method-ast-AstVisitor.preVisitExprConstURange64| replace:: to be documented in |handmade/method-ast-AstVisitor.preVisitExprConstURange64|.rst - -.. |handmade/method-ast-AstVisitor.visitExprConstURange64| replace:: to be documented in |handmade/method-ast-AstVisitor.visitExprConstURange64|.rst - -.. |handmade/method-ast-AstVisitor.preVisitExprConstBool| replace:: to be documented in |handmade/method-ast-AstVisitor.preVisitExprConstBool|.rst - -.. |handmade/method-ast-AstVisitor.visitExprConstBool| replace:: to be documented in |handmade/method-ast-AstVisitor.visitExprConstBool|.rst - -.. |handmade/method-ast-AstVisitor.preVisitExprConstFloat| replace:: to be documented in |handmade/method-ast-AstVisitor.preVisitExprConstFloat|.rst - -.. |handmade/method-ast-AstVisitor.visitExprConstFloat| replace:: to be documented in |handmade/method-ast-AstVisitor.visitExprConstFloat|.rst - -.. |handmade/method-ast-AstVisitor.preVisitExprConstFloat2| replace:: to be documented in |handmade/method-ast-AstVisitor.preVisitExprConstFloat2|.rst - -.. |handmade/method-ast-AstVisitor.visitExprConstFloat2| replace:: to be documented in |handmade/method-ast-AstVisitor.visitExprConstFloat2|.rst - -.. |handmade/method-ast-AstVisitor.preVisitExprConstFloat3| replace:: to be documented in |handmade/method-ast-AstVisitor.preVisitExprConstFloat3|.rst - -.. |handmade/method-ast-AstVisitor.visitExprConstFloat3| replace:: to be documented in |handmade/method-ast-AstVisitor.visitExprConstFloat3|.rst - -.. |handmade/method-ast-AstVisitor.preVisitExprConstFloat4| replace:: to be documented in |handmade/method-ast-AstVisitor.preVisitExprConstFloat4|.rst - -.. |handmade/method-ast-AstVisitor.visitExprConstFloat4| replace:: to be documented in |handmade/method-ast-AstVisitor.visitExprConstFloat4|.rst - -.. |handmade/method-ast-AstVisitor.preVisitExprConstString| replace:: to be documented in |handmade/method-ast-AstVisitor.preVisitExprConstString|.rst - -.. |handmade/method-ast-AstVisitor.visitExprConstString| replace:: to be documented in |handmade/method-ast-AstVisitor.visitExprConstString|.rst - -.. |handmade/method-ast-AstVisitor.preVisitExprConstDouble| replace:: to be documented in |handmade/method-ast-AstVisitor.preVisitExprConstDouble|.rst - -.. |handmade/method-ast-AstVisitor.visitExprConstDouble| replace:: to be documented in |handmade/method-ast-AstVisitor.visitExprConstDouble|.rst - -.. |handmade/method-ast-AstVisitor.preVisitExprFakeContext| replace:: to be documented in |handmade/method-ast-AstVisitor.preVisitExprFakeContext|.rst - -.. |handmade/method-ast-AstVisitor.visitExprFakeContext| replace:: to be documented in |handmade/method-ast-AstVisitor.visitExprFakeContext|.rst - -.. |handmade/method-ast-AstVisitor.preVisitExprFakeLineInfo| replace:: to be documented in |handmade/method-ast-AstVisitor.preVisitExprFakeLineInfo|.rst - -.. |handmade/method-ast-AstVisitor.visitExprFakeLineInfo| replace:: to be documented in |handmade/method-ast-AstVisitor.visitExprFakeLineInfo|.rst - -.. |handmade/method-ast-AstVisitor.preVisitExprReader| replace:: to be documented in |handmade/method-ast-AstVisitor.preVisitExprReader|.rst - -.. |handmade/method-ast-AstVisitor.visitExprReader| replace:: to be documented in |handmade/method-ast-AstVisitor.visitExprReader|.rst - -.. |handmade/method-ast-AstVisitor.preVisitExprUnsafe| replace:: to be documented in |handmade/method-ast-AstVisitor.preVisitExprUnsafe|.rst - -.. |handmade/method-ast-AstVisitor.visitExprUnsafe| replace:: to be documented in |handmade/method-ast-AstVisitor.visitExprUnsafe|.rst - -.. |handmade/method-ast-AstVisitor.preVisitExprCallMacro| replace:: to be documented in |handmade/method-ast-AstVisitor.preVisitExprCallMacro|.rst - -.. |handmade/method-ast-AstVisitor.visitExprCallMacro| replace:: to be documented in |handmade/method-ast-AstVisitor.visitExprCallMacro|.rst - -.. |handmade/function-ast-make_visitor| replace:: to be documented in |handmade/function-ast-make_visitor|.rst - -.. |handmade/function-ast-visit| replace:: to be documented in |handmade/function-ast-visit|.rst - -.. |handmade/function-ast-visit_modules| replace:: to be documented in |handmade/function-ast-visit_modules|.rst - -.. |handmade/function-ast-visit_module| replace:: to be documented in |handmade/function-ast-visit_module|.rst - -.. |handmade/function-ast-visit_enumeration| replace:: to be documented in |handmade/function-ast-visit_enumeration|.rst - -.. |handmade/function-ast-visit_structure| replace:: to be documented in |handmade/function-ast-visit_structure|.rst - -.. |handmade/function-ast-visit_finally| replace:: to be documented in |handmade/function-ast-visit_finally|.rst - -.. |handmade/function-ast-make_function_annotation| replace:: to be documented in |handmade/function-ast-make_function_annotation|.rst - -.. |handmade/function-ast-make_block_annotation| replace:: to be documented in |handmade/function-ast-make_block_annotation|.rst - -.. |handmade/function-ast-add_function_annotation| replace:: to be documented in |handmade/function-ast-add_function_annotation|.rst - -.. |handmade/function-ast-add_block_annotation| replace:: to be documented in |handmade/function-ast-add_block_annotation|.rst - -.. |handmade/function-ast-make_structure_annotation| replace:: to be documented in |handmade/function-ast-make_structure_annotation|.rst - -.. |handmade/function-ast-add_structure_annotation| replace:: to be documented in |handmade/function-ast-add_structure_annotation|.rst - -.. |handmade/function-ast-make_enumeration_annotation| replace:: to be documented in |handmade/function-ast-make_enumeration_annotation|.rst - -.. |handmade/function-ast-add_enumeration_annotation| replace:: to be documented in |handmade/function-ast-add_enumeration_annotation|.rst - -.. |handmade/function-ast-add_enumeration_entry| replace:: to be documented in |handmade/function-ast-add_enumeration_entry|.rst - -.. |handmade/function-ast-make_pass_macro| replace:: to be documented in |handmade/function-ast-make_pass_macro|.rst - -.. |handmade/function-ast-add_infer_macro| replace:: to be documented in |handmade/function-ast-add_infer_macro|.rst - -.. |handmade/function-ast-add_dirty_infer_macro| replace:: to be documented in |handmade/function-ast-add_dirty_infer_macro|.rst - -.. |handmade/function-ast-add_lint_macro| replace:: to be documented in |handmade/function-ast-add_lint_macro|.rst - -.. |handmade/function-ast-add_global_lint_macro| replace:: to be documented in |handmade/function-ast-add_global_lint_macro|.rst - -.. |handmade/function-ast-add_optimization_macro| replace:: to be documented in |handmade/function-ast-add_optimization_macro|.rst - -.. |handmade/function-ast-make_reader_macro| replace:: to be documented in |handmade/function-ast-make_reader_macro|.rst - -.. |handmade/function-ast-add_reader_macro| replace:: to be documented in |handmade/function-ast-add_reader_macro|.rst - -.. |handmade/function-ast-make_comment_reader| replace:: to be documented in |handmade/function-ast-make_comment_reader|.rst - -.. |handmade/function-ast-add_comment_reader| replace:: to be documented in |handmade/function-ast-add_comment_reader|.rst - -.. |handmade/function-ast-make_call_macro| replace:: to be documented in |handmade/function-ast-make_call_macro|.rst - -.. |handmade/function-ast-find_call_macro| replace:: to be documented in |handmade/function-ast-find_call_macro|.rst - -.. |handmade/function-ast-add_call_macro| replace:: to be documented in |handmade/function-ast-add_call_macro|.rst - -.. |handmade/function-ast-make_typeinfo_macro| replace:: to be documented in |handmade/function-ast-make_typeinfo_macro|.rst - -.. |handmade/function-ast-add_typeinfo_macro| replace:: to be documented in |handmade/function-ast-add_typeinfo_macro|.rst - -.. |handmade/function-ast-make_variant_macro| replace:: to be documented in |handmade/function-ast-make_variant_macro|.rst - -.. |handmade/function-ast-add_variant_macro| replace:: to be documented in |handmade/function-ast-add_variant_macro|.rst - -.. |handmade/function-ast-make_for_loop_macro| replace:: to be documented in |handmade/function-ast-make_for_loop_macro|.rst - -.. |handmade/function-ast-add_for_loop_macro| replace:: to be documented in |handmade/function-ast-add_for_loop_macro|.rst - -.. |handmade/function-ast-make_capture_macro| replace:: to be documented in |handmade/function-ast-make_capture_macro|.rst - -.. |handmade/function-ast-add_capture_macro| replace:: to be documented in |handmade/function-ast-add_capture_macro|.rst - -.. |handmade/function-ast-make_type_macro| replace:: to be documented in |handmade/function-ast-make_type_macro|.rst - -.. |handmade/function-ast-add_type_macro| replace:: to be documented in |handmade/function-ast-add_type_macro|.rst - -.. |handmade/function-ast-make_simulate_macro| replace:: to be documented in |handmade/function-ast-make_simulate_macro|.rst - -.. |handmade/function-ast-add_simulate_macro| replace:: to be documented in |handmade/function-ast-add_simulate_macro|.rst - -.. |handmade/function-ast-this_program| replace:: to be documented in |handmade/function-ast-this_program|.rst - -.. |handmade/function-ast-this_module| replace:: to be documented in |handmade/function-ast-this_module|.rst - -.. |handmade/function-ast-find_module_via_rtti| replace:: to be documented in |handmade/function-ast-find_module_via_rtti|.rst - -.. |handmade/function-ast-module_find_annotation| replace:: to be documented in |handmade/function-ast-module_find_annotation|.rst - -.. |handmade/function-ast-module_find_type_annotation| replace:: to be documented in |handmade/function-ast-module_find_type_annotation|.rst - -.. |handmade/function-ast-find_module_function_via_rtti| replace:: to be documented in |handmade/function-ast-find_module_function_via_rtti|.rst - -.. |handmade/function-ast-compiling_program| replace:: to be documented in |handmade/function-ast-compiling_program|.rst - -.. |handmade/function-ast-compiling_module| replace:: to be documented in |handmade/function-ast-compiling_module|.rst - -.. |handmade/function-ast-for_each_module| replace:: to be documented in |handmade/function-ast-for_each_module|.rst - -.. |handmade/function-ast-for_each_module_no_order| replace:: to be documented in |handmade/function-ast-for_each_module_no_order|.rst - -.. |handmade/function-ast-for_each_function| replace:: to be documented in |handmade/function-ast-for_each_function|.rst - -.. |handmade/function-ast-for_each_generic| replace:: to be documented in |handmade/function-ast-for_each_generic|.rst - -.. |handmade/function-ast-force_at| replace:: to be documented in |handmade/function-ast-force_at|.rst - -.. |handmade/function-ast-force_generated| replace:: to be documented in |handmade/function-ast-force_generated|.rst - -.. |handmade/function-ast-parse_mangled_name| replace:: to be documented in |handmade/function-ast-parse_mangled_name|.rst - -.. |handmade/function-ast-collect_dependencies| replace:: to be documented in |handmade/function-ast-collect_dependencies|.rst - -.. |handmade/function-ast-add_function| replace:: to be documented in |handmade/function-ast-add_function|.rst - -.. |handmade/function-ast-add_generic| replace:: to be documented in |handmade/function-ast-add_generic|.rst - -.. |handmade/function-ast-add_variable| replace:: to be documented in |handmade/function-ast-add_variable|.rst - -.. |handmade/function-ast-add_keyword| replace:: to be documented in |handmade/function-ast-add_keyword|.rst - -.. |handmade/function-ast-add_type_function| replace:: to be documented in |handmade/function-ast-add_type_function|.rst - -.. |handmade/function-ast-find_variable| replace:: to be documented in |handmade/function-ast-find_variable|.rst - -.. |handmade/function-ast-find_matching_variable| replace:: to be documented in |handmade/function-ast-find_matching_variable|.rst - -.. |handmade/function-ast-get_current_search_module| replace:: to be documented in |handmade/function-ast-get_current_search_module|.rst - -.. |handmade/function-ast-can_access_global_variable| replace:: to be documented in |handmade/function-ast-can_access_global_variable|.rst - -.. |handmade/function-ast-add_structure| replace:: to be documented in |handmade/function-ast-add_structure|.rst - -.. |handmade/function-ast-remove_structure| replace:: to be documented in |handmade/function-ast-remove_structure|.rst - -.. |handmade/function-ast-clone_structure| replace:: to be documented in |handmade/function-ast-clone_structure|.rst - -.. |handmade/function-ast-add_alias| replace:: to be documented in |handmade/function-ast-add_alias|.rst - -.. |handmade/function-ast-describe_typedecl| replace:: to be documented in |handmade/function-ast-describe_typedecl|.rst - -.. |handmade/function-ast-describe_typedecl_cpp| replace:: to be documented in |handmade/function-ast-describe_typedecl_cpp|.rst - -.. |handmade/function-ast-describe_expression| replace:: to be documented in |handmade/function-ast-describe_expression|.rst - -.. |handmade/function-ast-describe_function| replace:: to be documented in |handmade/function-ast-describe_function|.rst - -.. |handmade/function-ast-describe_program| replace:: to be documented in |handmade/function-ast-describe_program|.rst - -.. |handmade/function-ast-find_bitfield_name| replace:: to be documented in |handmade/function-ast-find_bitfield_name|.rst - -.. |handmade/function-ast-find_enum_name| replace:: to be documented in |handmade/function-ast-find_enum_name|.rst - -.. |handmade/function-ast-find_enum_value| replace:: to be documented in |handmade/function-ast-find_enum_value|.rst - -.. |handmade/function-ast-find_structure_field| replace:: to be documented in |handmade/function-ast-find_structure_field|.rst - -.. |handmade/function-ast-get_mangled_name| replace:: to be documented in |handmade/function-ast-get_mangled_name|.rst - -.. |handmade/function-ast-get_expression_annotation| replace:: to be documented in |handmade/function-ast-get_expression_annotation|.rst - -.. |handmade/function-ast-not_inferred| replace:: to be documented in |handmade/function-ast-not_inferred|.rst - -.. |handmade/function-ast-das_to_string| replace:: to be documented in |handmade/function-ast-das_to_string|.rst - -.. |handmade/function-ast-clone_expression| replace:: to be documented in |handmade/function-ast-clone_expression|.rst - -.. |handmade/function-ast-clone_function| replace:: to be documented in |handmade/function-ast-clone_function|.rst - -.. |handmade/function-ast-clone_variable| replace:: to be documented in |handmade/function-ast-clone_variable|.rst - -.. |handmade/function-ast-is_temp_type| replace:: to be documented in |handmade/function-ast-is_temp_type|.rst - -.. |handmade/function-ast-is_same_type| replace:: to be documented in |handmade/function-ast-is_same_type|.rst - -.. |handmade/function-ast-clone_type| replace:: to be documented in |handmade/function-ast-clone_type|.rst - -.. |handmade/function-ast-get_variant_field_offset| replace:: to be documented in |handmade/function-ast-get_variant_field_offset|.rst - -.. |handmade/function-ast-get_tuple_field_offset| replace:: to be documented in |handmade/function-ast-get_tuple_field_offset|.rst - -.. |handmade/function-ast-any_table_foreach| replace:: to be documented in |handmade/function-ast-any_table_foreach|.rst - -.. |handmade/function-ast-any_array_foreach| replace:: to be documented in |handmade/function-ast-any_array_foreach|.rst - -.. |handmade/function-ast-any_array_size| replace:: to be documented in |handmade/function-ast-any_array_size|.rst - -.. |handmade/function-ast-any_table_size| replace:: to be documented in |handmade/function-ast-any_table_size|.rst - -.. |handmade/function-ast-get_underlying_value_type| replace:: to be documented in |handmade/function-ast-get_underlying_value_type|.rst - -.. |handmade/function-ast-get_handled_type_field_offset| replace:: to be documented in |handmade/function-ast-get_handled_type_field_offset|.rst - -.. |handmade/function-ast-get_handled_type_field_type| replace:: to be documented in |handmade/function-ast-get_handled_type_field_type|.rst - -.. |handmade/function-ast-get_handled_type_field_type_declaration| replace:: to be documented in |handmade/function-ast-get_handled_type_field_type_declaration|.rst - -.. |handmade/function-ast-get_handled_type_index_type_declaration| replace:: to be documented in |handmade/function-ast-get_handled_type_index_type_declaration|.rst - -.. |handmade/function-ast-get_vector_ptr_at_index| replace:: to be documented in |handmade/function-ast-get_vector_ptr_at_index|.rst - -.. |handmade/function-ast-get_vector_length| replace:: to be documented in |handmade/function-ast-get_vector_length|.rst - -.. |handmade/function-ast-for_each_typedef| replace:: to be documented in |handmade/function-ast-for_each_typedef|.rst - -.. |handmade/function-ast-for_each_enumeration| replace:: to be documented in |handmade/function-ast-for_each_enumeration|.rst - -.. |handmade/function-ast-for_each_structure| replace:: to be documented in |handmade/function-ast-for_each_structure|.rst - -.. |handmade/function-ast-for_each_global| replace:: to be documented in |handmade/function-ast-for_each_global|.rst - -.. |handmade/function-ast-for_each_annotation_ordered| replace:: to be documented in |handmade/function-ast-for_each_annotation_ordered|.rst - -.. |handmade/function-ast-for_each_call_macro| replace:: to be documented in |handmade/function-ast-for_each_call_macro|.rst - -.. |handmade/function-ast-for_each_reader_macro| replace:: to be documented in |handmade/function-ast-for_each_reader_macro|.rst - -.. |handmade/function-ast-for_each_variant_macro| replace:: to be documented in |handmade/function-ast-for_each_variant_macro|.rst - -.. |handmade/function-ast-for_each_for_loop_macro| replace:: to be documented in |handmade/function-ast-for_each_for_loop_macro|.rst - -.. |handmade/function-ast-for_each_typeinfo_macro| replace:: to be documented in |handmade/function-ast-for_each_typeinfo_macro|.rst - -.. |handmade/function-ast-for_each_typemacro| replace:: to be documented in |handmade/function-ast-for_each_typemacro|.rst - -.. |handmade/function-ast-for_each_field| replace:: to be documented in |handmade/function-ast-for_each_field|.rst - -.. |handmade/function-ast-has_field| replace:: to be documented in |handmade/function-ast-has_field|.rst - -.. |handmade/function-ast-get_field_type| replace:: to be documented in |handmade/function-ast-get_field_type|.rst - -.. |handmade/function-ast-add_module_require| replace:: to be documented in |handmade/function-ast-add_module_require|.rst - -.. |handmade/function-ast-is_visible_directly| replace:: to be documented in |handmade/function-ast-is_visible_directly|.rst - -.. |handmade/function-ast-get_ast_context| replace:: to be documented in |handmade/function-ast-get_ast_context|.rst - -.. |handmade/function-ast-make_clone_structure| replace:: to be documented in |handmade/function-ast-make_clone_structure|.rst - -.. |handmade/function-ast-is_expr_like_call| replace:: to be documented in |handmade/function-ast-is_expr_like_call|.rst - -.. |handmade/function-ast-is_expr_const| replace:: to be documented in |handmade/function-ast-is_expr_const|.rst - -.. |handmade/function-ast-make_call| replace:: to be documented in |handmade/function-ast-make_call|.rst - -.. |handmade/function-ast-eval_single_expression| replace:: to be documented in |handmade/function-ast-eval_single_expression|.rst - -.. |handmade/function-ast-macro_error| replace:: to be documented in |handmade/function-ast-macro_error|.rst - -.. |handmade/function-ast-builtin_ast_make_class_rtti| replace:: to be documented in |handmade/function-ast-builtin_ast_make_class_rtti|.rst - -.. |handmade/function-ast-builtin_ast_make_class_finalize| replace:: to be documented in |handmade/function-ast-builtin_ast_make_class_finalize|.rst - -.. |handmade/function-ast-builtin_ast_make_class_constructor| replace:: to be documented in |handmade/function-ast-builtin_ast_make_class_constructor|.rst - -.. |handmade/function-ast-builtin_ast_modify_to_class_member| replace:: to be documented in |handmade/function-ast-builtin_ast_modify_to_class_member|.rst - -.. |handmade/function-ast-find_unique_structure| replace:: to be documented in |handmade/function-ast-find_unique_structure|.rst - -.. |handmade/function-ast-module_find_structure| replace:: to be documented in |handmade/function-ast-module_find_structure|.rst - -.. |handmade/function-ast-get_use_global_variables| replace:: to be documented in |handmade/function-ast-get_use_global_variables|.rst - -.. |handmade/function-ast-get_use_functions| replace:: to be documented in |handmade/function-ast-get_use_functions|.rst - -.. |handmade/function-ast-make_type_info_structure| replace:: to be documented in |handmade/function-ast-make_type_info_structure|.rst - -.. |handmade/function-ast-to_compilation_log| replace:: to be documented in |handmade/function-ast-to_compilation_log|.rst - -.. |handmade/function-ast-add_module_option| replace:: to be documented in |handmade/function-ast-add_module_option|.rst - -.. |handmade/function-ast-get_function_aot_hash| replace:: to be documented in |handmade/function-ast-get_function_aot_hash|.rst - -.. |handmade/function-ast-get_aot_hash_comment| replace:: to be documented in |handmade/function-ast-get_aot_hash_comment|.rst - -.. |handmade/function-ast-infer_generic_type| replace:: to be documented in |handmade/function-ast-infer_generic_type|.rst - -.. |handmade/function-ast-update_alias_map| replace:: to be documented in |handmade/function-ast-update_alias_map|.rst - -.. |handmade/function-ast-make_type_info| replace:: to be documented in |handmade/function-ast-make_type_info|.rst - -.. |handmade/function-ast-make_variable_debug_info| replace:: to be documented in |handmade/function-ast-make_variable_debug_info|.rst - -.. |handmade/function-ast-make_struct_variable_debug_info| replace:: to be documented in |handmade/function-ast-make_struct_variable_debug_info|.rst - -.. |handmade/function-ast-make_struct_debug_info| replace:: to be documented in |handmade/function-ast-make_struct_debug_info|.rst - -.. |handmade/function-ast-make_function_debug_info| replace:: to be documented in |handmade/function-ast-make_function_debug_info|.rst - -.. |handmade/function-ast-make_enum_debug_info| replace:: to be documented in |handmade/function-ast-make_enum_debug_info|.rst - -.. |handmade/function-ast-make_invokable_type_debug_info| replace:: to be documented in |handmade/function-ast-make_invokable_type_debug_info|.rst - -.. |handmade/function-ast-debug_helper_iter_structs| replace:: to be documented in |handmade/function-ast-debug_helper_iter_structs|.rst - -.. |handmade/function-ast-debug_helper_iter_types| replace:: to be documented in |handmade/function-ast-debug_helper_iter_types|.rst - -.. |handmade/function-ast-debug_helper_iter_vars| replace:: to be documented in |handmade/function-ast-debug_helper_iter_vars|.rst - -.. |handmade/function-ast-debug_helper_iter_funcs| replace:: to be documented in |handmade/function-ast-debug_helper_iter_funcs|.rst - -.. |handmade/function-ast-debug_helper_iter_enums| replace:: to be documented in |handmade/function-ast-debug_helper_iter_enums|.rst - -.. |handmade/function-ast-debug_helper_find_type_cppname| replace:: to be documented in |handmade/function-ast-debug_helper_find_type_cppname|.rst - -.. |handmade/function-ast-debug_helper_find_struct_cppname| replace:: to be documented in |handmade/function-ast-debug_helper_find_struct_cppname|.rst - -.. |handmade/function-ast-macro_aot_infix| replace:: to be documented in |handmade/function-ast-macro_aot_infix|.rst - -.. |handmade/function-ast-clone_file_info| replace:: to be documented in |handmade/function-ast-clone_file_info|.rst - -.. |handmade/function-ast-for_each_module_function| replace:: to be documented in |handmade/function-ast-for_each_module_function|.rst - -.. |handmade/function-ast-getInitSemanticHashWithDep| replace:: to be documented in |handmade/function-ast-getInitSemanticHashWithDep|.rst - -.. |handmade/function-ast-get_function_hash_by_id| replace:: to be documented in |handmade/function-ast-get_function_hash_by_id|.rst - -.. |handmade/function-ast-aot_require| replace:: to be documented in |handmade/function-ast-aot_require|.rst - -.. |handmade/function-ast-find_struct_field_parent| replace:: to be documented in |handmade/function-ast-find_struct_field_parent|.rst - -.. |handmade/function-ast-aot_type_ann_get_field_ptr| replace:: to be documented in |handmade/function-ast-aot_type_ann_get_field_ptr|.rst - -.. |handmade/function-ast-aot_need_type_info| replace:: to be documented in |handmade/function-ast-aot_need_type_info|.rst - -.. |handmade/function-ast-get_aot_arg_suffix| replace:: to be documented in |handmade/function-ast-get_aot_arg_suffix|.rst - -.. |handmade/function-ast-get_aot_arg_prefix| replace:: to be documented in |handmade/function-ast-get_aot_arg_prefix|.rst - -.. |handmade/function-ast-get_func_aot_prefix| replace:: to be documented in |handmade/function-ast-get_func_aot_prefix|.rst - -.. |handmade/function-ast-get_struct_aot_prefix| replace:: to be documented in |handmade/function-ast-get_struct_aot_prefix|.rst - -.. |handmade/function-ast-get_aot_name| replace:: to be documented in |handmade/function-ast-get_aot_name|.rst - -.. |handmade/function-ast-write_aot_body| replace:: to be documented in |handmade/function-ast-write_aot_body|.rst - -.. |handmade/function-ast-write_aot_suffix| replace:: to be documented in |handmade/function-ast-write_aot_suffix|.rst - -.. |handmade/function-ast-write_aot_macro_suffix| replace:: to be documented in |handmade/function-ast-write_aot_macro_suffix|.rst - -.. |handmade/function-ast-write_aot_macro_prefix| replace:: to be documented in |handmade/function-ast-write_aot_macro_prefix|.rst - -.. |handmade/function-ast-aot_previsit_get_field_ptr| replace:: to be documented in |handmade/function-ast-aot_previsit_get_field_ptr|.rst - -.. |handmade/function-ast-aot_previsit_get_field| replace:: to be documented in |handmade/function-ast-aot_previsit_get_field|.rst - -.. |handmade/function-ast-aot_visit_get_field| replace:: to be documented in |handmade/function-ast-aot_visit_get_field|.rst - -.. |handmade/function-ast-string_builder_str| replace:: to be documented in |handmade/function-ast-string_builder_str|.rst - -.. |handmade/function-ast-string_builder_clear| replace:: to be documented in |handmade/function-ast-string_builder_clear|.rst - -.. |handmade/function-ast-make_block_type| replace:: to be documented in |handmade/function-ast-make_block_type|.rst - -.. |handmade/function-ast-add_structure_alias| replace:: to be documented in |handmade/function-ast-add_structure_alias|.rst - -.. |handmade/function-ast-get_structure_alias| replace:: to be documented in |handmade/function-ast-get_structure_alias|.rst - -.. |handmade/function-ast-for_each_structure_alias| replace:: to be documented in |handmade/function-ast-for_each_structure_alias|.rst - -.. |handmade/function-ast-find_compiling_function_by_mangled_name_hash| replace:: to be documented in |handmade/function-ast-find_compiling_function_by_mangled_name_hash|.rst - -.. |handmade/function-ast-describe| replace:: to be documented in |handmade/function-ast-describe|.rst - -.. |handmade/function-ast-describe_cpp| replace:: to be documented in |handmade/function-ast-describe_cpp|.rst - -.. |handmade/function-ast-add_new_block_annotation| replace:: to be documented in |handmade/function-ast-add_new_block_annotation|.rst - -.. |handmade/function-ast-add_new_function_annotation| replace:: to be documented in |handmade/function-ast-add_new_function_annotation|.rst - -.. |handmade/function-ast-add_new_contract_annotation| replace:: to be documented in |handmade/function-ast-add_new_contract_annotation|.rst - -.. |handmade/function-ast-add_new_structure_annotation| replace:: to be documented in |handmade/function-ast-add_new_structure_annotation|.rst - -.. |handmade/function-ast-add_new_enumeration_annotation| replace:: to be documented in |handmade/function-ast-add_new_enumeration_annotation|.rst - -.. |handmade/function-ast-add_new_variant_macro| replace:: to be documented in |handmade/function-ast-add_new_variant_macro|.rst - -.. |handmade/function-ast-add_new_for_loop_macro| replace:: to be documented in |handmade/function-ast-add_new_for_loop_macro|.rst - -.. |handmade/function-ast-add_new_capture_macro| replace:: to be documented in |handmade/function-ast-add_new_capture_macro|.rst - -.. |handmade/function-ast-add_new_type_macro| replace:: to be documented in |handmade/function-ast-add_new_type_macro|.rst - -.. |handmade/function-ast-add_new_simulate_macro| replace:: to be documented in |handmade/function-ast-add_new_simulate_macro|.rst - -.. |handmade/function-ast-add_new_reader_macro| replace:: to be documented in |handmade/function-ast-add_new_reader_macro|.rst - -.. |handmade/function-ast-add_new_comment_reader| replace:: to be documented in |handmade/function-ast-add_new_comment_reader|.rst - -.. |handmade/function-ast-add_new_call_macro| replace:: to be documented in |handmade/function-ast-add_new_call_macro|.rst - -.. |handmade/function-ast-add_new_typeinfo_macro| replace:: to be documented in |handmade/function-ast-add_new_typeinfo_macro|.rst - -.. |handmade/function-ast-add_new_infer_macro| replace:: to be documented in |handmade/function-ast-add_new_infer_macro|.rst - -.. |handmade/function-ast-add_new_dirty_infer_macro| replace:: to be documented in |handmade/function-ast-add_new_dirty_infer_macro|.rst - -.. |handmade/function-ast-add_new_lint_macro| replace:: to be documented in |handmade/function-ast-add_new_lint_macro|.rst - -.. |handmade/function-ast-add_new_global_lint_macro| replace:: to be documented in |handmade/function-ast-add_new_global_lint_macro|.rst - -.. |handmade/function-ast-add_new_optimization_macro| replace:: to be documented in |handmade/function-ast-add_new_optimization_macro|.rst - -.. |handmade/function-ast-find_module| replace:: to be documented in |handmade/function-ast-find_module|.rst - -.. |handmade/function-ast-find_compiling_module| replace:: to be documented in |handmade/function-ast-find_compiling_module|.rst - -.. |handmade/structure_annotation-ast-ModuleLibrary| replace:: to be documented in |handmade/structure_annotation-ast-ModuleLibrary|.rst - -.. |handmade/structure_annotation-ast-Expression| replace:: to be documented in |handmade/structure_annotation-ast-Expression|.rst - -.. |handmade/structure_annotation-ast-TypeDecl| replace:: to be documented in |handmade/structure_annotation-ast-TypeDecl|.rst - -.. |handmade/structure_annotation-ast-Structure| replace:: to be documented in |handmade/structure_annotation-ast-Structure|.rst - -.. |handmade/structure_annotation-ast-FieldDeclaration| replace:: to be documented in |handmade/structure_annotation-ast-FieldDeclaration|.rst - -.. |handmade/structure_annotation-ast-EnumEntry| replace:: to be documented in |handmade/structure_annotation-ast-EnumEntry|.rst - -.. |handmade/structure_annotation-ast-Enumeration| replace:: to be documented in |handmade/structure_annotation-ast-Enumeration|.rst - -.. |handmade/structure_annotation-ast-Function| replace:: to be documented in |handmade/structure_annotation-ast-Function|.rst - -.. |handmade/structure_annotation-ast-BuiltInFunction| replace:: to be documented in |handmade/structure_annotation-ast-BuiltInFunction|.rst - -.. |handmade/structure_annotation-ast-ExternalFnBase| replace:: to be documented in |handmade/structure_annotation-ast-ExternalFnBase|.rst - -.. |handmade/structure_annotation-ast-InferHistory| replace:: to be documented in |handmade/structure_annotation-ast-InferHistory|.rst - -.. |handmade/structure_annotation-ast-Variable| replace:: to be documented in |handmade/structure_annotation-ast-Variable|.rst - -.. |handmade/structure_annotation-ast-AstContext| replace:: to be documented in |handmade/structure_annotation-ast-AstContext|.rst - -.. |handmade/structure_annotation-ast-ExprBlock| replace:: to be documented in |handmade/structure_annotation-ast-ExprBlock|.rst - -.. |handmade/structure_annotation-ast-ExprLet| replace:: to be documented in |handmade/structure_annotation-ast-ExprLet|.rst - -.. |handmade/structure_annotation-ast-ExprStringBuilder| replace:: to be documented in |handmade/structure_annotation-ast-ExprStringBuilder|.rst - -.. |handmade/structure_annotation-ast-MakeFieldDecl| replace:: to be documented in |handmade/structure_annotation-ast-MakeFieldDecl|.rst - -.. |handmade/any_annotation-ast-MakeStruct| replace:: to be documented in |handmade/any_annotation-ast-MakeStruct|.rst - -.. |handmade/structure_annotation-ast-ExprNamedCall| replace:: to be documented in |handmade/structure_annotation-ast-ExprNamedCall|.rst - -.. |handmade/structure_annotation-ast-ExprLooksLikeCall| replace:: to be documented in |handmade/structure_annotation-ast-ExprLooksLikeCall|.rst - -.. |handmade/structure_annotation-ast-ExprCallFunc| replace:: to be documented in |handmade/structure_annotation-ast-ExprCallFunc|.rst - -.. |handmade/structure_annotation-ast-ExprNew| replace:: to be documented in |handmade/structure_annotation-ast-ExprNew|.rst - -.. |handmade/structure_annotation-ast-ExprCall| replace:: to be documented in |handmade/structure_annotation-ast-ExprCall|.rst - -.. |handmade/structure_annotation-ast-ExprPtr2Ref| replace:: to be documented in |handmade/structure_annotation-ast-ExprPtr2Ref|.rst - -.. |handmade/structure_annotation-ast-ExprNullCoalescing| replace:: to be documented in |handmade/structure_annotation-ast-ExprNullCoalescing|.rst - -.. |handmade/structure_annotation-ast-ExprAt| replace:: to be documented in |handmade/structure_annotation-ast-ExprAt|.rst - -.. |handmade/structure_annotation-ast-ExprSafeAt| replace:: to be documented in |handmade/structure_annotation-ast-ExprSafeAt|.rst - -.. |handmade/structure_annotation-ast-ExprIs| replace:: to be documented in |handmade/structure_annotation-ast-ExprIs|.rst - -.. |handmade/structure_annotation-ast-ExprOp| replace:: to be documented in |handmade/structure_annotation-ast-ExprOp|.rst - -.. |handmade/structure_annotation-ast-ExprOp2| replace:: to be documented in |handmade/structure_annotation-ast-ExprOp2|.rst - -.. |handmade/structure_annotation-ast-ExprOp3| replace:: to be documented in |handmade/structure_annotation-ast-ExprOp3|.rst - -.. |handmade/structure_annotation-ast-ExprCopy| replace:: to be documented in |handmade/structure_annotation-ast-ExprCopy|.rst - -.. |handmade/structure_annotation-ast-ExprMove| replace:: to be documented in |handmade/structure_annotation-ast-ExprMove|.rst - -.. |handmade/structure_annotation-ast-ExprClone| replace:: to be documented in |handmade/structure_annotation-ast-ExprClone|.rst - -.. |handmade/structure_annotation-ast-ExprWith| replace:: to be documented in |handmade/structure_annotation-ast-ExprWith|.rst - -.. |handmade/structure_annotation-ast-ExprAssume| replace:: to be documented in |handmade/structure_annotation-ast-ExprAssume|.rst - -.. |handmade/structure_annotation-ast-ExprWhile| replace:: to be documented in |handmade/structure_annotation-ast-ExprWhile|.rst - -.. |handmade/structure_annotation-ast-ExprTryCatch| replace:: to be documented in |handmade/structure_annotation-ast-ExprTryCatch|.rst - -.. |handmade/structure_annotation-ast-ExprIfThenElse| replace:: to be documented in |handmade/structure_annotation-ast-ExprIfThenElse|.rst - -.. |handmade/structure_annotation-ast-ExprFor| replace:: to be documented in |handmade/structure_annotation-ast-ExprFor|.rst - -.. |handmade/structure_annotation-ast-ExprMakeLocal| replace:: to be documented in |handmade/structure_annotation-ast-ExprMakeLocal|.rst - -.. |handmade/structure_annotation-ast-ExprMakeStruct| replace:: to be documented in |handmade/structure_annotation-ast-ExprMakeStruct|.rst - -.. |handmade/structure_annotation-ast-ExprMakeVariant| replace:: to be documented in |handmade/structure_annotation-ast-ExprMakeVariant|.rst - -.. |handmade/structure_annotation-ast-ExprMakeArray| replace:: to be documented in |handmade/structure_annotation-ast-ExprMakeArray|.rst - -.. |handmade/structure_annotation-ast-ExprMakeTuple| replace:: to be documented in |handmade/structure_annotation-ast-ExprMakeTuple|.rst - -.. |handmade/structure_annotation-ast-ExprArrayComprehension| replace:: to be documented in |handmade/structure_annotation-ast-ExprArrayComprehension|.rst - -.. |handmade/structure_annotation-ast-TypeInfoMacro| replace:: to be documented in |handmade/structure_annotation-ast-TypeInfoMacro|.rst - -.. |handmade/structure_annotation-ast-ExprTypeInfo| replace:: to be documented in |handmade/structure_annotation-ast-ExprTypeInfo|.rst - -.. |handmade/structure_annotation-ast-ExprTypeDecl| replace:: to be documented in |handmade/structure_annotation-ast-ExprTypeDecl|.rst - -.. |handmade/structure_annotation-ast-ExprLabel| replace:: to be documented in |handmade/structure_annotation-ast-ExprLabel|.rst - -.. |handmade/structure_annotation-ast-ExprGoto| replace:: to be documented in |handmade/structure_annotation-ast-ExprGoto|.rst - -.. |handmade/structure_annotation-ast-ExprRef2Value| replace:: to be documented in |handmade/structure_annotation-ast-ExprRef2Value|.rst - -.. |handmade/structure_annotation-ast-ExprRef2Ptr| replace:: to be documented in |handmade/structure_annotation-ast-ExprRef2Ptr|.rst - -.. |handmade/structure_annotation-ast-ExprAddr| replace:: to be documented in |handmade/structure_annotation-ast-ExprAddr|.rst - -.. |handmade/structure_annotation-ast-ExprAssert| replace:: to be documented in |handmade/structure_annotation-ast-ExprAssert|.rst - -.. |handmade/structure_annotation-ast-ExprQuote| replace:: to be documented in |handmade/structure_annotation-ast-ExprQuote|.rst - -.. |handmade/structure_annotation-ast-ExprStaticAssert| replace:: to be documented in |handmade/structure_annotation-ast-ExprStaticAssert|.rst - -.. |handmade/structure_annotation-ast-ExprDebug| replace:: to be documented in |handmade/structure_annotation-ast-ExprDebug|.rst - -.. |handmade/structure_annotation-ast-ExprInvoke| replace:: to be documented in |handmade/structure_annotation-ast-ExprInvoke|.rst - -.. |handmade/structure_annotation-ast-ExprErase| replace:: to be documented in |handmade/structure_annotation-ast-ExprErase|.rst - -.. |handmade/structure_annotation-ast-ExprSetInsert| replace:: to be documented in |handmade/structure_annotation-ast-ExprSetInsert|.rst - -.. |handmade/structure_annotation-ast-ExprFind| replace:: to be documented in |handmade/structure_annotation-ast-ExprFind|.rst - -.. |handmade/structure_annotation-ast-ExprKeyExists| replace:: to be documented in |handmade/structure_annotation-ast-ExprKeyExists|.rst - -.. |handmade/structure_annotation-ast-ExprAscend| replace:: to be documented in |handmade/structure_annotation-ast-ExprAscend|.rst - -.. |handmade/structure_annotation-ast-ExprCast| replace:: to be documented in |handmade/structure_annotation-ast-ExprCast|.rst - -.. |handmade/structure_annotation-ast-ExprDelete| replace:: to be documented in |handmade/structure_annotation-ast-ExprDelete|.rst - -.. |handmade/structure_annotation-ast-ExprVar| replace:: to be documented in |handmade/structure_annotation-ast-ExprVar|.rst - -.. |handmade/structure_annotation-ast-ExprTag| replace:: to be documented in |handmade/structure_annotation-ast-ExprTag|.rst - -.. |handmade/structure_annotation-ast-ExprSwizzle| replace:: to be documented in |handmade/structure_annotation-ast-ExprSwizzle|.rst - -.. |handmade/structure_annotation-ast-ExprField| replace:: to be documented in |handmade/structure_annotation-ast-ExprField|.rst - -.. |handmade/structure_annotation-ast-ExprSafeField| replace:: to be documented in |handmade/structure_annotation-ast-ExprSafeField|.rst - -.. |handmade/structure_annotation-ast-ExprIsVariant| replace:: to be documented in |handmade/structure_annotation-ast-ExprIsVariant|.rst - -.. |handmade/structure_annotation-ast-ExprAsVariant| replace:: to be documented in |handmade/structure_annotation-ast-ExprAsVariant|.rst - -.. |handmade/structure_annotation-ast-ExprSafeAsVariant| replace:: to be documented in |handmade/structure_annotation-ast-ExprSafeAsVariant|.rst - -.. |handmade/structure_annotation-ast-ExprOp1| replace:: to be documented in |handmade/structure_annotation-ast-ExprOp1|.rst - -.. |handmade/structure_annotation-ast-ExprReturn| replace:: to be documented in |handmade/structure_annotation-ast-ExprReturn|.rst - -.. |handmade/structure_annotation-ast-ExprYield| replace:: to be documented in |handmade/structure_annotation-ast-ExprYield|.rst - -.. |handmade/structure_annotation-ast-ExprBreak| replace:: to be documented in |handmade/structure_annotation-ast-ExprBreak|.rst - -.. |handmade/structure_annotation-ast-ExprContinue| replace:: to be documented in |handmade/structure_annotation-ast-ExprContinue|.rst - -.. |handmade/structure_annotation-ast-ExprConst| replace:: to be documented in |handmade/structure_annotation-ast-ExprConst|.rst - -.. |handmade/structure_annotation-ast-ExprFakeContext| replace:: to be documented in |handmade/structure_annotation-ast-ExprFakeContext|.rst - -.. |handmade/structure_annotation-ast-ExprFakeLineInfo| replace:: to be documented in |handmade/structure_annotation-ast-ExprFakeLineInfo|.rst - -.. |handmade/structure_annotation-ast-ExprConstPtr| replace:: to be documented in |handmade/structure_annotation-ast-ExprConstPtr|.rst - -.. |handmade/structure_annotation-ast-ExprConstInt8| replace:: to be documented in |handmade/structure_annotation-ast-ExprConstInt8|.rst - -.. |handmade/structure_annotation-ast-ExprConstInt16| replace:: to be documented in |handmade/structure_annotation-ast-ExprConstInt16|.rst - -.. |handmade/structure_annotation-ast-ExprConstInt64| replace:: to be documented in |handmade/structure_annotation-ast-ExprConstInt64|.rst - -.. |handmade/structure_annotation-ast-ExprConstInt| replace:: to be documented in |handmade/structure_annotation-ast-ExprConstInt|.rst - -.. |handmade/structure_annotation-ast-ExprConstInt2| replace:: to be documented in |handmade/structure_annotation-ast-ExprConstInt2|.rst - -.. |handmade/structure_annotation-ast-ExprConstInt3| replace:: to be documented in |handmade/structure_annotation-ast-ExprConstInt3|.rst - -.. |handmade/structure_annotation-ast-ExprConstInt4| replace:: to be documented in |handmade/structure_annotation-ast-ExprConstInt4|.rst - -.. |handmade/structure_annotation-ast-ExprConstUInt8| replace:: to be documented in |handmade/structure_annotation-ast-ExprConstUInt8|.rst - -.. |handmade/structure_annotation-ast-ExprConstUInt16| replace:: to be documented in |handmade/structure_annotation-ast-ExprConstUInt16|.rst - -.. |handmade/structure_annotation-ast-ExprConstUInt64| replace:: to be documented in |handmade/structure_annotation-ast-ExprConstUInt64|.rst - -.. |handmade/structure_annotation-ast-ExprConstUInt| replace:: to be documented in |handmade/structure_annotation-ast-ExprConstUInt|.rst - -.. |handmade/structure_annotation-ast-ExprConstUInt2| replace:: to be documented in |handmade/structure_annotation-ast-ExprConstUInt2|.rst - -.. |handmade/structure_annotation-ast-ExprConstUInt3| replace:: to be documented in |handmade/structure_annotation-ast-ExprConstUInt3|.rst - -.. |handmade/structure_annotation-ast-ExprConstUInt4| replace:: to be documented in |handmade/structure_annotation-ast-ExprConstUInt4|.rst - -.. |handmade/structure_annotation-ast-ExprConstRange| replace:: to be documented in |handmade/structure_annotation-ast-ExprConstRange|.rst - -.. |handmade/structure_annotation-ast-ExprConstURange| replace:: to be documented in |handmade/structure_annotation-ast-ExprConstURange|.rst - -.. |handmade/structure_annotation-ast-ExprConstRange64| replace:: to be documented in |handmade/structure_annotation-ast-ExprConstRange64|.rst - -.. |handmade/structure_annotation-ast-ExprConstURange64| replace:: to be documented in |handmade/structure_annotation-ast-ExprConstURange64|.rst - -.. |handmade/structure_annotation-ast-ExprConstFloat| replace:: to be documented in |handmade/structure_annotation-ast-ExprConstFloat|.rst - -.. |handmade/structure_annotation-ast-ExprConstFloat2| replace:: to be documented in |handmade/structure_annotation-ast-ExprConstFloat2|.rst - -.. |handmade/structure_annotation-ast-ExprConstFloat3| replace:: to be documented in |handmade/structure_annotation-ast-ExprConstFloat3|.rst - -.. |handmade/structure_annotation-ast-ExprConstFloat4| replace:: to be documented in |handmade/structure_annotation-ast-ExprConstFloat4|.rst - -.. |handmade/structure_annotation-ast-ExprConstDouble| replace:: to be documented in |handmade/structure_annotation-ast-ExprConstDouble|.rst - -.. |handmade/structure_annotation-ast-ExprConstBool| replace:: to be documented in |handmade/structure_annotation-ast-ExprConstBool|.rst - -.. |handmade/structure_annotation-ast-CaptureEntry| replace:: to be documented in |handmade/structure_annotation-ast-CaptureEntry|.rst - -.. |handmade/structure_annotation-ast-ExprMakeBlock| replace:: to be documented in |handmade/structure_annotation-ast-ExprMakeBlock|.rst - -.. |handmade/structure_annotation-ast-ExprMakeGenerator| replace:: to be documented in |handmade/structure_annotation-ast-ExprMakeGenerator|.rst - -.. |handmade/structure_annotation-ast-ExprMemZero| replace:: to be documented in |handmade/structure_annotation-ast-ExprMemZero|.rst - -.. |handmade/structure_annotation-ast-ExprConstEnumeration| replace:: to be documented in |handmade/structure_annotation-ast-ExprConstEnumeration|.rst - -.. |handmade/structure_annotation-ast-ExprConstBitfield| replace:: to be documented in |handmade/structure_annotation-ast-ExprConstBitfield|.rst - -.. |handmade/structure_annotation-ast-ExprConstString| replace:: to be documented in |handmade/structure_annotation-ast-ExprConstString|.rst - -.. |handmade/structure_annotation-ast-ExprUnsafe| replace:: to be documented in |handmade/structure_annotation-ast-ExprUnsafe|.rst - -.. |handmade/structure_annotation-ast-VisitorAdapter| replace:: to be documented in |handmade/structure_annotation-ast-VisitorAdapter|.rst - -.. |handmade/structure_annotation-ast-FunctionAnnotation| replace:: to be documented in |handmade/structure_annotation-ast-FunctionAnnotation|.rst - -.. |handmade/structure_annotation-ast-StructureAnnotation| replace:: to be documented in |handmade/structure_annotation-ast-StructureAnnotation|.rst - -.. |handmade/structure_annotation-ast-EnumerationAnnotation| replace:: to be documented in |handmade/structure_annotation-ast-EnumerationAnnotation|.rst - -.. |handmade/structure_annotation-ast-PassMacro| replace:: to be documented in |handmade/structure_annotation-ast-PassMacro|.rst - -.. |handmade/structure_annotation-ast-ReaderMacro| replace:: to be documented in |handmade/structure_annotation-ast-ReaderMacro|.rst - -.. |handmade/structure_annotation-ast-CommentReader| replace:: to be documented in |handmade/structure_annotation-ast-CommentReader|.rst - -.. |handmade/structure_annotation-ast-CallMacro| replace:: to be documented in |handmade/structure_annotation-ast-CallMacro|.rst - -.. |handmade/structure_annotation-ast-VariantMacro| replace:: to be documented in |handmade/structure_annotation-ast-VariantMacro|.rst - -.. |handmade/structure_annotation-ast-ForLoopMacro| replace:: to be documented in |handmade/structure_annotation-ast-ForLoopMacro|.rst - -.. |handmade/structure_annotation-ast-CaptureMacro| replace:: to be documented in |handmade/structure_annotation-ast-CaptureMacro|.rst - -.. |handmade/structure_annotation-ast-TypeMacro| replace:: to be documented in |handmade/structure_annotation-ast-TypeMacro|.rst - -.. |handmade/structure_annotation-ast-SimulateMacro| replace:: to be documented in |handmade/structure_annotation-ast-SimulateMacro|.rst - -.. |handmade/structure_annotation-ast-ExprReader| replace:: to be documented in |handmade/structure_annotation-ast-ExprReader|.rst - -.. |handmade/structure_annotation-ast-ExprCallMacro| replace:: to be documented in |handmade/structure_annotation-ast-ExprCallMacro|.rst - diff --git a/doc/source/stdlib/detail/ast_block_to_loop.rst b/doc/source/stdlib/detail/ast_block_to_loop.rst deleted file mode 100644 index 5e1e347e27..0000000000 --- a/doc/source/stdlib/detail/ast_block_to_loop.rst +++ /dev/null @@ -1,26 +0,0 @@ -.. |detail/class-ast_block_to_loop-B2LVisitor| replace:: to be documented in |detail/class-ast_block_to_loop-B2LVisitor|.rst - -.. |detail/method-ast_block_to_loop-B2LVisitor.preVisitExprBlock| replace:: to be documented in |detail/method-ast_block_to_loop-B2LVisitor.preVisitExprBlock|.rst - -.. |detail/method-ast_block_to_loop-B2LVisitor.visitExprBlock| replace:: to be documented in |detail/method-ast_block_to_loop-B2LVisitor.visitExprBlock|.rst - -.. |detail/method-ast_block_to_loop-B2LVisitor.preVisitExprCall| replace:: to be documented in |detail/method-ast_block_to_loop-B2LVisitor.preVisitExprCall|.rst - -.. |detail/method-ast_block_to_loop-B2LVisitor.visitExprCall| replace:: to be documented in |detail/method-ast_block_to_loop-B2LVisitor.visitExprCall|.rst - -.. |detail/method-ast_block_to_loop-B2LVisitor.preVisitExprWhile| replace:: to be documented in |detail/method-ast_block_to_loop-B2LVisitor.preVisitExprWhile|.rst - -.. |detail/method-ast_block_to_loop-B2LVisitor.visitExprWhile| replace:: to be documented in |detail/method-ast_block_to_loop-B2LVisitor.visitExprWhile|.rst - -.. |detail/method-ast_block_to_loop-B2LVisitor.preVisitExprFor| replace:: to be documented in |detail/method-ast_block_to_loop-B2LVisitor.preVisitExprFor|.rst - -.. |detail/method-ast_block_to_loop-B2LVisitor.visitExprFor| replace:: to be documented in |detail/method-ast_block_to_loop-B2LVisitor.visitExprFor|.rst - -.. |detail/method-ast_block_to_loop-B2LVisitor.visitExprReturn| replace:: to be documented in |detail/method-ast_block_to_loop-B2LVisitor.visitExprReturn|.rst - -.. |detail/method-ast_block_to_loop-B2LVisitor.visitExprBreak| replace:: to be documented in |detail/method-ast_block_to_loop-B2LVisitor.visitExprBreak|.rst - -.. |detail/method-ast_block_to_loop-B2LVisitor.visitExprContinue| replace:: to be documented in |detail/method-ast_block_to_loop-B2LVisitor.visitExprContinue|.rst - -.. |detail/function-ast_block_to_loop-convert_block_to_loop| replace:: to be documented in |detail/function-ast_block_to_loop-convert_block_to_loop|.rst - diff --git a/doc/source/stdlib/detail/ast_boost.rst b/doc/source/stdlib/detail/ast_boost.rst deleted file mode 100644 index 4eafbb6792..0000000000 --- a/doc/source/stdlib/detail/ast_boost.rst +++ /dev/null @@ -1,162 +0,0 @@ -.. |handmade/typedef-ast_boost-AnnotationDeclarationPtr| replace:: to be documented in |handmade/typedef-ast_boost-AnnotationDeclarationPtr|.rst - -.. |handmade/typedef-ast_boost-DebugExpressionFlags| replace:: to be documented in |handmade/typedef-ast_boost-DebugExpressionFlags|.rst - -.. |handmade/class-ast_boost-MacroMacro| replace:: to be documented in |handmade/class-ast_boost-MacroMacro|.rst - -.. |handmade/method-ast_boost-MacroMacro.apply| replace:: to be documented in |handmade/method-ast_boost-MacroMacro.apply|.rst - -.. |handmade/class-ast_boost-TagFunctionAnnotation| replace:: to be documented in |handmade/class-ast_boost-TagFunctionAnnotation|.rst - -.. |handmade/method-ast_boost-TagFunctionAnnotation.apply| replace:: to be documented in |handmade/method-ast_boost-TagFunctionAnnotation.apply|.rst - -.. |handmade/class-ast_boost-TagStructureAnnotation| replace:: to be documented in |handmade/class-ast_boost-TagStructureAnnotation|.rst - -.. |handmade/method-ast_boost-TagStructureAnnotation.apply| replace:: to be documented in |handmade/method-ast_boost-TagStructureAnnotation.apply|.rst - -.. |handmade/class-ast_boost-SetupAnyAnnotation| replace:: to be documented in |handmade/class-ast_boost-SetupAnyAnnotation|.rst - -.. |handmade/method-ast_boost-SetupAnyAnnotation.apply| replace:: to be documented in |handmade/method-ast_boost-SetupAnyAnnotation.apply|.rst - -.. |handmade/method-ast_boost-SetupAnyAnnotation.setup_call| replace:: to be documented in |handmade/method-ast_boost-SetupAnyAnnotation.setup_call|.rst - -.. |handmade/class-ast_boost-SetupFunctionAnnotation| replace:: to be documented in |handmade/class-ast_boost-SetupFunctionAnnotation|.rst - -.. |handmade/class-ast_boost-SetupBlockAnnotation| replace:: to be documented in |handmade/class-ast_boost-SetupBlockAnnotation|.rst - -.. |handmade/class-ast_boost-SetupStructureAnnotation| replace:: to be documented in |handmade/class-ast_boost-SetupStructureAnnotation|.rst - -.. |handmade/class-ast_boost-SetupEnumerationAnnotation| replace:: to be documented in |handmade/class-ast_boost-SetupEnumerationAnnotation|.rst - -.. |handmade/class-ast_boost-SetupContractAnnotation| replace:: to be documented in |handmade/class-ast_boost-SetupContractAnnotation|.rst - -.. |handmade/class-ast_boost-SetupReaderMacro| replace:: to be documented in |handmade/class-ast_boost-SetupReaderMacro|.rst - -.. |handmade/class-ast_boost-SetupCommentReader| replace:: to be documented in |handmade/class-ast_boost-SetupCommentReader|.rst - -.. |handmade/class-ast_boost-SetupVariantMacro| replace:: to be documented in |handmade/class-ast_boost-SetupVariantMacro|.rst - -.. |handmade/class-ast_boost-SetupForLoopMacro| replace:: to be documented in |handmade/class-ast_boost-SetupForLoopMacro|.rst - -.. |handmade/class-ast_boost-SetupCaptureMacro| replace:: to be documented in |handmade/class-ast_boost-SetupCaptureMacro|.rst - -.. |handmade/class-ast_boost-SetupTypeMacro| replace:: to be documented in |handmade/class-ast_boost-SetupTypeMacro|.rst - -.. |handmade/class-ast_boost-SetupSimulateMacro| replace:: to be documented in |handmade/class-ast_boost-SetupSimulateMacro|.rst - -.. |handmade/class-ast_boost-SetupCallMacro| replace:: to be documented in |handmade/class-ast_boost-SetupCallMacro|.rst - -.. |handmade/class-ast_boost-SetupTypeInfoMacro| replace:: to be documented in |handmade/class-ast_boost-SetupTypeInfoMacro|.rst - -.. |handmade/class-ast_boost-SetupInferMacro| replace:: to be documented in |handmade/class-ast_boost-SetupInferMacro|.rst - -.. |handmade/class-ast_boost-SetupDirtyInferMacro| replace:: to be documented in |handmade/class-ast_boost-SetupDirtyInferMacro|.rst - -.. |handmade/class-ast_boost-SetupLintMacro| replace:: to be documented in |handmade/class-ast_boost-SetupLintMacro|.rst - -.. |handmade/class-ast_boost-SetupGlobalLintMacro| replace:: to be documented in |handmade/class-ast_boost-SetupGlobalLintMacro|.rst - -.. |handmade/class-ast_boost-SetupOptimizationMacro| replace:: to be documented in |handmade/class-ast_boost-SetupOptimizationMacro|.rst - -.. |handmade/class-ast_boost-TagFunctionMacro| replace:: to be documented in |handmade/class-ast_boost-TagFunctionMacro|.rst - -.. |handmade/method-ast_boost-TagFunctionMacro.apply| replace:: to be documented in |handmade/method-ast_boost-TagFunctionMacro.apply|.rst - -.. |handmade/method-ast_boost-TagFunctionMacro.setup_call| replace:: to be documented in |handmade/method-ast_boost-TagFunctionMacro.setup_call|.rst - -.. |handmade/class-ast_boost-BetterRttiVisitor| replace:: to be documented in |handmade/class-ast_boost-BetterRttiVisitor|.rst - -.. |handmade/method-ast_boost-BetterRttiVisitor.visitExprIsVariant| replace:: to be documented in |handmade/method-ast_boost-BetterRttiVisitor.visitExprIsVariant|.rst - -.. |handmade/method-ast_boost-BetterRttiVisitor.visitExprAsVariant| replace:: to be documented in |handmade/method-ast_boost-BetterRttiVisitor.visitExprAsVariant|.rst - -.. |handmade/method-ast_boost-BetterRttiVisitor.visitExprSafeAsVariant| replace:: to be documented in |handmade/method-ast_boost-BetterRttiVisitor.visitExprSafeAsVariant|.rst - -.. |handmade/function-ast_boost-isVectorType| replace:: to be documented in |handmade/function-ast_boost-isVectorType|.rst - -.. |handmade/function-ast_boost-describe| replace:: to be documented in |handmade/function-ast_boost-describe|.rst - -.. |handmade/function-ast_boost-isExpression| replace:: to be documented in |handmade/function-ast_boost-isExpression|.rst - -.. |handmade/function-ast_boost-is_same_or_inherited| replace:: to be documented in |handmade/function-ast_boost-is_same_or_inherited|.rst - -.. |handmade/function-ast_boost-is_class_method| replace:: to be documented in |handmade/function-ast_boost-is_class_method|.rst - -.. |handmade/function-ast_boost-emplace_new| replace:: to be documented in |handmade/function-ast_boost-emplace_new|.rst - -.. |handmade/function-ast_boost-override_method| replace:: to be documented in |handmade/function-ast_boost-override_method|.rst - -.. |handmade/function-ast_boost-find_arg| replace:: to be documented in |handmade/function-ast_boost-find_arg|.rst - -.. |handmade/function-ast_boost-find_unique_function| replace:: to be documented in |handmade/function-ast_boost-find_unique_function|.rst - -.. |handmade/function-ast_boost-find_unique_generic| replace:: to be documented in |handmade/function-ast_boost-find_unique_generic|.rst - -.. |handmade/function-ast_boost-setup_call_list| replace:: to be documented in |handmade/function-ast_boost-setup_call_list|.rst - -.. |handmade/function-ast_boost-setup_macro| replace:: to be documented in |handmade/function-ast_boost-setup_macro|.rst - -.. |handmade/function-ast_boost-panic_expr_as| replace:: to be documented in |handmade/function-ast_boost-panic_expr_as|.rst - -.. |handmade/function-ast_boost-`is`BuiltInFunction| replace:: to be documented in |handmade/function-ast_boost-`is`BuiltInFunction|.rst - -.. |handmade/function-ast_boost-`as`BuiltInFunction| replace:: to be documented in |handmade/function-ast_boost-`as`BuiltInFunction|.rst - -.. |handmade/function-ast_boost-`is`ExternalFnBase| replace:: to be documented in |handmade/function-ast_boost-`is`ExternalFnBase|.rst - -.. |handmade/function-ast_boost-`as`ExternalFnBase| replace:: to be documented in |handmade/function-ast_boost-`as`ExternalFnBase|.rst - -.. |handmade/function-ast_boost-`is`FunctionAnnotation| replace:: to be documented in |handmade/function-ast_boost-`is`FunctionAnnotation|.rst - -.. |handmade/function-ast_boost-`as`FunctionAnnotation| replace:: to be documented in |handmade/function-ast_boost-`as`FunctionAnnotation|.rst - -.. |handmade/function-ast_boost-`is`StructureAnnotation| replace:: to be documented in |handmade/function-ast_boost-`is`StructureAnnotation|.rst - -.. |handmade/function-ast_boost-`as`StructureAnnotation| replace:: to be documented in |handmade/function-ast_boost-`as`StructureAnnotation|.rst - -.. |handmade/function-ast_boost-walk_and_convert| replace:: to be documented in |handmade/function-ast_boost-walk_and_convert|.rst - -.. |handmade/function-ast_boost-find_annotation| replace:: to be documented in |handmade/function-ast_boost-find_annotation|.rst - -.. |handmade/function-ast_boost-append_annotation| replace:: to be documented in |handmade/function-ast_boost-append_annotation|.rst - -.. |handmade/function-ast_boost-add_annotation_argument| replace:: to be documented in |handmade/function-ast_boost-add_annotation_argument|.rst - -.. |handmade/function-ast_boost-get_for_source_index| replace:: to be documented in |handmade/function-ast_boost-get_for_source_index|.rst - -.. |handmade/function-ast_boost-make_static_assert_false| replace:: to be documented in |handmade/function-ast_boost-make_static_assert_false|.rst - -.. |handmade/function-ast_boost-function_to_type| replace:: to be documented in |handmade/function-ast_boost-function_to_type|.rst - -.. |handmade/function-ast_boost-visit_finally| replace:: to be documented in |handmade/function-ast_boost-visit_finally|.rst - -.. |handmade/function-ast_boost-isCMRES| replace:: to be documented in |handmade/function-ast_boost-isCMRES|.rst - -.. |handmade/function-ast_boost-isMakeLocal| replace:: to be documented in |handmade/function-ast_boost-isMakeLocal|.rst - -.. |handmade/function-ast_boost-isExprCallFunc| replace:: to be documented in |handmade/function-ast_boost-isExprCallFunc|.rst - -.. |handmade/function-ast_boost-get_workhorse_types| replace:: to be documented in |handmade/function-ast_boost-get_workhorse_types|.rst - -.. |handmade/function-ast_boost-find_argument_index| replace:: to be documented in |handmade/function-ast_boost-find_argument_index|.rst - -.. |handmade/function-ast_boost-isCMRESType| replace:: to be documented in |handmade/function-ast_boost-isCMRESType|.rst - -.. |handmade/function-ast_boost-debug_expression| replace:: to be documented in |handmade/function-ast_boost-debug_expression|.rst - -.. |handmade/function-ast_boost-getVectorElementCount| replace:: to be documented in |handmade/function-ast_boost-getVectorElementCount|.rst - -.. |handmade/function-ast_boost-getVectorElementSize| replace:: to be documented in |handmade/function-ast_boost-getVectorElementSize|.rst - -.. |handmade/function-ast_boost-getVectorElementType| replace:: to be documented in |handmade/function-ast_boost-getVectorElementType|.rst - -.. |handmade/function-ast_boost-getVectorOffset| replace:: to be documented in |handmade/function-ast_boost-getVectorOffset|.rst - -.. |handmade/function-ast_boost-describe_bitfield| replace:: to be documented in |handmade/function-ast_boost-describe_bitfield|.rst - -.. |handmade/function-ast_boost-describe_function_short| replace:: to be documented in |handmade/function-ast_boost-describe_function_short|.rst - -.. |handmade/function-ast_boost-setup_tag_annotation| replace:: to be documented in |handmade/function-ast_boost-setup_tag_annotation|.rst - -.. |handmade/function-ast_boost-convert_to_expression| replace:: to be documented in |handmade/function-ast_boost-convert_to_expression|.rst - diff --git a/doc/source/stdlib/detail/ast_cursor.rst b/doc/source/stdlib/detail/ast_cursor.rst deleted file mode 100644 index 9d5e62b291..0000000000 --- a/doc/source/stdlib/detail/ast_cursor.rst +++ /dev/null @@ -1,18 +0,0 @@ -.. |detail/structure-ast_cursor-CursorHit| replace:: to be documented in |detail/structure-ast_cursor-CursorHit|.rst - -.. |detail/class-ast_cursor-CursorVisitor| replace:: to be documented in |detail/class-ast_cursor-CursorVisitor|.rst - -.. |detail/method-ast_cursor-CursorVisitor.preVisitFunction| replace:: to be documented in |detail/method-ast_cursor-CursorVisitor.preVisitFunction|.rst - -.. |detail/method-ast_cursor-CursorVisitor.visitFunction| replace:: to be documented in |detail/method-ast_cursor-CursorVisitor.visitFunction|.rst - -.. |detail/method-ast_cursor-CursorVisitor.preVisitExpression| replace:: to be documented in |detail/method-ast_cursor-CursorVisitor.preVisitExpression|.rst - -.. |detail/function-ast_cursor-cursor_inside| replace:: to be documented in |detail/function-ast_cursor-cursor_inside|.rst - -.. |detail/function-ast_cursor-find_at_cursor| replace:: to be documented in |detail/function-ast_cursor-find_at_cursor|.rst - -.. |detail/function-ast_cursor-find_at_cursor_in_function| replace:: to be documented in |detail/function-ast_cursor-find_at_cursor_in_function|.rst - -.. |detail/function-ast_cursor-describe| replace:: to be documented in |detail/function-ast_cursor-describe|.rst - diff --git a/doc/source/stdlib/detail/ast_used.rst b/doc/source/stdlib/detail/ast_used.rst deleted file mode 100644 index 8dacf17ccd..0000000000 --- a/doc/source/stdlib/detail/ast_used.rst +++ /dev/null @@ -1,10 +0,0 @@ -.. |detail/structure-ast_used-OnlyUsedTypes| replace:: to be documented in |detail/structure-ast_used-OnlyUsedTypes|.rst - -.. |detail/class-ast_used-TypeVisitor| replace:: to be documented in |detail/class-ast_used-TypeVisitor|.rst - -.. |detail/method-ast_used-TypeVisitor.preVisitTypeDecl| replace:: to be documented in |detail/method-ast_used-TypeVisitor.preVisitTypeDecl|.rst - -.. |detail/method-ast_used-TypeVisitor.collect| replace:: to be documented in |detail/method-ast_used-TypeVisitor.collect|.rst - -.. |detail/function-ast_used-collect_used_types| replace:: to be documented in |detail/function-ast_used-collect_used_types|.rst - diff --git a/doc/source/stdlib/detail/async_boost.rst b/doc/source/stdlib/detail/async_boost.rst deleted file mode 100644 index 0375e1cbef..0000000000 --- a/doc/source/stdlib/detail/async_boost.rst +++ /dev/null @@ -1,46 +0,0 @@ -.. |detail/enumeration-async_boost-AssignOp| replace:: to be documented in |detail/enumeration-async_boost-AssignOp|.rst - -.. |detail/class-async_boost-AwaitMacro| replace:: to be documented in |detail/class-async_boost-AwaitMacro|.rst - -.. |detail/method-async_boost-AwaitMacro.transform| replace:: to be documented in |detail/method-async_boost-AwaitMacro.transform|.rst - -.. |detail/class-async_boost-AwaitCoroutineMacro| replace:: to be documented in |detail/class-async_boost-AwaitCoroutineMacro|.rst - -.. |detail/method-async_boost-AwaitCoroutineMacro.transform| replace:: to be documented in |detail/method-async_boost-AwaitCoroutineMacro.transform|.rst - -.. |detail/class-async_boost-AsyncMacro| replace:: to be documented in |detail/class-async_boost-AsyncMacro|.rst - -.. |detail/method-async_boost-AsyncMacro.apply| replace:: to be documented in |detail/method-async_boost-AsyncMacro.apply|.rst - -.. |detail/class-async_boost-CollectAndReplaceIteratorFields| replace:: to be documented in |detail/class-async_boost-CollectAndReplaceIteratorFields|.rst - -.. |detail/method-async_boost-CollectAndReplaceIteratorFields.preVisitExprBlock| replace:: to be documented in |detail/method-async_boost-CollectAndReplaceIteratorFields.preVisitExprBlock|.rst - -.. |detail/method-async_boost-CollectAndReplaceIteratorFields.visitExprBlock| replace:: to be documented in |detail/method-async_boost-CollectAndReplaceIteratorFields.visitExprBlock|.rst - -.. |detail/method-async_boost-CollectAndReplaceIteratorFields.visitExprLet| replace:: to be documented in |detail/method-async_boost-CollectAndReplaceIteratorFields.visitExprLet|.rst - -.. |detail/method-async_boost-CollectAndReplaceIteratorFields.visitExprCall| replace:: to be documented in |detail/method-async_boost-CollectAndReplaceIteratorFields.visitExprCall|.rst - -.. |detail/method-async_boost-CollectAndReplaceIteratorFields.visitExprCopy| replace:: to be documented in |detail/method-async_boost-CollectAndReplaceIteratorFields.visitExprCopy|.rst - -.. |detail/method-async_boost-CollectAndReplaceIteratorFields.visitExprMove| replace:: to be documented in |detail/method-async_boost-CollectAndReplaceIteratorFields.visitExprMove|.rst - -.. |detail/method-async_boost-CollectAndReplaceIteratorFields.visitExprClone| replace:: to be documented in |detail/method-async_boost-CollectAndReplaceIteratorFields.visitExprClone|.rst - -.. |detail/method-async_boost-CollectAndReplaceIteratorFields.visitExprReturn| replace:: to be documented in |detail/method-async_boost-CollectAndReplaceIteratorFields.visitExprReturn|.rst - -.. |detail/method-async_boost-CollectAndReplaceIteratorFields.visitExprYield| replace:: to be documented in |detail/method-async_boost-CollectAndReplaceIteratorFields.visitExprYield|.rst - -.. |detail/function-async_boost-await_next_frame| replace:: to be documented in |detail/function-async_boost-await_next_frame|.rst - -.. |detail/function-async_boost-await| replace:: to be documented in |detail/function-async_boost-await|.rst - -.. |detail/function-async_boost-async_run| replace:: to be documented in |detail/function-async_boost-async_run|.rst - -.. |detail/function-async_boost-async_run_all| replace:: to be documented in |detail/function-async_boost-async_run_all|.rst - -.. |detail/function-async_boost-async_timeout| replace:: to be documented in |detail/function-async_boost-async_timeout|.rst - -.. |detail/function-async_boost-async_race| replace:: to be documented in |detail/function-async_boost-async_race|.rst - diff --git a/doc/source/stdlib/detail/base64.rst b/doc/source/stdlib/detail/base64.rst deleted file mode 100644 index b7f756f65d..0000000000 --- a/doc/source/stdlib/detail/base64.rst +++ /dev/null @@ -1,8 +0,0 @@ -.. |detail/function-base64-BASE64_DECODE_OUT_SIZE| replace:: to be documented in |detail/function-base64-BASE64_DECODE_OUT_SIZE|.rst - -.. |detail/function-base64-BASE64_ENCODE_OUT_SIZE| replace:: to be documented in |detail/function-base64-BASE64_ENCODE_OUT_SIZE|.rst - -.. |detail/function-base64-base64_decode| replace:: to be documented in |detail/function-base64-base64_decode|.rst - -.. |detail/function-base64-base64_encode| replace:: to be documented in |detail/function-base64-base64_encode|.rst - diff --git a/doc/source/stdlib/detail/bitfield_boost.rst b/doc/source/stdlib/detail/bitfield_boost.rst deleted file mode 100644 index 623472996d..0000000000 --- a/doc/source/stdlib/detail/bitfield_boost.rst +++ /dev/null @@ -1,12 +0,0 @@ -.. |detail/function-bitfield_boost-[]| replace:: to be documented in |detail/function-bitfield_boost-[]|.rst - -.. |detail/function-bitfield_boost-[]=| replace:: to be documented in |detail/function-bitfield_boost-[]=|.rst - -.. |detail/function-bitfield_boost-[]&&=| replace:: to be documented in |detail/function-bitfield_boost-[]&&=|.rst - -.. |detail/function-bitfield_boost-[]||=| replace:: to be documented in |detail/function-bitfield_boost-[]||=|.rst - -.. |detail/function-bitfield_boost-[]^^=| replace:: to be documented in |detail/function-bitfield_boost-[]^^=|.rst - -.. |detail/function-bitfield_boost-each_bit| replace:: to be documented in |detail/function-bitfield_boost-each_bit|.rst - diff --git a/doc/source/stdlib/detail/bitfield_trait.rst b/doc/source/stdlib/detail/bitfield_trait.rst deleted file mode 100644 index 8a8fb0a20b..0000000000 --- a/doc/source/stdlib/detail/bitfield_trait.rst +++ /dev/null @@ -1,12 +0,0 @@ -.. |detail/class-bitfield_trait-EachBitfieldMacro| replace:: to be documented in |detail/class-bitfield_trait-EachBitfieldMacro|.rst - -.. |detail/method-bitfield_trait-EachBitfieldMacro.transform| replace:: to be documented in |detail/method-bitfield_trait-EachBitfieldMacro.transform|.rst - -.. |detail/class-bitfield_trait-EachBitNameBitfieldMacro| replace:: to be documented in |detail/class-bitfield_trait-EachBitNameBitfieldMacro|.rst - -.. |detail/method-bitfield_trait-EachBitNameBitfieldMacro.transform| replace:: to be documented in |detail/method-bitfield_trait-EachBitNameBitfieldMacro.transform|.rst - -.. |detail/function-bitfield_trait-each| replace:: to be documented in |detail/function-bitfield_trait-each|.rst - -.. |detail/function-bitfield_trait-each_bit_name| replace:: to be documented in |detail/function-bitfield_trait-each_bit_name|.rst - diff --git a/doc/source/stdlib/detail/bool_array.rst b/doc/source/stdlib/detail/bool_array.rst deleted file mode 100644 index 18290b5c33..0000000000 --- a/doc/source/stdlib/detail/bool_array.rst +++ /dev/null @@ -1,4 +0,0 @@ -.. |detail/structure-bool_array-BoolArray| replace:: to be documented in |detail/structure-bool_array-BoolArray|.rst - -.. |detail/function-bool_array-each| replace:: to be documented in |detail/function-bool_array-each|.rst - diff --git a/doc/source/stdlib/detail/builtin.rst b/doc/source/stdlib/detail/builtin.rst deleted file mode 100644 index c07ee4d91e..0000000000 --- a/doc/source/stdlib/detail/builtin.rst +++ /dev/null @@ -1,414 +0,0 @@ -.. |handmade/typedef-builtin-print_flags| replace:: to be documented in |handmade/typedef-builtin-print_flags|.rst - -.. |handmade/function-builtin-interval| replace:: to be documented in |handmade/function-builtin-interval|.rst - -.. |handmade/function-builtin-clear| replace:: to be documented in |handmade/function-builtin-clear|.rst - -.. |handmade/function-builtin-length| replace:: to be documented in |handmade/function-builtin-length|.rst - -.. |handmade/function-builtin-capacity| replace:: to be documented in |handmade/function-builtin-capacity|.rst - -.. |handmade/function-builtin-lock_count| replace:: to be documented in |handmade/function-builtin-lock_count|.rst - -.. |handmade/function-builtin-get_das_root| replace:: to be documented in |handmade/function-builtin-get_das_root|.rst - -.. |handmade/function-builtin-get_das_version| replace:: to be documented in |handmade/function-builtin-get_das_version|.rst - -.. |handmade/function-builtin-builtin_get_command_line_arguments| replace:: to be documented in |handmade/function-builtin-builtin_get_command_line_arguments|.rst - -.. |handmade/function-builtin-is_compiling| replace:: to be documented in |handmade/function-builtin-is_compiling|.rst - -.. |handmade/function-builtin-is_compiling_macros| replace:: to be documented in |handmade/function-builtin-is_compiling_macros|.rst - -.. |handmade/function-builtin-is_compiling_macros_in_module| replace:: to be documented in |handmade/function-builtin-is_compiling_macros_in_module|.rst - -.. |handmade/function-builtin-is_reporting_compilation_errors| replace:: to be documented in |handmade/function-builtin-is_reporting_compilation_errors|.rst - -.. |handmade/function-builtin-get_context_share_counter| replace:: to be documented in |handmade/function-builtin-get_context_share_counter|.rst - -.. |handmade/function-builtin-empty| replace:: to be documented in |handmade/function-builtin-empty|.rst - -.. |handmade/function-builtin-count| replace:: to be documented in |handmade/function-builtin-count|.rst - -.. |handmade/function-builtin-ucount| replace:: to be documented in |handmade/function-builtin-ucount|.rst - -.. |handmade/function-builtin-panic| replace:: to be documented in |handmade/function-builtin-panic|.rst - -.. |handmade/function-builtin-print| replace:: to be documented in |handmade/function-builtin-print|.rst - -.. |handmade/function-builtin-feint| replace:: to be documented in |handmade/function-builtin-feint|.rst - -.. |handmade/function-builtin-error| replace:: to be documented in |handmade/function-builtin-error|.rst - -.. |handmade/function-builtin-sprint| replace:: to be documented in |handmade/function-builtin-sprint|.rst - -.. |handmade/function-builtin-sprint_json| replace:: to be documented in |handmade/function-builtin-sprint_json|.rst - -.. |handmade/function-builtin-sscan_json| replace:: to be documented in |handmade/function-builtin-sscan_json|.rst - -.. |handmade/function-builtin-terminate| replace:: to be documented in |handmade/function-builtin-terminate|.rst - -.. |handmade/function-builtin-breakpoint| replace:: to be documented in |handmade/function-builtin-breakpoint|.rst - -.. |handmade/function-builtin-stackwalk| replace:: to be documented in |handmade/function-builtin-stackwalk|.rst - -.. |handmade/function-builtin-reset_profiler| replace:: to be documented in |handmade/function-builtin-reset_profiler|.rst - -.. |handmade/function-builtin-dump_profile_info| replace:: to be documented in |handmade/function-builtin-dump_profile_info|.rst - -.. |handmade/function-builtin-collect_profile_info| replace:: to be documented in |handmade/function-builtin-collect_profile_info|.rst - -.. |handmade/function-builtin-variant_index| replace:: to be documented in |handmade/function-builtin-variant_index|.rst - -.. |handmade/function-builtin-set_variant_index| replace:: to be documented in |handmade/function-builtin-set_variant_index|.rst - -.. |handmade/function-builtin-heap_allocation_stats| replace:: to be documented in |handmade/function-builtin-heap_allocation_stats|.rst - -.. |handmade/function-builtin-heap_allocation_count| replace:: to be documented in |handmade/function-builtin-heap_allocation_count|.rst - -.. |handmade/function-builtin-string_heap_allocation_stats| replace:: to be documented in |handmade/function-builtin-string_heap_allocation_stats|.rst - -.. |handmade/function-builtin-string_heap_allocation_count| replace:: to be documented in |handmade/function-builtin-string_heap_allocation_count|.rst - -.. |handmade/function-builtin-heap_bytes_allocated| replace:: to be documented in |handmade/function-builtin-heap_bytes_allocated|.rst - -.. |handmade/function-builtin-heap_depth| replace:: to be documented in |handmade/function-builtin-heap_depth|.rst - -.. |handmade/function-builtin-string_heap_bytes_allocated| replace:: to be documented in |handmade/function-builtin-string_heap_bytes_allocated|.rst - -.. |handmade/function-builtin-string_heap_depth| replace:: to be documented in |handmade/function-builtin-string_heap_depth|.rst - -.. |handmade/function-builtin-heap_collect| replace:: to be documented in |handmade/function-builtin-heap_collect|.rst - -.. |handmade/function-builtin-string_heap_report| replace:: to be documented in |handmade/function-builtin-string_heap_report|.rst - -.. |handmade/function-builtin-heap_report| replace:: to be documented in |handmade/function-builtin-heap_report|.rst - -.. |handmade/function-builtin-memory_report| replace:: to be documented in |handmade/function-builtin-memory_report|.rst - -.. |handmade/function-builtin-is_intern_strings| replace:: to be documented in |handmade/function-builtin-is_intern_strings|.rst - -.. |handmade/function-builtin-hash| replace:: to be documented in |handmade/function-builtin-hash|.rst - -.. |handmade/function-builtin-builtin_collect_local_and_zero| replace:: to be documented in |handmade/function-builtin-builtin_collect_local_and_zero|.rst - -.. |handmade/function-builtin-move_new| replace:: to be documented in |handmade/function-builtin-move_new|.rst - -.. |handmade/function-builtin-move| replace:: to be documented in |handmade/function-builtin-move|.rst - -.. |handmade/function-builtin-smart_ptr_clone| replace:: to be documented in |handmade/function-builtin-smart_ptr_clone|.rst - -.. |handmade/function-builtin-smart_ptr_use_count| replace:: to be documented in |handmade/function-builtin-smart_ptr_use_count|.rst - -.. |handmade/function-builtin-smart_ptr_is_valid| replace:: to be documented in |handmade/function-builtin-smart_ptr_is_valid|.rst - -.. |handmade/function-builtin-gc0_save_ptr| replace:: to be documented in |handmade/function-builtin-gc0_save_ptr|.rst - -.. |handmade/function-builtin-gc0_save_smart_ptr| replace:: to be documented in |handmade/function-builtin-gc0_save_smart_ptr|.rst - -.. |handmade/function-builtin-gc0_restore_ptr| replace:: to be documented in |handmade/function-builtin-gc0_restore_ptr|.rst - -.. |handmade/function-builtin-gc0_restore_smart_ptr| replace:: to be documented in |handmade/function-builtin-gc0_restore_smart_ptr|.rst - -.. |handmade/function-builtin-gc0_reset| replace:: to be documented in |handmade/function-builtin-gc0_reset|.rst - -.. |handmade/function-builtin-memcpy| replace:: to be documented in |handmade/function-builtin-memcpy|.rst - -.. |handmade/function-builtin-memcmp| replace:: to be documented in |handmade/function-builtin-memcmp|.rst - -.. |handmade/function-builtin-memset8| replace:: to be documented in |handmade/function-builtin-memset8|.rst - -.. |handmade/function-builtin-memset16| replace:: to be documented in |handmade/function-builtin-memset16|.rst - -.. |handmade/function-builtin-memset32| replace:: to be documented in |handmade/function-builtin-memset32|.rst - -.. |handmade/function-builtin-memset64| replace:: to be documented in |handmade/function-builtin-memset64|.rst - -.. |handmade/function-builtin-memset128| replace:: to be documented in |handmade/function-builtin-memset128|.rst - -.. |handmade/function-builtin-malloc| replace:: to be documented in |handmade/function-builtin-malloc|.rst - -.. |handmade/function-builtin-free| replace:: to be documented in |handmade/function-builtin-free|.rst - -.. |handmade/function-builtin-malloc_usable_size| replace:: to be documented in |handmade/function-builtin-malloc_usable_size|.rst - -.. |handmade/function-builtin-i_das_ptr_inc| replace:: to be documented in |handmade/function-builtin-i_das_ptr_inc|.rst - -.. |handmade/function-builtin-i_das_ptr_dec| replace:: to be documented in |handmade/function-builtin-i_das_ptr_dec|.rst - -.. |handmade/function-builtin-i_das_ptr_add| replace:: to be documented in |handmade/function-builtin-i_das_ptr_add|.rst - -.. |handmade/function-builtin-i_das_ptr_sub| replace:: to be documented in |handmade/function-builtin-i_das_ptr_sub|.rst - -.. |handmade/function-builtin-i_das_ptr_set_add| replace:: to be documented in |handmade/function-builtin-i_das_ptr_set_add|.rst - -.. |handmade/function-builtin-i_das_ptr_set_sub| replace:: to be documented in |handmade/function-builtin-i_das_ptr_set_sub|.rst - -.. |handmade/function-builtin-i_das_ptr_diff| replace:: to be documented in |handmade/function-builtin-i_das_ptr_diff|.rst - -.. |handmade/function-builtin-class_rtti_size| replace:: to be documented in |handmade/function-builtin-class_rtti_size|.rst - -.. |handmade/function-builtin-profile| replace:: to be documented in |handmade/function-builtin-profile|.rst - -.. |handmade/function-builtin-clone| replace:: to be documented in |handmade/function-builtin-clone|.rst - -.. |handmade/function-builtin-peek| replace:: to be documented in |handmade/function-builtin-peek|.rst - -.. |handmade/function-builtin-clone_string| replace:: to be documented in |handmade/function-builtin-clone_string|.rst - -.. |handmade/function-builtin-das_is_dll_build| replace:: to be documented in |handmade/function-builtin-das_is_dll_build|.rst - -.. |handmade/function-builtin-is_in_aot| replace:: to be documented in |handmade/function-builtin-is_in_aot|.rst - -.. |handmade/function-builtin-set_aot| replace:: to be documented in |handmade/function-builtin-set_aot|.rst - -.. |handmade/function-builtin-reset_aot| replace:: to be documented in |handmade/function-builtin-reset_aot|.rst - -.. |handmade/function-builtin-is_in_completion| replace:: to be documented in |handmade/function-builtin-is_in_completion|.rst - -.. |handmade/function-builtin-is_folding| replace:: to be documented in |handmade/function-builtin-is_folding|.rst - -.. |handmade/function-builtin-compiling_file_name| replace:: to be documented in |handmade/function-builtin-compiling_file_name|.rst - -.. |handmade/function-builtin-compiling_module_name| replace:: to be documented in |handmade/function-builtin-compiling_module_name|.rst - -.. |handmade/function-builtin-to_log| replace:: to be documented in |handmade/function-builtin-to_log|.rst - -.. |handmade/function-builtin-to_compiler_log| replace:: to be documented in |handmade/function-builtin-to_compiler_log|.rst - -.. |handmade/function-builtin-clz| replace:: to be documented in |handmade/function-builtin-clz|.rst - -.. |handmade/function-builtin-ctz| replace:: to be documented in |handmade/function-builtin-ctz|.rst - -.. |handmade/function-builtin-popcnt| replace:: to be documented in |handmade/function-builtin-popcnt|.rst - -.. |handmade/function-builtin-mul128| replace:: to be documented in |handmade/function-builtin-mul128|.rst - -.. |handmade/function-builtin-using| replace:: to be documented in |handmade/function-builtin-using|.rst - -.. |handmade/function-builtin-builtin_try_recover| replace:: to be documented in |handmade/function-builtin-builtin_try_recover|.rst - -.. |handmade/function-builtin-eval_main_loop| replace:: to be documented in |handmade/function-builtin-eval_main_loop|.rst - -.. |handmade/function-builtin-is_jit_function| replace:: to be documented in |handmade/function-builtin-is_jit_function|.rst - -.. |handmade/function-builtin-jit_enabled| replace:: to be documented in |handmade/function-builtin-jit_enabled|.rst - -.. |handmade/function-builtin-aot_enabled| replace:: to be documented in |handmade/function-builtin-aot_enabled|.rst - -.. |handmade/function-builtin-__bit_set| replace:: to be documented in |handmade/function-builtin-__bit_set|.rst - -.. |handmade/function-builtin-get_platform_name| replace:: to be documented in |handmade/function-builtin-get_platform_name|.rst - -.. |handmade/function-builtin-get_architecture_name| replace:: to be documented in |handmade/function-builtin-get_architecture_name|.rst - -.. |handmade/function-builtin-fmt| replace:: to be documented in |handmade/function-builtin-fmt|.rst - -.. |handmade/function-builtin-get_clock| replace:: to be documented in |handmade/function-builtin-get_clock|.rst - -.. |handmade/function-builtin-mktime| replace:: to be documented in |handmade/function-builtin-mktime|.rst - -.. |handmade/function-builtin-ref_time_ticks| replace:: to be documented in |handmade/function-builtin-ref_time_ticks|.rst - -.. |handmade/function-builtin-get_time_usec| replace:: to be documented in |handmade/function-builtin-get_time_usec|.rst - -.. |handmade/function-builtin-get_time_nsec| replace:: to be documented in |handmade/function-builtin-get_time_nsec|.rst - -.. |handmade/function-builtin-intptr| replace:: to be documented in |handmade/function-builtin-intptr|.rst - -.. |handmade/function-builtin-resize| replace:: to be documented in |handmade/function-builtin-resize|.rst - -.. |handmade/function-builtin-resize_and_init| replace:: to be documented in |handmade/function-builtin-resize_and_init|.rst - -.. |handmade/function-builtin-resize_no_init| replace:: to be documented in |handmade/function-builtin-resize_no_init|.rst - -.. |handmade/function-builtin-reserve| replace:: to be documented in |handmade/function-builtin-reserve|.rst - -.. |handmade/function-builtin-pop| replace:: to be documented in |handmade/function-builtin-pop|.rst - -.. |handmade/function-builtin-push| replace:: to be documented in |handmade/function-builtin-push|.rst - -.. |handmade/function-builtin-emplace| replace:: to be documented in |handmade/function-builtin-emplace|.rst - -.. |handmade/function-builtin-push_clone| replace:: to be documented in |handmade/function-builtin-push_clone|.rst - -.. |handmade/function-builtin-back| replace:: to be documented in |handmade/function-builtin-back|.rst - -.. |handmade/function-builtin-erase| replace:: to be documented in |handmade/function-builtin-erase|.rst - -.. |handmade/function-builtin-erase_if| replace:: to be documented in |handmade/function-builtin-erase_if|.rst - -.. |handmade/function-builtin-remove_value| replace:: to be documented in |handmade/function-builtin-remove_value|.rst - -.. |handmade/function-builtin-get| replace:: to be documented in |handmade/function-builtin-get|.rst - -.. |handmade/function-builtin-get_value| replace:: to be documented in |handmade/function-builtin-get_value|.rst - -.. |handmade/function-builtin-clone_value| replace:: to be documented in |handmade/function-builtin-clone_value|.rst - -.. |handmade/function-builtin-insert| replace:: to be documented in |handmade/function-builtin-insert|.rst - -.. |handmade/function-builtin-insert_clone| replace:: to be documented in |handmade/function-builtin-insert_clone|.rst - -.. |handmade/function-builtin-emplace_new| replace:: to be documented in |handmade/function-builtin-emplace_new|.rst - -.. |handmade/function-builtin-insert_default| replace:: to be documented in |handmade/function-builtin-insert_default|.rst - -.. |handmade/function-builtin-emplace_default| replace:: to be documented in |handmade/function-builtin-emplace_default|.rst - -.. |handmade/function-builtin-get_with_default| replace:: to be documented in |handmade/function-builtin-get_with_default|.rst - -.. |handmade/function-builtin-modify| replace:: to be documented in |handmade/function-builtin-modify|.rst - -.. |handmade/function-builtin-key_exists| replace:: to be documented in |handmade/function-builtin-key_exists|.rst - -.. |handmade/function-builtin-binary_save| replace:: to be documented in |handmade/function-builtin-binary_save|.rst - -.. |handmade/function-builtin-binary_load| replace:: to be documented in |handmade/function-builtin-binary_load|.rst - -.. |handmade/function-builtin-copy_to_local| replace:: to be documented in |handmade/function-builtin-copy_to_local|.rst - -.. |handmade/function-builtin-move_to_local| replace:: to be documented in |handmade/function-builtin-move_to_local|.rst - -.. |handmade/function-builtin-clone_to_move| replace:: to be documented in |handmade/function-builtin-clone_to_move|.rst - -.. |handmade/function-builtin-clone_dim| replace:: to be documented in |handmade/function-builtin-clone_dim|.rst - -.. |handmade/function-builtin-keys| replace:: to be documented in |handmade/function-builtin-keys|.rst - -.. |handmade/function-builtin-values| replace:: to be documented in |handmade/function-builtin-values|.rst - -.. |handmade/function-builtin-finalize_dim| replace:: to be documented in |handmade/function-builtin-finalize_dim|.rst - -.. |handmade/function-builtin-finalize| replace:: to be documented in |handmade/function-builtin-finalize|.rst - -.. |handmade/function-builtin-lock| replace:: to be documented in |handmade/function-builtin-lock|.rst - -.. |handmade/function-builtin-lock_forever| replace:: to be documented in |handmade/function-builtin-lock_forever|.rst - -.. |handmade/function-builtin-next| replace:: to be documented in |handmade/function-builtin-next|.rst - -.. |handmade/function-builtin-each| replace:: to be documented in |handmade/function-builtin-each|.rst - -.. |handmade/function-builtin-iter_range| replace:: to be documented in |handmade/function-builtin-iter_range|.rst - -.. |handmade/function-builtin-each_ref| replace:: to be documented in |handmade/function-builtin-each_ref|.rst - -.. |handmade/function-builtin-each_enum| replace:: to be documented in |handmade/function-builtin-each_enum|.rst - -.. |handmade/function-builtin-nothing| replace:: to be documented in |handmade/function-builtin-nothing|.rst - -.. |handmade/function-builtin-to_array| replace:: to be documented in |handmade/function-builtin-to_array|.rst - -.. |handmade/function-builtin-to_array_move| replace:: to be documented in |handmade/function-builtin-to_array_move|.rst - -.. |handmade/function-builtin-to_table| replace:: to be documented in |handmade/function-builtin-to_table|.rst - -.. |handmade/function-builtin-to_table_move| replace:: to be documented in |handmade/function-builtin-to_table_move|.rst - -.. |handmade/function-builtin-sort| replace:: to be documented in |handmade/function-builtin-sort|.rst - -.. |handmade/function-builtin-lock_data| replace:: to be documented in |handmade/function-builtin-lock_data|.rst - -.. |handmade/function-builtin-find_index| replace:: to be documented in |handmade/function-builtin-find_index|.rst - -.. |handmade/function-builtin-find_index_if| replace:: to be documented in |handmade/function-builtin-find_index_if|.rst - -.. |handmade/function-builtin-has_value| replace:: to be documented in |handmade/function-builtin-has_value|.rst - -.. |handmade/function-builtin-get_ptr| replace:: to be documented in |handmade/function-builtin-get_ptr|.rst - -.. |handmade/function-builtin-get_const_ptr| replace:: to be documented in |handmade/function-builtin-get_const_ptr|.rst - -.. |handmade/function-builtin-add_ptr_ref| replace:: to be documented in |handmade/function-builtin-add_ptr_ref|.rst - -.. |handmade/function-builtin-get_command_line_arguments| replace:: to be documented in |handmade/function-builtin-get_command_line_arguments|.rst - -.. |handmade/function-builtin-map_to_array| replace:: to be documented in |handmade/function-builtin-map_to_array|.rst - -.. |handmade/function-builtin-map_to_ro_array| replace:: to be documented in |handmade/function-builtin-map_to_ro_array|.rst - -.. |handmade/function-builtin-swap| replace:: to be documented in |handmade/function-builtin-swap|.rst - -.. |handmade/function-builtin-subarray| replace:: to be documented in |handmade/function-builtin-subarray|.rst - -.. |handmade/function-builtin-move_to_ref| replace:: to be documented in |handmade/function-builtin-move_to_ref|.rst - -.. |handmade/function-builtin-consume_argument| replace:: to be documented in |handmade/function-builtin-consume_argument|.rst - -.. |handmade/structure_annotation-builtin-HashBuilder| replace:: to be documented in |handmade/structure_annotation-builtin-HashBuilder|.rst - -.. |handmade/any_annotation-builtin-das_string| replace:: to be documented in |handmade/any_annotation-builtin-das_string|.rst - -.. |handmade/any_annotation-builtin-clock| replace:: to be documented in |handmade/any_annotation-builtin-clock|.rst - -.. |handmade/any_annotation-builtin-dasvector`Error| replace:: to be documented in |handmade/any_annotation-builtin-dasvector`Error|.rst - -.. |handmade/any_annotation-builtin-dasvector`smart_ptr`TypeDecl| replace:: to be documented in |handmade/any_annotation-builtin-dasvector`smart_ptr`TypeDecl|.rst - -.. |handmade/any_annotation-builtin-dasvector`das_string| replace:: to be documented in |handmade/any_annotation-builtin-dasvector`das_string|.rst - -.. |handmade/any_annotation-builtin-dasvector`int| replace:: to be documented in |handmade/any_annotation-builtin-dasvector`int|.rst - -.. |handmade/any_annotation-builtin-dasvector`smart_ptr`Expression| replace:: to be documented in |handmade/any_annotation-builtin-dasvector`smart_ptr`Expression|.rst - -.. |handmade/any_annotation-builtin-dasvector`FieldDeclaration| replace:: to be documented in |handmade/any_annotation-builtin-dasvector`FieldDeclaration|.rst - -.. |handmade/any_annotation-builtin-dasvector`EnumEntry| replace:: to be documented in |handmade/any_annotation-builtin-dasvector`EnumEntry|.rst - -.. |handmade/any_annotation-builtin-dasvector`smart_ptr`Variable| replace:: to be documented in |handmade/any_annotation-builtin-dasvector`smart_ptr`Variable|.rst - -.. |handmade/any_annotation-builtin-dasvector`InferHistory| replace:: to be documented in |handmade/any_annotation-builtin-dasvector`InferHistory|.rst - -.. |handmade/any_annotation-builtin-dasvector`pair`uint`uint| replace:: to be documented in |handmade/any_annotation-builtin-dasvector`pair`uint`uint|.rst - -.. |handmade/any_annotation-builtin-dasvector`LineInfo| replace:: to be documented in |handmade/any_annotation-builtin-dasvector`LineInfo|.rst - -.. |handmade/any_annotation-builtin-dasvector`uint8| replace:: to be documented in |handmade/any_annotation-builtin-dasvector`uint8|.rst - -.. |handmade/any_annotation-builtin-dasvector`smart_ptr`MakeStruct| replace:: to be documented in |handmade/any_annotation-builtin-dasvector`smart_ptr`MakeStruct|.rst - -.. |handmade/any_annotation-builtin-dasvector`smart_ptr`MakeFieldDecl| replace:: to be documented in |handmade/any_annotation-builtin-dasvector`smart_ptr`MakeFieldDecl|.rst - -.. |handmade/any_annotation-builtin-dasvector`CaptureEntry| replace:: to be documented in |handmade/any_annotation-builtin-dasvector`CaptureEntry|.rst - -.. |handmade/any_annotation-builtin-dasvector`TestObjectFoo| replace:: to be documented in |handmade/any_annotation-builtin-dasvector`TestObjectFoo|.rst - -.. |handmade/variable-builtin-DAS_MAX_FUNCTION_ARGUMENTS| replace:: to be documented in |handmade/variable-builtin-DAS_MAX_FUNCTION_ARGUMENTS|.rst - -.. |handmade/variable-builtin-INT_MIN| replace:: to be documented in |handmade/variable-builtin-INT_MIN|.rst - -.. |handmade/variable-builtin-INT_MAX| replace:: to be documented in |handmade/variable-builtin-INT_MAX|.rst - -.. |handmade/variable-builtin-UINT_MAX| replace:: to be documented in |handmade/variable-builtin-UINT_MAX|.rst - -.. |handmade/variable-builtin-LONG_MIN| replace:: to be documented in |handmade/variable-builtin-LONG_MIN|.rst - -.. |handmade/variable-builtin-LONG_MAX| replace:: to be documented in |handmade/variable-builtin-LONG_MAX|.rst - -.. |handmade/variable-builtin-ULONG_MAX| replace:: to be documented in |handmade/variable-builtin-ULONG_MAX|.rst - -.. |handmade/variable-builtin-FLT_MIN| replace:: to be documented in |handmade/variable-builtin-FLT_MIN|.rst - -.. |handmade/variable-builtin-FLT_MAX| replace:: to be documented in |handmade/variable-builtin-FLT_MAX|.rst - -.. |handmade/variable-builtin-DBL_MIN| replace:: to be documented in |handmade/variable-builtin-DBL_MIN|.rst - -.. |handmade/variable-builtin-DBL_MAX| replace:: to be documented in |handmade/variable-builtin-DBL_MAX|.rst - -.. |handmade/variable-builtin-LOG_CRITICAL| replace:: to be documented in |handmade/variable-builtin-LOG_CRITICAL|.rst - -.. |handmade/variable-builtin-LOG_ERROR| replace:: to be documented in |handmade/variable-builtin-LOG_ERROR|.rst - -.. |handmade/variable-builtin-LOG_WARNING| replace:: to be documented in |handmade/variable-builtin-LOG_WARNING|.rst - -.. |handmade/variable-builtin-LOG_INFO| replace:: to be documented in |handmade/variable-builtin-LOG_INFO|.rst - -.. |handmade/variable-builtin-LOG_DEBUG| replace:: to be documented in |handmade/variable-builtin-LOG_DEBUG|.rst - -.. |handmade/variable-builtin-LOG_TRACE| replace:: to be documented in |handmade/variable-builtin-LOG_TRACE|.rst - -.. |handmade/variable-builtin-VEC_SEP| replace:: to be documented in |handmade/variable-builtin-VEC_SEP|.rst - -.. |handmade/variable-builtin-print_flags_debugger| replace:: to be documented in |handmade/variable-builtin-print_flags_debugger|.rst - diff --git a/doc/source/stdlib/detail/capture_macro-jobque_boost-channel_and_status_capture_macro.rst b/doc/source/stdlib/detail/capture_macro-jobque_boost-channel_and_status_capture_macro.rst deleted file mode 100644 index 8797e8fe31..0000000000 --- a/doc/source/stdlib/detail/capture_macro-jobque_boost-channel_and_status_capture_macro.rst +++ /dev/null @@ -1,3 +0,0 @@ -Capture macro for channel and job status objects in lambda captures. -This macro implements capturing of the `jobque::Channel` and `jobque::JobStatus` types. -When captured reference counts are increased. When lambda is destroyed, reference counts are decreased. diff --git a/doc/source/stdlib/detail/class-archive-MemSerializer.rst b/doc/source/stdlib/detail/class-archive-MemSerializer.rst deleted file mode 100644 index 13dc9b50e3..0000000000 --- a/doc/source/stdlib/detail/class-archive-MemSerializer.rst +++ /dev/null @@ -1,4 +0,0 @@ -This serializer stores data in memory (in the array) -internal data buffer -current reading offset -last error code diff --git a/doc/source/stdlib/detail/class-archive-Serializer.rst b/doc/source/stdlib/detail/class-archive-Serializer.rst deleted file mode 100644 index d00ba9e1b9..0000000000 --- a/doc/source/stdlib/detail/class-archive-Serializer.rst +++ /dev/null @@ -1 +0,0 @@ -Base class for serializers. diff --git a/doc/source/stdlib/detail/class-ast_block_to_loop-B2LVisitor.rst b/doc/source/stdlib/detail/class-ast_block_to_loop-B2LVisitor.rst deleted file mode 100644 index bb40fa27b0..0000000000 --- a/doc/source/stdlib/detail/class-ast_block_to_loop-B2LVisitor.rst +++ /dev/null @@ -1 +0,0 @@ -AST visitor that converts block expressions to loop form. diff --git a/doc/source/stdlib/detail/class-ast_used-TypeVisitor.rst b/doc/source/stdlib/detail/class-ast_used-TypeVisitor.rst deleted file mode 100644 index 921a656272..0000000000 --- a/doc/source/stdlib/detail/class-ast_used-TypeVisitor.rst +++ /dev/null @@ -1,2 +0,0 @@ -AST visitor that collects referenced types and structures. -collected used types diff --git a/doc/source/stdlib/detail/class-async_boost-CollectAndReplaceIteratorFields.rst b/doc/source/stdlib/detail/class-async_boost-CollectAndReplaceIteratorFields.rst deleted file mode 100644 index 41802e698e..0000000000 --- a/doc/source/stdlib/detail/class-async_boost-CollectAndReplaceIteratorFields.rst +++ /dev/null @@ -1 +0,0 @@ -AST visitor that collects and replaces iterator field access in async generators. diff --git a/doc/source/stdlib/detail/class-contracts-IsAnyType.rst b/doc/source/stdlib/detail/class-contracts-IsAnyType.rst deleted file mode 100644 index 89f940d2c8..0000000000 --- a/doc/source/stdlib/detail/class-contracts-IsAnyType.rst +++ /dev/null @@ -1,2 +0,0 @@ -Base class for all ``[expect_*]`` contract annotations. -Subclasses override ``isCompatible`` to reject argument types that don't meet the contract. diff --git a/doc/source/stdlib/detail/class-dashv_boost-HvWebServer.rst b/doc/source/stdlib/detail/class-dashv_boost-HvWebServer.rst deleted file mode 100644 index c88353e3d5..0000000000 --- a/doc/source/stdlib/detail/class-dashv_boost-HvWebServer.rst +++ /dev/null @@ -1,9 +0,0 @@ -HTTP and WebSocket server with route registration and event callbacks. -Subclass and override ``onWsOpen``, ``onWsClose``, ``onWsMessage``, -``onTick``, and ``onInit`` as needed. Register HTTP routes with -``GET``, ``POST``, ``PUT``, ``DELETE``, ``PATCH``, ``HEAD``, or ``ANY``. -Called when a WebSocket client connects. Override to handle new connections. -Called when a WebSocket client disconnects. Override to handle disconnections. -Called when a WebSocket message is received. Override to handle messages. -Called each tick cycle. Override for periodic work. -Called during server initialization, after the low-level server is created. Override to register routes. diff --git a/doc/source/stdlib/detail/class-dashv_boost-HvWebSocketClient.rst b/doc/source/stdlib/detail/class-dashv_boost-HvWebSocketClient.rst deleted file mode 100644 index 2d9b9d0337..0000000000 --- a/doc/source/stdlib/detail/class-dashv_boost-HvWebSocketClient.rst +++ /dev/null @@ -1,7 +0,0 @@ -WebSocket client with event-driven callbacks. -Subclass and override ``onOpen``, ``onClose``, and ``onMessage`` -to handle connection lifecycle and incoming messages. Call -``process_event_que`` periodically to dispatch events. -Called when the WebSocket connection is established. -Called when the WebSocket connection is closed. -Called when a text message is received from the server. diff --git a/doc/source/stdlib/detail/class-decs_state-ContextStateAgent.rst b/doc/source/stdlib/detail/class-decs_state-ContextStateAgent.rst deleted file mode 100644 index 66e1520f93..0000000000 --- a/doc/source/stdlib/detail/class-decs_state-ContextStateAgent.rst +++ /dev/null @@ -1 +0,0 @@ -Debug agent that exposes DECS state for inspection. diff --git a/doc/source/stdlib/detail/class-linq_boost-AstCallMacro_LinqPred2.rst b/doc/source/stdlib/detail/class-linq_boost-AstCallMacro_LinqPred2.rst deleted file mode 100644 index 726403c9ce..0000000000 --- a/doc/source/stdlib/detail/class-linq_boost-AstCallMacro_LinqPred2.rst +++ /dev/null @@ -1,4 +0,0 @@ -Base call macro for LINQ-style two-argument predicate operators. -This macro converts _where(iterator, expresion) into:: - where_(iterator, $(_) => expression) - diff --git a/doc/source/stdlib/detail/class-linq_boost-AstCallMacro_LinqPredII2.rst b/doc/source/stdlib/detail/class-linq_boost-AstCallMacro_LinqPredII2.rst deleted file mode 100644 index 37f6a754a6..0000000000 --- a/doc/source/stdlib/detail/class-linq_boost-AstCallMacro_LinqPredII2.rst +++ /dev/null @@ -1,6 +0,0 @@ -Base call macro for LINQ-style two-iterator two-argument predicate operators. -implements sequence_equal_by(i1, i2, expresion) shorthand notation -that expands into sequence_equal_by(i1, i2, $(_) => expression) -for example:: - - each(foo1)._sequence_equal_by(each(foo2), _.id) diff --git a/doc/source/stdlib/detail/class-lint-LintEverything.rst b/doc/source/stdlib/detail/class-lint-LintEverything.rst deleted file mode 100644 index 9ddeb431ee..0000000000 --- a/doc/source/stdlib/detail/class-lint-LintEverything.rst +++ /dev/null @@ -1 +0,0 @@ -Pass macro that enables lint checking for modules. diff --git a/doc/source/stdlib/detail/class-lint-LintVisitor.rst b/doc/source/stdlib/detail/class-lint-LintVisitor.rst deleted file mode 100644 index 172f531957..0000000000 --- a/doc/source/stdlib/detail/class-lint-LintVisitor.rst +++ /dev/null @@ -1 +0,0 @@ -AST visitor that performs lint checks. diff --git a/doc/source/stdlib/detail/class-macro_boost-CaptureBlock.rst b/doc/source/stdlib/detail/class-macro_boost-CaptureBlock.rst deleted file mode 100644 index 3d5dc2d4ef..0000000000 --- a/doc/source/stdlib/detail/class-macro_boost-CaptureBlock.rst +++ /dev/null @@ -1 +0,0 @@ -AST visitor that captures variables from a block scope. diff --git a/doc/source/stdlib/detail/class-macro_boost-ColletFinally.rst b/doc/source/stdlib/detail/class-macro_boost-ColletFinally.rst deleted file mode 100644 index 9141377cca..0000000000 --- a/doc/source/stdlib/detail/class-macro_boost-ColletFinally.rst +++ /dev/null @@ -1 +0,0 @@ -AST visitor that collects finally blocks. diff --git a/doc/source/stdlib/detail/class-macro_boost-ColletLabels.rst b/doc/source/stdlib/detail/class-macro_boost-ColletLabels.rst deleted file mode 100644 index 163362212b..0000000000 --- a/doc/source/stdlib/detail/class-macro_boost-ColletLabels.rst +++ /dev/null @@ -1 +0,0 @@ -AST visitor that collects label statements. diff --git a/doc/source/stdlib/detail/class-profiler-ProfilerDebugAgent.rst b/doc/source/stdlib/detail/class-profiler-ProfilerDebugAgent.rst deleted file mode 100644 index 9ccbb2bf2d..0000000000 --- a/doc/source/stdlib/detail/class-profiler-ProfilerDebugAgent.rst +++ /dev/null @@ -1 +0,0 @@ -Debug agent that collects function-level profiling data. diff --git a/doc/source/stdlib/detail/class-quote-QuoteConverter.rst b/doc/source/stdlib/detail/class-quote-QuoteConverter.rst deleted file mode 100644 index 77f6f7347f..0000000000 --- a/doc/source/stdlib/detail/class-quote-QuoteConverter.rst +++ /dev/null @@ -1 +0,0 @@ -AST visitor that converts quoted expressions to init data. diff --git a/doc/source/stdlib/detail/class-quote-QuotePass.rst b/doc/source/stdlib/detail/class-quote-QuotePass.rst deleted file mode 100644 index f1d9257810..0000000000 --- a/doc/source/stdlib/detail/class-quote-QuotePass.rst +++ /dev/null @@ -1 +0,0 @@ -Pass macro that processes quoted AST expressions. diff --git a/doc/source/stdlib/detail/class-soa-CollectAndReplaceIteratorFields.rst b/doc/source/stdlib/detail/class-soa-CollectAndReplaceIteratorFields.rst deleted file mode 100644 index edc4339758..0000000000 --- a/doc/source/stdlib/detail/class-soa-CollectAndReplaceIteratorFields.rst +++ /dev/null @@ -1 +0,0 @@ -AST visitor that collects and replaces SOA iterator field access. diff --git a/doc/source/stdlib/detail/class-soa-SoaForLoop.rst b/doc/source/stdlib/detail/class-soa-SoaForLoop.rst deleted file mode 100644 index e32d3ba668..0000000000 --- a/doc/source/stdlib/detail/class-soa-SoaForLoop.rst +++ /dev/null @@ -1 +0,0 @@ -For-loop macro that transforms SOA array iteration. diff --git a/doc/source/stdlib/detail/class-templates_boost-AstQCallMacro.rst b/doc/source/stdlib/detail/class-templates_boost-AstQCallMacro.rst deleted file mode 100644 index c615980de8..0000000000 --- a/doc/source/stdlib/detail/class-templates_boost-AstQCallMacro.rst +++ /dev/null @@ -1,3 +0,0 @@ -This macro implements expression reification -Default apply call, can be overridden in subclasses -Default macro call, can be overridden in subclasses diff --git a/doc/source/stdlib/detail/class-templates_boost-AstQNamedClassMacro.rst b/doc/source/stdlib/detail/class-templates_boost-AstQNamedClassMacro.rst deleted file mode 100644 index ce0ed669ed..0000000000 --- a/doc/source/stdlib/detail/class-templates_boost-AstQNamedClassMacro.rst +++ /dev/null @@ -1,2 +0,0 @@ -This macro implements expression reification for the named expressions (function, variable, etc.) -This macro implements expression reification for the named expressions (function, variable, etc.) diff --git a/doc/source/stdlib/detail/class-templates_boost-AstQNamedMacro.rst b/doc/source/stdlib/detail/class-templates_boost-AstQNamedMacro.rst deleted file mode 100644 index d2e5648bdc..0000000000 --- a/doc/source/stdlib/detail/class-templates_boost-AstQNamedMacro.rst +++ /dev/null @@ -1 +0,0 @@ -This macro implements expression reification for the named expressions (function, variable, etc.) diff --git a/doc/source/stdlib/detail/class-templates_boost-QRulesVisitor.rst b/doc/source/stdlib/detail/class-templates_boost-QRulesVisitor.rst deleted file mode 100644 index d630d4f6ad..0000000000 --- a/doc/source/stdlib/detail/class-templates_boost-QRulesVisitor.rst +++ /dev/null @@ -1,4 +0,0 @@ -Visitor that processes type tags and variable tags in a block, generating replacement rules. -Index for generating unique tag names. -Flag indicating if processing failed. -Reference to the expression block where replacement rules are added. diff --git a/doc/source/stdlib/detail/class-templates_boost-RemoveDerefVisitor.rst b/doc/source/stdlib/detail/class-templates_boost-RemoveDerefVisitor.rst deleted file mode 100644 index d2f793d163..0000000000 --- a/doc/source/stdlib/detail/class-templates_boost-RemoveDerefVisitor.rst +++ /dev/null @@ -1,2 +0,0 @@ -Visitor that removes dereferences of a specific variable. -Name of the variable to remove dereferences for. diff --git a/doc/source/stdlib/detail/class-templates_boost-TemplateVisitor.rst b/doc/source/stdlib/detail/class-templates_boost-TemplateVisitor.rst deleted file mode 100644 index 98f8ac2d8a..0000000000 --- a/doc/source/stdlib/detail/class-templates_boost-TemplateVisitor.rst +++ /dev/null @@ -1 +0,0 @@ -AST visitor that applies template substitutions. diff --git a/doc/source/stdlib/detail/class-validate_code-JIT_LLVM.rst b/doc/source/stdlib/detail/class-validate_code-JIT_LLVM.rst deleted file mode 100644 index 251a7e5dfd..0000000000 --- a/doc/source/stdlib/detail/class-validate_code-JIT_LLVM.rst +++ /dev/null @@ -1 +0,0 @@ -Simulate macro for LLVM JIT compilation. diff --git a/doc/source/stdlib/detail/class-validate_code-ValidateCompletionVisitor.rst b/doc/source/stdlib/detail/class-validate_code-ValidateCompletionVisitor.rst deleted file mode 100644 index eab213c1aa..0000000000 --- a/doc/source/stdlib/detail/class-validate_code-ValidateCompletionVisitor.rst +++ /dev/null @@ -1 +0,0 @@ -AST visitor that validates code for completion safety. diff --git a/doc/source/stdlib/detail/class-validate_code-ValidateShaderVisitor.rst b/doc/source/stdlib/detail/class-validate_code-ValidateShaderVisitor.rst deleted file mode 100644 index 49c9f5a229..0000000000 --- a/doc/source/stdlib/detail/class-validate_code-ValidateShaderVisitor.rst +++ /dev/null @@ -1 +0,0 @@ -AST visitor that validates shader code restrictions. diff --git a/doc/source/stdlib/detail/class_boost.rst b/doc/source/stdlib/detail/class_boost.rst deleted file mode 100644 index 2e44ccc38d..0000000000 --- a/doc/source/stdlib/detail/class_boost.rst +++ /dev/null @@ -1,6 +0,0 @@ -.. |detail/class-class_boost-ClassMethodMacro| replace:: to be documented in |detail/class-class_boost-ClassMethodMacro|.rst - -.. |detail/method-class_boost-ClassMethodMacro.apply| replace:: to be documented in |detail/method-class_boost-ClassMethodMacro.apply|.rst - -.. |detail/class-class_boost-ExplicitClassMethodMacro| replace:: to be documented in |detail/class-class_boost-ExplicitClassMethodMacro|.rst - diff --git a/doc/source/stdlib/detail/constexpr.rst b/doc/source/stdlib/detail/constexpr.rst deleted file mode 100644 index 64d7ed8807..0000000000 --- a/doc/source/stdlib/detail/constexpr.rst +++ /dev/null @@ -1,10 +0,0 @@ -.. |detail/class-constant_expression-ConstExprAnnotation| replace:: to be documented in |detail/class-constant_expression-ConstExprAnnotation|.rst - -.. |detail/method-constant_expression-ConstExprAnnotation.verifyCall| replace:: to be documented in |detail/method-constant_expression-ConstExprAnnotation.verifyCall|.rst - -.. |detail/class-constant_expression-ConstantExpressionMacro| replace:: to be documented in |detail/class-constant_expression-ConstantExpressionMacro|.rst - -.. |detail/method-constant_expression-ConstantExpressionMacro.transform| replace:: to be documented in |detail/method-constant_expression-ConstantExpressionMacro.transform|.rst - -.. |detail/function-constant_expression-isConstantExpression| replace:: to be documented in |detail/function-constant_expression-isConstantExpression|.rst - diff --git a/doc/source/stdlib/detail/consume.rst b/doc/source/stdlib/detail/consume.rst deleted file mode 100644 index 01762ec42c..0000000000 --- a/doc/source/stdlib/detail/consume.rst +++ /dev/null @@ -1,4 +0,0 @@ -.. |detail/class-consume-CheckConsumeArguments| replace:: to be documented in |detail/class-consume-CheckConsumeArguments|.rst - -.. |detail/method-consume-CheckConsumeArguments.verifyCall| replace:: to be documented in |detail/method-consume-CheckConsumeArguments.verifyCall|.rst - diff --git a/doc/source/stdlib/detail/contracts.rst b/doc/source/stdlib/detail/contracts.rst deleted file mode 100644 index 02121ab67b..0000000000 --- a/doc/source/stdlib/detail/contracts.rst +++ /dev/null @@ -1,74 +0,0 @@ -.. |detail/class-contracts-IsAnyType| replace:: to be documented in |detail/class-contracts-IsAnyType|.rst - -.. |detail/method-contracts-IsAnyType.apply| replace:: to be documented in |detail/method-contracts-IsAnyType.apply|.rst - -.. |detail/method-contracts-IsAnyType.isSpecialized| replace:: to be documented in |detail/method-contracts-IsAnyType.isSpecialized|.rst - -.. |detail/method-contracts-IsAnyType.appendToMangledName| replace:: to be documented in |detail/method-contracts-IsAnyType.appendToMangledName|.rst - -.. |detail/class-contracts-IsAnyArrayMacro| replace:: to be documented in |detail/class-contracts-IsAnyArrayMacro|.rst - -.. |detail/method-contracts-IsAnyArrayMacro.isCompatible| replace:: to be documented in |detail/method-contracts-IsAnyArrayMacro.isCompatible|.rst - -.. |detail/class-contracts-IsAnyEnumMacro| replace:: to be documented in |detail/class-contracts-IsAnyEnumMacro|.rst - -.. |detail/method-contracts-IsAnyEnumMacro.isCompatible| replace:: to be documented in |detail/method-contracts-IsAnyEnumMacro.isCompatible|.rst - -.. |detail/class-contracts-IsAnyBitfieldMacro| replace:: to be documented in |detail/class-contracts-IsAnyBitfieldMacro|.rst - -.. |detail/method-contracts-IsAnyBitfieldMacro.isCompatible| replace:: to be documented in |detail/method-contracts-IsAnyBitfieldMacro.isCompatible|.rst - -.. |detail/class-contracts-IsAnyVectorType| replace:: to be documented in |detail/class-contracts-IsAnyVectorType|.rst - -.. |detail/method-contracts-IsAnyVectorType.isCompatible| replace:: to be documented in |detail/method-contracts-IsAnyVectorType.isCompatible|.rst - -.. |detail/class-contracts-IsAnyStructMacro| replace:: to be documented in |detail/class-contracts-IsAnyStructMacro|.rst - -.. |detail/method-contracts-IsAnyStructMacro.isCompatible| replace:: to be documented in |detail/method-contracts-IsAnyStructMacro.isCompatible|.rst - -.. |detail/class-contracts-IsAnyNumericMacro| replace:: to be documented in |detail/class-contracts-IsAnyNumericMacro|.rst - -.. |detail/method-contracts-IsAnyNumericMacro.isCompatible| replace:: to be documented in |detail/method-contracts-IsAnyNumericMacro.isCompatible|.rst - -.. |detail/class-contracts-IsAnyWorkhorse| replace:: to be documented in |detail/class-contracts-IsAnyWorkhorse|.rst - -.. |detail/method-contracts-IsAnyWorkhorse.isCompatible| replace:: to be documented in |detail/method-contracts-IsAnyWorkhorse.isCompatible|.rst - -.. |detail/class-contracts-IsAnyWorkhorseNonPtrMacro| replace:: to be documented in |detail/class-contracts-IsAnyWorkhorseNonPtrMacro|.rst - -.. |detail/method-contracts-IsAnyWorkhorseNonPtrMacro.isCompatible| replace:: to be documented in |detail/method-contracts-IsAnyWorkhorseNonPtrMacro.isCompatible|.rst - -.. |detail/class-contracts-IsAnyTupleNonPtrMacro| replace:: to be documented in |detail/class-contracts-IsAnyTupleNonPtrMacro|.rst - -.. |detail/method-contracts-IsAnyTupleNonPtrMacro.isCompatible| replace:: to be documented in |detail/method-contracts-IsAnyTupleNonPtrMacro.isCompatible|.rst - -.. |detail/class-contracts-IsAnyVariantNonPtrMacro| replace:: to be documented in |detail/class-contracts-IsAnyVariantNonPtrMacro|.rst - -.. |detail/method-contracts-IsAnyVariantNonPtrMacro.isCompatible| replace:: to be documented in |detail/method-contracts-IsAnyVariantNonPtrMacro.isCompatible|.rst - -.. |detail/class-contracts-IsAnyFunctionNonPtrMacro| replace:: to be documented in |detail/class-contracts-IsAnyFunctionNonPtrMacro|.rst - -.. |detail/method-contracts-IsAnyFunctionNonPtrMacro.isCompatible| replace:: to be documented in |detail/method-contracts-IsAnyFunctionNonPtrMacro.isCompatible|.rst - -.. |detail/class-contracts-IsAnyLambdaMacro| replace:: to be documented in |detail/class-contracts-IsAnyLambdaMacro|.rst - -.. |detail/method-contracts-IsAnyLambdaMacro.isCompatible| replace:: to be documented in |detail/method-contracts-IsAnyLambdaMacro.isCompatible|.rst - -.. |detail/class-contracts-IsRefMacro| replace:: to be documented in |detail/class-contracts-IsRefMacro|.rst - -.. |detail/method-contracts-IsRefMacro.isCompatible| replace:: to be documented in |detail/method-contracts-IsRefMacro.isCompatible|.rst - -.. |detail/class-contracts-IsPointer| replace:: to be documented in |detail/class-contracts-IsPointer|.rst - -.. |detail/method-contracts-IsPointer.isCompatible| replace:: to be documented in |detail/method-contracts-IsPointer.isCompatible|.rst - -.. |detail/class-contracts-IsClass| replace:: to be documented in |detail/class-contracts-IsClass|.rst - -.. |detail/method-contracts-IsClass.isCompatible| replace:: to be documented in |detail/method-contracts-IsClass.isCompatible|.rst - -.. |detail/class-contracts-IsValueHandle| replace:: to be documented in |detail/class-contracts-IsValueHandle|.rst - -.. |detail/method-contracts-IsValueHandle.isCompatible| replace:: to be documented in |detail/method-contracts-IsValueHandle.isCompatible|.rst - -.. |detail/function-contracts-isYetAnotherVectorTemplate| replace:: to be documented in |detail/function-contracts-isYetAnotherVectorTemplate|.rst - diff --git a/doc/source/stdlib/detail/coroutines.rst b/doc/source/stdlib/detail/coroutines.rst deleted file mode 100644 index ce49414244..0000000000 --- a/doc/source/stdlib/detail/coroutines.rst +++ /dev/null @@ -1,24 +0,0 @@ -.. |detail/typedef-coroutines-Coroutine| replace:: to be documented in |detail/typedef-coroutines-Coroutine|.rst - -.. |detail/typedef-coroutines-Coroutines| replace:: to be documented in |detail/typedef-coroutines-Coroutines|.rst - -.. |detail/class-coroutines-YieldFrom| replace:: to be documented in |detail/class-coroutines-YieldFrom|.rst - -.. |detail/method-coroutines-YieldFrom.visit| replace:: to be documented in |detail/method-coroutines-YieldFrom.visit|.rst - -.. |detail/class-coroutines-CoContinue| replace:: to be documented in |detail/class-coroutines-CoContinue|.rst - -.. |detail/method-coroutines-CoContinue.visit| replace:: to be documented in |detail/method-coroutines-CoContinue.visit|.rst - -.. |detail/class-coroutines-CoAwait| replace:: to be documented in |detail/class-coroutines-CoAwait|.rst - -.. |detail/method-coroutines-CoAwait.visit| replace:: to be documented in |detail/method-coroutines-CoAwait.visit|.rst - -.. |detail/class-coroutines-CoroutineMacro| replace:: to be documented in |detail/class-coroutines-CoroutineMacro|.rst - -.. |detail/method-coroutines-CoroutineMacro.apply| replace:: to be documented in |detail/method-coroutines-CoroutineMacro.apply|.rst - -.. |detail/function-coroutines-cr_run| replace:: to be documented in |detail/function-coroutines-cr_run|.rst - -.. |detail/function-coroutines-cr_run_all| replace:: to be documented in |detail/function-coroutines-cr_run_all|.rst - diff --git a/doc/source/stdlib/detail/cpp_bind.rst b/doc/source/stdlib/detail/cpp_bind.rst deleted file mode 100644 index 012b8d18c2..0000000000 --- a/doc/source/stdlib/detail/cpp_bind.rst +++ /dev/null @@ -1,2 +0,0 @@ -.. |detail/function-cpp_bind-log_cpp_class_adapter| replace:: to be documented in |detail/function-cpp_bind-log_cpp_class_adapter|.rst - diff --git a/doc/source/stdlib/detail/cuckoo_hash_table.rst b/doc/source/stdlib/detail/cuckoo_hash_table.rst deleted file mode 100644 index 395b144404..0000000000 --- a/doc/source/stdlib/detail/cuckoo_hash_table.rst +++ /dev/null @@ -1,10 +0,0 @@ -.. |detail/structure-cuckoo_hash_table-TCuckooHashTable| replace:: to be documented in |detail/structure-cuckoo_hash_table-TCuckooHashTable|.rst - -.. |detail/class-cuckoo_hash_table-TCuckooHashTable`TypeMacro| replace:: to be documented in |detail/class-cuckoo_hash_table-TCuckooHashTable`TypeMacro|.rst - -.. |detail/method-cuckoo_hash_table-TCuckooHashTable`TypeMacro.visit| replace:: to be documented in |detail/method-cuckoo_hash_table-TCuckooHashTable`TypeMacro.visit|.rst - -.. |detail/function-cuckoo_hash_table-hash0| replace:: to be documented in |detail/function-cuckoo_hash_table-hash0|.rst - -.. |detail/function-cuckoo_hash_table-hash_extra| replace:: to be documented in |detail/function-cuckoo_hash_table-hash_extra|.rst - diff --git a/doc/source/stdlib/detail/dap.rst b/doc/source/stdlib/detail/dap.rst deleted file mode 100644 index 725e139eeb..0000000000 --- a/doc/source/stdlib/detail/dap.rst +++ /dev/null @@ -1,112 +0,0 @@ -.. |detail/structure-dap-InitializeRequestArguments| replace:: to be documented in |detail/structure-dap-InitializeRequestArguments|.rst - -.. |detail/structure-dap-DisconnectArguments| replace:: to be documented in |detail/structure-dap-DisconnectArguments|.rst - -.. |detail/structure-dap-Capabilities| replace:: to be documented in |detail/structure-dap-Capabilities|.rst - -.. |detail/structure-dap-DataBreakpoint| replace:: to be documented in |detail/structure-dap-DataBreakpoint|.rst - -.. |detail/structure-dap-SetDataBreakpointsArguments| replace:: to be documented in |detail/structure-dap-SetDataBreakpointsArguments|.rst - -.. |detail/structure-dap-DataBreakpointInfoArguments| replace:: to be documented in |detail/structure-dap-DataBreakpointInfoArguments|.rst - -.. |detail/structure-dap-DataBreakpointInfoResponse| replace:: to be documented in |detail/structure-dap-DataBreakpointInfoResponse|.rst - -.. |detail/structure-dap-SourceBreakpoint| replace:: to be documented in |detail/structure-dap-SourceBreakpoint|.rst - -.. |detail/structure-dap-Source| replace:: to be documented in |detail/structure-dap-Source|.rst - -.. |detail/structure-dap-SetBreakpointsArguments| replace:: to be documented in |detail/structure-dap-SetBreakpointsArguments|.rst - -.. |detail/structure-dap-Breakpoint| replace:: to be documented in |detail/structure-dap-Breakpoint|.rst - -.. |detail/structure-dap-SetBreakpointsResponse| replace:: to be documented in |detail/structure-dap-SetBreakpointsResponse|.rst - -.. |detail/structure-dap-Thread| replace:: to be documented in |detail/structure-dap-Thread|.rst - -.. |detail/structure-dap-ThreadsResponseBody| replace:: to be documented in |detail/structure-dap-ThreadsResponseBody|.rst - -.. |detail/structure-dap-StackTraceArguments| replace:: to be documented in |detail/structure-dap-StackTraceArguments|.rst - -.. |detail/structure-dap-StackFrame| replace:: to be documented in |detail/structure-dap-StackFrame|.rst - -.. |detail/structure-dap-StackTraceResponseBody| replace:: to be documented in |detail/structure-dap-StackTraceResponseBody|.rst - -.. |detail/structure-dap-ScopesArguments| replace:: to be documented in |detail/structure-dap-ScopesArguments|.rst - -.. |detail/structure-dap-Scope| replace:: to be documented in |detail/structure-dap-Scope|.rst - -.. |detail/structure-dap-ScopesResponseBody| replace:: to be documented in |detail/structure-dap-ScopesResponseBody|.rst - -.. |detail/structure-dap-VariablesArguments| replace:: to be documented in |detail/structure-dap-VariablesArguments|.rst - -.. |detail/structure-dap-Variable| replace:: to be documented in |detail/structure-dap-Variable|.rst - -.. |detail/structure-dap-VariablesResponseBody| replace:: to be documented in |detail/structure-dap-VariablesResponseBody|.rst - -.. |detail/structure-dap-OutputEventBody| replace:: to be documented in |detail/structure-dap-OutputEventBody|.rst - -.. |detail/structure-dap-ContinueArguments| replace:: to be documented in |detail/structure-dap-ContinueArguments|.rst - -.. |detail/structure-dap-PauseArguments| replace:: to be documented in |detail/structure-dap-PauseArguments|.rst - -.. |detail/structure-dap-StepInArguments| replace:: to be documented in |detail/structure-dap-StepInArguments|.rst - -.. |detail/structure-dap-NextArguments| replace:: to be documented in |detail/structure-dap-NextArguments|.rst - -.. |detail/structure-dap-StepOutArguments| replace:: to be documented in |detail/structure-dap-StepOutArguments|.rst - -.. |detail/structure-dap-EvaluateArguments| replace:: to be documented in |detail/structure-dap-EvaluateArguments|.rst - -.. |detail/structure-dap-EvaluateResponse| replace:: to be documented in |detail/structure-dap-EvaluateResponse|.rst - -.. |detail/structure-dap-BreakpointEvent| replace:: to be documented in |detail/structure-dap-BreakpointEvent|.rst - -.. |detail/structure-dap-ThreadEvent| replace:: to be documented in |detail/structure-dap-ThreadEvent|.rst - -.. |detail/function-dap-InitializeRequestArguments| replace:: to be documented in |detail/function-dap-InitializeRequestArguments|.rst - -.. |detail/function-dap-DisconnectArguments| replace:: to be documented in |detail/function-dap-DisconnectArguments|.rst - -.. |detail/function-dap-DataBreakpoint| replace:: to be documented in |detail/function-dap-DataBreakpoint|.rst - -.. |detail/function-dap-SetDataBreakpointsArguments| replace:: to be documented in |detail/function-dap-SetDataBreakpointsArguments|.rst - -.. |detail/function-dap-DataBreakpointInfoArguments| replace:: to be documented in |detail/function-dap-DataBreakpointInfoArguments|.rst - -.. |detail/function-dap-SourceBreakpoint| replace:: to be documented in |detail/function-dap-SourceBreakpoint|.rst - -.. |detail/function-dap-Source| replace:: to be documented in |detail/function-dap-Source|.rst - -.. |detail/function-dap-SetBreakpointsArguments| replace:: to be documented in |detail/function-dap-SetBreakpointsArguments|.rst - -.. |detail/function-dap-StackTraceArguments| replace:: to be documented in |detail/function-dap-StackTraceArguments|.rst - -.. |detail/function-dap-ScopesArguments| replace:: to be documented in |detail/function-dap-ScopesArguments|.rst - -.. |detail/function-dap-VariablesArguments| replace:: to be documented in |detail/function-dap-VariablesArguments|.rst - -.. |detail/function-dap-JV| replace:: to be documented in |detail/function-dap-JV|.rst - -.. |detail/function-dap-ContinueArguments| replace:: to be documented in |detail/function-dap-ContinueArguments|.rst - -.. |detail/function-dap-PauseArguments| replace:: to be documented in |detail/function-dap-PauseArguments|.rst - -.. |detail/function-dap-StepInArguments| replace:: to be documented in |detail/function-dap-StepInArguments|.rst - -.. |detail/function-dap-NextArguments| replace:: to be documented in |detail/function-dap-NextArguments|.rst - -.. |detail/function-dap-StepOutArguments| replace:: to be documented in |detail/function-dap-StepOutArguments|.rst - -.. |detail/function-dap-EvaluateArguments| replace:: to be documented in |detail/function-dap-EvaluateArguments|.rst - -.. |detail/function-dap-joj| replace:: to be documented in |detail/function-dap-joj|.rst - -.. |detail/function-dap-jon| replace:: to be documented in |detail/function-dap-jon|.rst - -.. |detail/function-dap-j_s| replace:: to be documented in |detail/function-dap-j_s|.rst - -.. |detail/function-dap-jos| replace:: to be documented in |detail/function-dap-jos|.rst - -.. |detail/function-dap-job| replace:: to be documented in |detail/function-dap-job|.rst - diff --git a/doc/source/stdlib/detail/das_source_formatter.rst b/doc/source/stdlib/detail/das_source_formatter.rst deleted file mode 100644 index e914a1c15d..0000000000 --- a/doc/source/stdlib/detail/das_source_formatter.rst +++ /dev/null @@ -1,16 +0,0 @@ -.. |detail/enumeration-das_source_formatter-TokenType| replace:: to be documented in |detail/enumeration-das_source_formatter-TokenType|.rst - -.. |detail/structure-das_source_formatter-TokenTemplate| replace:: to be documented in |detail/structure-das_source_formatter-TokenTemplate|.rst - -.. |detail/structure-das_source_formatter-Token| replace:: to be documented in |detail/structure-das_source_formatter-Token|.rst - -.. |detail/structure-das_source_formatter-FormatterToken| replace:: to be documented in |detail/structure-das_source_formatter-FormatterToken|.rst - -.. |detail/structure-das_source_formatter-FormatterCtx| replace:: to be documented in |detail/structure-das_source_formatter-FormatterCtx|.rst - -.. |detail/structure-das_source_formatter-ParenCounter| replace:: to be documented in |detail/structure-das_source_formatter-ParenCounter|.rst - -.. |detail/function-das_source_formatter-format_source_string| replace:: to be documented in |detail/function-das_source_formatter-format_source_string|.rst - -.. |detail/function-das_source_formatter-format_source| replace:: to be documented in |detail/function-das_source_formatter-format_source|.rst - diff --git a/doc/source/stdlib/detail/das_source_formatter_fio.rst b/doc/source/stdlib/detail/das_source_formatter_fio.rst deleted file mode 100644 index 4fa9fa4e58..0000000000 --- a/doc/source/stdlib/detail/das_source_formatter_fio.rst +++ /dev/null @@ -1,4 +0,0 @@ -.. |detail/function-das_source_formatter_fio-format_file| replace:: to be documented in |detail/function-das_source_formatter_fio-format_file|.rst - -.. |detail/function-das_source_formatter_fio-format_files| replace:: to be documented in |detail/function-das_source_formatter_fio-format_files|.rst - diff --git a/doc/source/stdlib/detail/dashv.rst b/doc/source/stdlib/detail/dashv.rst deleted file mode 100644 index 158ee9befa..0000000000 --- a/doc/source/stdlib/detail/dashv.rst +++ /dev/null @@ -1,144 +0,0 @@ -.. |handmade/enumeration-dashv-http_method| replace:: to be documented in |handmade/enumeration-dashv-http_method|.rst - -.. |handmade/enumeration-dashv-http_status| replace:: to be documented in |handmade/enumeration-dashv-http_status|.rst - -.. |handmade/enumeration-dashv-ws_opcode| replace:: to be documented in |handmade/enumeration-dashv-ws_opcode|.rst - -.. |handmade/enumeration-dashv-ws_session_type| replace:: to be documented in |handmade/enumeration-dashv-ws_session_type|.rst - -.. |handmade/function-dashv-make_web_socket_client| replace:: to be documented in |handmade/function-dashv-make_web_socket_client|.rst - -.. |handmade/function-dashv-open| replace:: to be documented in |handmade/function-dashv-open|.rst - -.. |handmade/function-dashv-send| replace:: to be documented in |handmade/function-dashv-send|.rst - -.. |handmade/function-dashv-close| replace:: to be documented in |handmade/function-dashv-close|.rst - -.. |handmade/function-dashv-is_connected| replace:: to be documented in |handmade/function-dashv-is_connected|.rst - -.. |handmade/function-dashv-tick| replace:: to be documented in |handmade/function-dashv-tick|.rst - -.. |handmade/function-dashv-.`content_length| replace:: to be documented in |handmade/function-dashv-.`content_length|.rst - -.. |handmade/function-dashv-make_web_socket_server| replace:: to be documented in |handmade/function-dashv-make_web_socket_server|.rst - -.. |handmade/function-dashv-start| replace:: to be documented in |handmade/function-dashv-start|.rst - -.. |handmade/function-dashv-stop| replace:: to be documented in |handmade/function-dashv-stop|.rst - -.. |handmade/function-dashv-GET| replace:: to be documented in |handmade/function-dashv-GET|.rst - -.. |handmade/function-dashv-POST| replace:: to be documented in |handmade/function-dashv-POST|.rst - -.. |handmade/function-dashv-PUT| replace:: to be documented in |handmade/function-dashv-PUT|.rst - -.. |handmade/function-dashv-DELETE| replace:: to be documented in |handmade/function-dashv-DELETE|.rst - -.. |handmade/function-dashv-PATCH| replace:: to be documented in |handmade/function-dashv-PATCH|.rst - -.. |handmade/function-dashv-HEAD| replace:: to be documented in |handmade/function-dashv-HEAD|.rst - -.. |handmade/function-dashv-ANY| replace:: to be documented in |handmade/function-dashv-ANY|.rst - -.. |handmade/function-dashv-STATIC| replace:: to be documented in |handmade/function-dashv-STATIC|.rst - -.. |handmade/function-dashv-allow_cors| replace:: to be documented in |handmade/function-dashv-allow_cors|.rst - -.. |handmade/function-dashv-set_document_root| replace:: to be documented in |handmade/function-dashv-set_document_root|.rst - -.. |handmade/function-dashv-set_home_page| replace:: to be documented in |handmade/function-dashv-set_home_page|.rst - -.. |handmade/function-dashv-set_index_of| replace:: to be documented in |handmade/function-dashv-set_index_of|.rst - -.. |handmade/function-dashv-set_error_page| replace:: to be documented in |handmade/function-dashv-set_error_page|.rst - -.. |handmade/function-dashv-TEXT_PLAIN| replace:: to be documented in |handmade/function-dashv-TEXT_PLAIN|.rst - -.. |handmade/function-dashv-JSON| replace:: to be documented in |handmade/function-dashv-JSON|.rst - -.. |handmade/function-dashv-REDIRECT| replace:: to be documented in |handmade/function-dashv-REDIRECT|.rst - -.. |handmade/function-dashv-SERVE_FILE| replace:: to be documented in |handmade/function-dashv-SERVE_FILE|.rst - -.. |handmade/function-dashv-DATA| replace:: to be documented in |handmade/function-dashv-DATA|.rst - -.. |handmade/function-dashv-set_header| replace:: to be documented in |handmade/function-dashv-set_header|.rst - -.. |handmade/function-dashv-set_content_type| replace:: to be documented in |handmade/function-dashv-set_content_type|.rst - -.. |handmade/function-dashv-request| replace:: to be documented in |handmade/function-dashv-request|.rst - -.. |handmade/function-dashv-get_header| replace:: to be documented in |handmade/function-dashv-get_header|.rst - -.. |handmade/function-dashv-each_header| replace:: to be documented in |handmade/function-dashv-each_header|.rst - -.. |handmade/function-dashv-status_message| replace:: to be documented in |handmade/function-dashv-status_message|.rst - -.. |handmade/function-dashv-set_basic_auth| replace:: to be documented in |handmade/function-dashv-set_basic_auth|.rst - -.. |handmade/function-dashv-set_bearer_token_auth| replace:: to be documented in |handmade/function-dashv-set_bearer_token_auth|.rst - -.. |handmade/function-dashv-set_timeout| replace:: to be documented in |handmade/function-dashv-set_timeout|.rst - -.. |handmade/function-dashv-set_connect_timeout| replace:: to be documented in |handmade/function-dashv-set_connect_timeout|.rst - -.. |handmade/function-dashv-allow_redirect| replace:: to be documented in |handmade/function-dashv-allow_redirect|.rst - -.. |handmade/function-dashv-set_param| replace:: to be documented in |handmade/function-dashv-set_param|.rst - -.. |handmade/function-dashv-get_param| replace:: to be documented in |handmade/function-dashv-get_param|.rst - -.. |handmade/function-dashv-each_param| replace:: to be documented in |handmade/function-dashv-each_param|.rst - -.. |handmade/function-dashv-add_cookie| replace:: to be documented in |handmade/function-dashv-add_cookie|.rst - -.. |handmade/function-dashv-get_cookie| replace:: to be documented in |handmade/function-dashv-get_cookie|.rst - -.. |handmade/function-dashv-each_cookie| replace:: to be documented in |handmade/function-dashv-each_cookie|.rst - -.. |handmade/function-dashv-set_form_data| replace:: to be documented in |handmade/function-dashv-set_form_data|.rst - -.. |handmade/function-dashv-set_form_file| replace:: to be documented in |handmade/function-dashv-set_form_file|.rst - -.. |handmade/function-dashv-get_form_data| replace:: to be documented in |handmade/function-dashv-get_form_data|.rst - -.. |handmade/function-dashv-save_form_file| replace:: to be documented in |handmade/function-dashv-save_form_file|.rst - -.. |handmade/function-dashv-each_form_field| replace:: to be documented in |handmade/function-dashv-each_form_field|.rst - -.. |handmade/function-dashv-set_url_encoded| replace:: to be documented in |handmade/function-dashv-set_url_encoded|.rst - -.. |handmade/function-dashv-get_url_encoded| replace:: to be documented in |handmade/function-dashv-get_url_encoded|.rst - -.. |handmade/function-dashv-request_cb| replace:: to be documented in |handmade/function-dashv-request_cb|.rst - -.. |handmade/function-dashv-SSE| replace:: to be documented in |handmade/function-dashv-SSE|.rst - -.. |handmade/function-dashv-end_headers| replace:: to be documented in |handmade/function-dashv-end_headers|.rst - -.. |handmade/function-dashv-sse_event| replace:: to be documented in |handmade/function-dashv-sse_event|.rst - -.. |handmade/function-dashv-write_chunked| replace:: to be documented in |handmade/function-dashv-write_chunked|.rst - -.. |handmade/function-dashv-end_response| replace:: to be documented in |handmade/function-dashv-end_response|.rst - -.. |handmade/function-dashv-close_writer| replace:: to be documented in |handmade/function-dashv-close_writer|.rst - -.. |handmade/function-dashv-release_writer| replace:: to be documented in |handmade/function-dashv-release_writer|.rst - -.. |handmade/structure_annotation-dashv-WebSocketClient| replace:: to be documented in |handmade/structure_annotation-dashv-WebSocketClient|.rst - -.. |handmade/structure_annotation-dashv-WebSocketServer| replace:: to be documented in |handmade/structure_annotation-dashv-WebSocketServer|.rst - -.. |handmade/structure_annotation-dashv-WebSocketChannel| replace:: to be documented in |handmade/structure_annotation-dashv-WebSocketChannel|.rst - -.. |handmade/structure_annotation-dashv-HttpMessage| replace:: to be documented in |handmade/structure_annotation-dashv-HttpMessage|.rst - -.. |handmade/structure_annotation-dashv-HttpRequest| replace:: to be documented in |handmade/structure_annotation-dashv-HttpRequest|.rst - -.. |handmade/structure_annotation-dashv-HttpResponse| replace:: to be documented in |handmade/structure_annotation-dashv-HttpResponse|.rst - -.. |handmade/structure_annotation-dashv-HttpContext| replace:: to be documented in |handmade/structure_annotation-dashv-HttpContext|.rst - -.. |handmade/structure_annotation-dashv-HttpResponseWriter| replace:: to be documented in |handmade/structure_annotation-dashv-HttpResponseWriter|.rst - diff --git a/doc/source/stdlib/detail/dashv_boost.rst b/doc/source/stdlib/detail/dashv_boost.rst deleted file mode 100644 index f1d82b3ef6..0000000000 --- a/doc/source/stdlib/detail/dashv_boost.rst +++ /dev/null @@ -1,72 +0,0 @@ -.. |detail/class-dashv_boost-HvWebSocketClient| replace:: to be documented in |detail/class-dashv_boost-HvWebSocketClient|.rst - -.. |detail/method-dashv_boost-HvWebSocketClient.init| replace:: to be documented in |detail/method-dashv_boost-HvWebSocketClient.init|.rst - -.. |detail/method-dashv_boost-HvWebSocketClient.onOpen| replace:: to be documented in |detail/method-dashv_boost-HvWebSocketClient.onOpen|.rst - -.. |detail/method-dashv_boost-HvWebSocketClient.onClose| replace:: to be documented in |detail/method-dashv_boost-HvWebSocketClient.onClose|.rst - -.. |detail/method-dashv_boost-HvWebSocketClient.onMessage| replace:: to be documented in |detail/method-dashv_boost-HvWebSocketClient.onMessage|.rst - -.. |detail/method-dashv_boost-HvWebSocketClient.is_connected| replace:: to be documented in |detail/method-dashv_boost-HvWebSocketClient.is_connected|.rst - -.. |detail/method-dashv_boost-HvWebSocketClient.process_event_que| replace:: to be documented in |detail/method-dashv_boost-HvWebSocketClient.process_event_que|.rst - -.. |detail/method-dashv_boost-HvWebSocketClient.send| replace:: to be documented in |detail/method-dashv_boost-HvWebSocketClient.send|.rst - -.. |detail/method-dashv_boost-HvWebSocketClient.close| replace:: to be documented in |detail/method-dashv_boost-HvWebSocketClient.close|.rst - -.. |detail/class-dashv_boost-HvWebServer| replace:: to be documented in |detail/class-dashv_boost-HvWebServer|.rst - -.. |detail/method-dashv_boost-HvWebServer.init| replace:: to be documented in |detail/method-dashv_boost-HvWebServer.init|.rst - -.. |detail/method-dashv_boost-HvWebServer.init_wss| replace:: to be documented in |detail/method-dashv_boost-HvWebServer.init_wss|.rst - -.. |detail/method-dashv_boost-HvWebServer.start| replace:: to be documented in |detail/method-dashv_boost-HvWebServer.start|.rst - -.. |detail/method-dashv_boost-HvWebServer.stop| replace:: to be documented in |detail/method-dashv_boost-HvWebServer.stop|.rst - -.. |detail/method-dashv_boost-HvWebServer.tick| replace:: to be documented in |detail/method-dashv_boost-HvWebServer.tick|.rst - -.. |detail/method-dashv_boost-HvWebServer.onWsOpen| replace:: to be documented in |detail/method-dashv_boost-HvWebServer.onWsOpen|.rst - -.. |detail/method-dashv_boost-HvWebServer.onWsClose| replace:: to be documented in |detail/method-dashv_boost-HvWebServer.onWsClose|.rst - -.. |detail/method-dashv_boost-HvWebServer.onWsMessage| replace:: to be documented in |detail/method-dashv_boost-HvWebServer.onWsMessage|.rst - -.. |detail/method-dashv_boost-HvWebServer.onTick| replace:: to be documented in |detail/method-dashv_boost-HvWebServer.onTick|.rst - -.. |detail/method-dashv_boost-HvWebServer.onInit| replace:: to be documented in |detail/method-dashv_boost-HvWebServer.onInit|.rst - -.. |detail/method-dashv_boost-HvWebServer.GET| replace:: to be documented in |detail/method-dashv_boost-HvWebServer.GET|.rst - -.. |detail/method-dashv_boost-HvWebServer.POST| replace:: to be documented in |detail/method-dashv_boost-HvWebServer.POST|.rst - -.. |detail/method-dashv_boost-HvWebServer.PUT| replace:: to be documented in |detail/method-dashv_boost-HvWebServer.PUT|.rst - -.. |detail/method-dashv_boost-HvWebServer.DELETE| replace:: to be documented in |detail/method-dashv_boost-HvWebServer.DELETE|.rst - -.. |detail/method-dashv_boost-HvWebServer.PATCH| replace:: to be documented in |detail/method-dashv_boost-HvWebServer.PATCH|.rst - -.. |detail/method-dashv_boost-HvWebServer.HEAD| replace:: to be documented in |detail/method-dashv_boost-HvWebServer.HEAD|.rst - -.. |detail/method-dashv_boost-HvWebServer.ANY| replace:: to be documented in |detail/method-dashv_boost-HvWebServer.ANY|.rst - -.. |detail/method-dashv_boost-HvWebServer.STATIC| replace:: to be documented in |detail/method-dashv_boost-HvWebServer.STATIC|.rst - -.. |detail/method-dashv_boost-HvWebServer.allow_cors| replace:: to be documented in |detail/method-dashv_boost-HvWebServer.allow_cors|.rst - -.. |detail/method-dashv_boost-HvWebServer.set_document_root| replace:: to be documented in |detail/method-dashv_boost-HvWebServer.set_document_root|.rst - -.. |detail/method-dashv_boost-HvWebServer.set_home_page| replace:: to be documented in |detail/method-dashv_boost-HvWebServer.set_home_page|.rst - -.. |detail/method-dashv_boost-HvWebServer.set_index_of| replace:: to be documented in |detail/method-dashv_boost-HvWebServer.set_index_of|.rst - -.. |detail/method-dashv_boost-HvWebServer.set_error_page| replace:: to be documented in |detail/method-dashv_boost-HvWebServer.set_error_page|.rst - -.. |detail/method-dashv_boost-HvWebServer.SSE| replace:: to be documented in |detail/method-dashv_boost-HvWebServer.SSE|.rst - -.. |detail/function-dashv_boost-with_http_request| replace:: to be documented in |detail/function-dashv_boost-with_http_request|.rst - -.. |detail/function-dashv_boost-get_body_bytes| replace:: to be documented in |detail/function-dashv_boost-get_body_bytes|.rst - diff --git a/doc/source/stdlib/detail/debug_eval.rst b/doc/source/stdlib/detail/debug_eval.rst deleted file mode 100644 index 7f1b3f46c3..0000000000 --- a/doc/source/stdlib/detail/debug_eval.rst +++ /dev/null @@ -1,8 +0,0 @@ -.. |detail/typedef-debug_eval-Token| replace:: to be documented in |detail/typedef-debug_eval-Token|.rst - -.. |detail/structure-debug_eval-Result| replace:: to be documented in |detail/structure-debug_eval-Result|.rst - -.. |detail/structure-debug_eval-TokenStream| replace:: to be documented in |detail/structure-debug_eval-TokenStream|.rst - -.. |detail/function-debug_eval-debug_eval| replace:: to be documented in |detail/function-debug_eval-debug_eval|.rst - diff --git a/doc/source/stdlib/detail/debugapi.rst b/doc/source/stdlib/detail/debugapi.rst deleted file mode 100644 index b4af7f816f..0000000000 --- a/doc/source/stdlib/detail/debugapi.rst +++ /dev/null @@ -1,356 +0,0 @@ -.. |handmade/class-debugapi-DapiDebugAgent| replace:: to be documented in |handmade/class-debugapi-DapiDebugAgent|.rst - -.. |handmade/method-debugapi-DapiDebugAgent.onInstall| replace:: to be documented in |handmade/method-debugapi-DapiDebugAgent.onInstall|.rst - -.. |handmade/method-debugapi-DapiDebugAgent.onUninstall| replace:: to be documented in |handmade/method-debugapi-DapiDebugAgent.onUninstall|.rst - -.. |handmade/method-debugapi-DapiDebugAgent.onCreateContext| replace:: to be documented in |handmade/method-debugapi-DapiDebugAgent.onCreateContext|.rst - -.. |handmade/method-debugapi-DapiDebugAgent.onDestroyContext| replace:: to be documented in |handmade/method-debugapi-DapiDebugAgent.onDestroyContext|.rst - -.. |handmade/method-debugapi-DapiDebugAgent.onSimulateContext| replace:: to be documented in |handmade/method-debugapi-DapiDebugAgent.onSimulateContext|.rst - -.. |handmade/method-debugapi-DapiDebugAgent.onSingleStep| replace:: to be documented in |handmade/method-debugapi-DapiDebugAgent.onSingleStep|.rst - -.. |handmade/method-debugapi-DapiDebugAgent.onInstrument| replace:: to be documented in |handmade/method-debugapi-DapiDebugAgent.onInstrument|.rst - -.. |handmade/method-debugapi-DapiDebugAgent.onInstrumentFunction| replace:: to be documented in |handmade/method-debugapi-DapiDebugAgent.onInstrumentFunction|.rst - -.. |handmade/method-debugapi-DapiDebugAgent.onBreakpoint| replace:: to be documented in |handmade/method-debugapi-DapiDebugAgent.onBreakpoint|.rst - -.. |handmade/method-debugapi-DapiDebugAgent.onVariable| replace:: to be documented in |handmade/method-debugapi-DapiDebugAgent.onVariable|.rst - -.. |handmade/method-debugapi-DapiDebugAgent.onBreakpointsReset| replace:: to be documented in |handmade/method-debugapi-DapiDebugAgent.onBreakpointsReset|.rst - -.. |handmade/method-debugapi-DapiDebugAgent.onTick| replace:: to be documented in |handmade/method-debugapi-DapiDebugAgent.onTick|.rst - -.. |handmade/method-debugapi-DapiDebugAgent.onCollect| replace:: to be documented in |handmade/method-debugapi-DapiDebugAgent.onCollect|.rst - -.. |handmade/method-debugapi-DapiDebugAgent.onLog| replace:: to be documented in |handmade/method-debugapi-DapiDebugAgent.onLog|.rst - -.. |handmade/method-debugapi-DapiDebugAgent.onBeforeGC| replace:: to be documented in |handmade/method-debugapi-DapiDebugAgent.onBeforeGC|.rst - -.. |handmade/method-debugapi-DapiDebugAgent.onAfterGC| replace:: to be documented in |handmade/method-debugapi-DapiDebugAgent.onAfterGC|.rst - -.. |handmade/method-debugapi-DapiDebugAgent.onUserCommand| replace:: to be documented in |handmade/method-debugapi-DapiDebugAgent.onUserCommand|.rst - -.. |handmade/method-debugapi-DapiDebugAgent.onAllocate| replace:: to be documented in |handmade/method-debugapi-DapiDebugAgent.onAllocate|.rst - -.. |handmade/method-debugapi-DapiDebugAgent.onReallocate| replace:: to be documented in |handmade/method-debugapi-DapiDebugAgent.onReallocate|.rst - -.. |handmade/method-debugapi-DapiDebugAgent.onFree| replace:: to be documented in |handmade/method-debugapi-DapiDebugAgent.onFree|.rst - -.. |handmade/method-debugapi-DapiDebugAgent.onAllocateString| replace:: to be documented in |handmade/method-debugapi-DapiDebugAgent.onAllocateString|.rst - -.. |handmade/method-debugapi-DapiDebugAgent.onFreeString| replace:: to be documented in |handmade/method-debugapi-DapiDebugAgent.onFreeString|.rst - -.. |handmade/structure-debugapi-DapiArray| replace:: to be documented in |handmade/structure-debugapi-DapiArray|.rst - -.. |handmade/structure-debugapi-DapiTable| replace:: to be documented in |handmade/structure-debugapi-DapiTable|.rst - -.. |handmade/structure-debugapi-DapiBlock| replace:: to be documented in |handmade/structure-debugapi-DapiBlock|.rst - -.. |handmade/structure-debugapi-DapiFunc| replace:: to be documented in |handmade/structure-debugapi-DapiFunc|.rst - -.. |handmade/structure-debugapi-DapiLambda| replace:: to be documented in |handmade/structure-debugapi-DapiLambda|.rst - -.. |handmade/structure-debugapi-DapiSequence| replace:: to be documented in |handmade/structure-debugapi-DapiSequence|.rst - -.. |handmade/class-debugapi-DapiDataWalker| replace:: to be documented in |handmade/class-debugapi-DapiDataWalker|.rst - -.. |handmade/method-debugapi-DapiDataWalker.canVisitHandle| replace:: to be documented in |handmade/method-debugapi-DapiDataWalker.canVisitHandle|.rst - -.. |handmade/method-debugapi-DapiDataWalker.canVisitStructure| replace:: to be documented in |handmade/method-debugapi-DapiDataWalker.canVisitStructure|.rst - -.. |handmade/method-debugapi-DapiDataWalker.canVisitDim| replace:: to be documented in |handmade/method-debugapi-DapiDataWalker.canVisitDim|.rst - -.. |handmade/method-debugapi-DapiDataWalker.canVisitArray| replace:: to be documented in |handmade/method-debugapi-DapiDataWalker.canVisitArray|.rst - -.. |handmade/method-debugapi-DapiDataWalker.canVisitArrayData| replace:: to be documented in |handmade/method-debugapi-DapiDataWalker.canVisitArrayData|.rst - -.. |handmade/method-debugapi-DapiDataWalker.canVisitTuple| replace:: to be documented in |handmade/method-debugapi-DapiDataWalker.canVisitTuple|.rst - -.. |handmade/method-debugapi-DapiDataWalker.canVisitVariant| replace:: to be documented in |handmade/method-debugapi-DapiDataWalker.canVisitVariant|.rst - -.. |handmade/method-debugapi-DapiDataWalker.canVisitTable| replace:: to be documented in |handmade/method-debugapi-DapiDataWalker.canVisitTable|.rst - -.. |handmade/method-debugapi-DapiDataWalker.canVisitTableData| replace:: to be documented in |handmade/method-debugapi-DapiDataWalker.canVisitTableData|.rst - -.. |handmade/method-debugapi-DapiDataWalker.canVisitPointer| replace:: to be documented in |handmade/method-debugapi-DapiDataWalker.canVisitPointer|.rst - -.. |handmade/method-debugapi-DapiDataWalker.canVisitLambda| replace:: to be documented in |handmade/method-debugapi-DapiDataWalker.canVisitLambda|.rst - -.. |handmade/method-debugapi-DapiDataWalker.canVisitIterator| replace:: to be documented in |handmade/method-debugapi-DapiDataWalker.canVisitIterator|.rst - -.. |handmade/method-debugapi-DapiDataWalker.beforeStructure| replace:: to be documented in |handmade/method-debugapi-DapiDataWalker.beforeStructure|.rst - -.. |handmade/method-debugapi-DapiDataWalker.afterStructure| replace:: to be documented in |handmade/method-debugapi-DapiDataWalker.afterStructure|.rst - -.. |handmade/method-debugapi-DapiDataWalker.afterStructureCancel| replace:: to be documented in |handmade/method-debugapi-DapiDataWalker.afterStructureCancel|.rst - -.. |handmade/method-debugapi-DapiDataWalker.beforeStructureField| replace:: to be documented in |handmade/method-debugapi-DapiDataWalker.beforeStructureField|.rst - -.. |handmade/method-debugapi-DapiDataWalker.afterStructureField| replace:: to be documented in |handmade/method-debugapi-DapiDataWalker.afterStructureField|.rst - -.. |handmade/method-debugapi-DapiDataWalker.beforeTuple| replace:: to be documented in |handmade/method-debugapi-DapiDataWalker.beforeTuple|.rst - -.. |handmade/method-debugapi-DapiDataWalker.afterTuple| replace:: to be documented in |handmade/method-debugapi-DapiDataWalker.afterTuple|.rst - -.. |handmade/method-debugapi-DapiDataWalker.beforeTupleEntry| replace:: to be documented in |handmade/method-debugapi-DapiDataWalker.beforeTupleEntry|.rst - -.. |handmade/method-debugapi-DapiDataWalker.afterTupleEntry| replace:: to be documented in |handmade/method-debugapi-DapiDataWalker.afterTupleEntry|.rst - -.. |handmade/method-debugapi-DapiDataWalker.beforeVariant| replace:: to be documented in |handmade/method-debugapi-DapiDataWalker.beforeVariant|.rst - -.. |handmade/method-debugapi-DapiDataWalker.afterVariant| replace:: to be documented in |handmade/method-debugapi-DapiDataWalker.afterVariant|.rst - -.. |handmade/method-debugapi-DapiDataWalker.beforeArrayData| replace:: to be documented in |handmade/method-debugapi-DapiDataWalker.beforeArrayData|.rst - -.. |handmade/method-debugapi-DapiDataWalker.afterArrayData| replace:: to be documented in |handmade/method-debugapi-DapiDataWalker.afterArrayData|.rst - -.. |handmade/method-debugapi-DapiDataWalker.beforeArrayElement| replace:: to be documented in |handmade/method-debugapi-DapiDataWalker.beforeArrayElement|.rst - -.. |handmade/method-debugapi-DapiDataWalker.afterArrayElement| replace:: to be documented in |handmade/method-debugapi-DapiDataWalker.afterArrayElement|.rst - -.. |handmade/method-debugapi-DapiDataWalker.beforeDim| replace:: to be documented in |handmade/method-debugapi-DapiDataWalker.beforeDim|.rst - -.. |handmade/method-debugapi-DapiDataWalker.afterDim| replace:: to be documented in |handmade/method-debugapi-DapiDataWalker.afterDim|.rst - -.. |handmade/method-debugapi-DapiDataWalker.beforeArray| replace:: to be documented in |handmade/method-debugapi-DapiDataWalker.beforeArray|.rst - -.. |handmade/method-debugapi-DapiDataWalker.afterArray| replace:: to be documented in |handmade/method-debugapi-DapiDataWalker.afterArray|.rst - -.. |handmade/method-debugapi-DapiDataWalker.beforeTable| replace:: to be documented in |handmade/method-debugapi-DapiDataWalker.beforeTable|.rst - -.. |handmade/method-debugapi-DapiDataWalker.beforeTableKey| replace:: to be documented in |handmade/method-debugapi-DapiDataWalker.beforeTableKey|.rst - -.. |handmade/method-debugapi-DapiDataWalker.afterTableKey| replace:: to be documented in |handmade/method-debugapi-DapiDataWalker.afterTableKey|.rst - -.. |handmade/method-debugapi-DapiDataWalker.beforeTableValue| replace:: to be documented in |handmade/method-debugapi-DapiDataWalker.beforeTableValue|.rst - -.. |handmade/method-debugapi-DapiDataWalker.afterTableValue| replace:: to be documented in |handmade/method-debugapi-DapiDataWalker.afterTableValue|.rst - -.. |handmade/method-debugapi-DapiDataWalker.afterTable| replace:: to be documented in |handmade/method-debugapi-DapiDataWalker.afterTable|.rst - -.. |handmade/method-debugapi-DapiDataWalker.beforeRef| replace:: to be documented in |handmade/method-debugapi-DapiDataWalker.beforeRef|.rst - -.. |handmade/method-debugapi-DapiDataWalker.afterRef| replace:: to be documented in |handmade/method-debugapi-DapiDataWalker.afterRef|.rst - -.. |handmade/method-debugapi-DapiDataWalker.beforePtr| replace:: to be documented in |handmade/method-debugapi-DapiDataWalker.beforePtr|.rst - -.. |handmade/method-debugapi-DapiDataWalker.afterPtr| replace:: to be documented in |handmade/method-debugapi-DapiDataWalker.afterPtr|.rst - -.. |handmade/method-debugapi-DapiDataWalker.beforeHandle| replace:: to be documented in |handmade/method-debugapi-DapiDataWalker.beforeHandle|.rst - -.. |handmade/method-debugapi-DapiDataWalker.afterHandle| replace:: to be documented in |handmade/method-debugapi-DapiDataWalker.afterHandle|.rst - -.. |handmade/method-debugapi-DapiDataWalker.afterHandleCancel| replace:: to be documented in |handmade/method-debugapi-DapiDataWalker.afterHandleCancel|.rst - -.. |handmade/method-debugapi-DapiDataWalker.beforeLambda| replace:: to be documented in |handmade/method-debugapi-DapiDataWalker.beforeLambda|.rst - -.. |handmade/method-debugapi-DapiDataWalker.afterLambda| replace:: to be documented in |handmade/method-debugapi-DapiDataWalker.afterLambda|.rst - -.. |handmade/method-debugapi-DapiDataWalker.beforeIterator| replace:: to be documented in |handmade/method-debugapi-DapiDataWalker.beforeIterator|.rst - -.. |handmade/method-debugapi-DapiDataWalker.afterIterator| replace:: to be documented in |handmade/method-debugapi-DapiDataWalker.afterIterator|.rst - -.. |handmade/method-debugapi-DapiDataWalker.Null| replace:: to be documented in |handmade/method-debugapi-DapiDataWalker.Null|.rst - -.. |handmade/method-debugapi-DapiDataWalker.VoidPtr| replace:: to be documented in |handmade/method-debugapi-DapiDataWalker.VoidPtr|.rst - -.. |handmade/method-debugapi-DapiDataWalker.Bool| replace:: to be documented in |handmade/method-debugapi-DapiDataWalker.Bool|.rst - -.. |handmade/method-debugapi-DapiDataWalker.Int8| replace:: to be documented in |handmade/method-debugapi-DapiDataWalker.Int8|.rst - -.. |handmade/method-debugapi-DapiDataWalker.UInt8| replace:: to be documented in |handmade/method-debugapi-DapiDataWalker.UInt8|.rst - -.. |handmade/method-debugapi-DapiDataWalker.Int16| replace:: to be documented in |handmade/method-debugapi-DapiDataWalker.Int16|.rst - -.. |handmade/method-debugapi-DapiDataWalker.UInt16| replace:: to be documented in |handmade/method-debugapi-DapiDataWalker.UInt16|.rst - -.. |handmade/method-debugapi-DapiDataWalker.Int64| replace:: to be documented in |handmade/method-debugapi-DapiDataWalker.Int64|.rst - -.. |handmade/method-debugapi-DapiDataWalker.UInt64| replace:: to be documented in |handmade/method-debugapi-DapiDataWalker.UInt64|.rst - -.. |handmade/method-debugapi-DapiDataWalker.String| replace:: to be documented in |handmade/method-debugapi-DapiDataWalker.String|.rst - -.. |handmade/method-debugapi-DapiDataWalker.Double| replace:: to be documented in |handmade/method-debugapi-DapiDataWalker.Double|.rst - -.. |handmade/method-debugapi-DapiDataWalker.Float| replace:: to be documented in |handmade/method-debugapi-DapiDataWalker.Float|.rst - -.. |handmade/method-debugapi-DapiDataWalker.Int| replace:: to be documented in |handmade/method-debugapi-DapiDataWalker.Int|.rst - -.. |handmade/method-debugapi-DapiDataWalker.UInt| replace:: to be documented in |handmade/method-debugapi-DapiDataWalker.UInt|.rst - -.. |handmade/method-debugapi-DapiDataWalker.Bitfield| replace:: to be documented in |handmade/method-debugapi-DapiDataWalker.Bitfield|.rst - -.. |handmade/method-debugapi-DapiDataWalker.Bitfield8| replace:: to be documented in |handmade/method-debugapi-DapiDataWalker.Bitfield8|.rst - -.. |handmade/method-debugapi-DapiDataWalker.Bitfield16| replace:: to be documented in |handmade/method-debugapi-DapiDataWalker.Bitfield16|.rst - -.. |handmade/method-debugapi-DapiDataWalker.Bitfield64| replace:: to be documented in |handmade/method-debugapi-DapiDataWalker.Bitfield64|.rst - -.. |handmade/method-debugapi-DapiDataWalker.Int2| replace:: to be documented in |handmade/method-debugapi-DapiDataWalker.Int2|.rst - -.. |handmade/method-debugapi-DapiDataWalker.Int3| replace:: to be documented in |handmade/method-debugapi-DapiDataWalker.Int3|.rst - -.. |handmade/method-debugapi-DapiDataWalker.Int4| replace:: to be documented in |handmade/method-debugapi-DapiDataWalker.Int4|.rst - -.. |handmade/method-debugapi-DapiDataWalker.UInt2| replace:: to be documented in |handmade/method-debugapi-DapiDataWalker.UInt2|.rst - -.. |handmade/method-debugapi-DapiDataWalker.UInt3| replace:: to be documented in |handmade/method-debugapi-DapiDataWalker.UInt3|.rst - -.. |handmade/method-debugapi-DapiDataWalker.UInt4| replace:: to be documented in |handmade/method-debugapi-DapiDataWalker.UInt4|.rst - -.. |handmade/method-debugapi-DapiDataWalker.Float2| replace:: to be documented in |handmade/method-debugapi-DapiDataWalker.Float2|.rst - -.. |handmade/method-debugapi-DapiDataWalker.Float3| replace:: to be documented in |handmade/method-debugapi-DapiDataWalker.Float3|.rst - -.. |handmade/method-debugapi-DapiDataWalker.Float4| replace:: to be documented in |handmade/method-debugapi-DapiDataWalker.Float4|.rst - -.. |handmade/method-debugapi-DapiDataWalker.Range| replace:: to be documented in |handmade/method-debugapi-DapiDataWalker.Range|.rst - -.. |handmade/method-debugapi-DapiDataWalker.URange| replace:: to be documented in |handmade/method-debugapi-DapiDataWalker.URange|.rst - -.. |handmade/method-debugapi-DapiDataWalker.Range64| replace:: to be documented in |handmade/method-debugapi-DapiDataWalker.Range64|.rst - -.. |handmade/method-debugapi-DapiDataWalker.URange64| replace:: to be documented in |handmade/method-debugapi-DapiDataWalker.URange64|.rst - -.. |handmade/method-debugapi-DapiDataWalker.WalkBlock| replace:: to be documented in |handmade/method-debugapi-DapiDataWalker.WalkBlock|.rst - -.. |handmade/method-debugapi-DapiDataWalker.WalkFunction| replace:: to be documented in |handmade/method-debugapi-DapiDataWalker.WalkFunction|.rst - -.. |handmade/method-debugapi-DapiDataWalker.WalkEnumeration| replace:: to be documented in |handmade/method-debugapi-DapiDataWalker.WalkEnumeration|.rst - -.. |handmade/method-debugapi-DapiDataWalker.WalkEnumeration8| replace:: to be documented in |handmade/method-debugapi-DapiDataWalker.WalkEnumeration8|.rst - -.. |handmade/method-debugapi-DapiDataWalker.WalkEnumeration16| replace:: to be documented in |handmade/method-debugapi-DapiDataWalker.WalkEnumeration16|.rst - -.. |handmade/method-debugapi-DapiDataWalker.WalkEnumeration64| replace:: to be documented in |handmade/method-debugapi-DapiDataWalker.WalkEnumeration64|.rst - -.. |handmade/method-debugapi-DapiDataWalker.FakeContext| replace:: to be documented in |handmade/method-debugapi-DapiDataWalker.FakeContext|.rst - -.. |handmade/method-debugapi-DapiDataWalker.InvalidData| replace:: to be documented in |handmade/method-debugapi-DapiDataWalker.InvalidData|.rst - -.. |handmade/class-debugapi-DapiStackWalker| replace:: to be documented in |handmade/class-debugapi-DapiStackWalker|.rst - -.. |handmade/method-debugapi-DapiStackWalker.canWalkArguments| replace:: to be documented in |handmade/method-debugapi-DapiStackWalker.canWalkArguments|.rst - -.. |handmade/method-debugapi-DapiStackWalker.canWalkVariables| replace:: to be documented in |handmade/method-debugapi-DapiStackWalker.canWalkVariables|.rst - -.. |handmade/method-debugapi-DapiStackWalker.canWalkOutOfScopeVariables| replace:: to be documented in |handmade/method-debugapi-DapiStackWalker.canWalkOutOfScopeVariables|.rst - -.. |handmade/method-debugapi-DapiStackWalker.onBeforeCall| replace:: to be documented in |handmade/method-debugapi-DapiStackWalker.onBeforeCall|.rst - -.. |handmade/method-debugapi-DapiStackWalker.onCallAOT| replace:: to be documented in |handmade/method-debugapi-DapiStackWalker.onCallAOT|.rst - -.. |handmade/method-debugapi-DapiStackWalker.onCallJIT| replace:: to be documented in |handmade/method-debugapi-DapiStackWalker.onCallJIT|.rst - -.. |handmade/method-debugapi-DapiStackWalker.onCallAt| replace:: to be documented in |handmade/method-debugapi-DapiStackWalker.onCallAt|.rst - -.. |handmade/method-debugapi-DapiStackWalker.onCall| replace:: to be documented in |handmade/method-debugapi-DapiStackWalker.onCall|.rst - -.. |handmade/method-debugapi-DapiStackWalker.onAfterPrologue| replace:: to be documented in |handmade/method-debugapi-DapiStackWalker.onAfterPrologue|.rst - -.. |handmade/method-debugapi-DapiStackWalker.onArgument| replace:: to be documented in |handmade/method-debugapi-DapiStackWalker.onArgument|.rst - -.. |handmade/method-debugapi-DapiStackWalker.onBeforeVariables| replace:: to be documented in |handmade/method-debugapi-DapiStackWalker.onBeforeVariables|.rst - -.. |handmade/method-debugapi-DapiStackWalker.onVariable| replace:: to be documented in |handmade/method-debugapi-DapiStackWalker.onVariable|.rst - -.. |handmade/method-debugapi-DapiStackWalker.onAfterCall| replace:: to be documented in |handmade/method-debugapi-DapiStackWalker.onAfterCall|.rst - -.. |handmade/method-debugapi-DapiStackWalker.onCorruptStack| replace:: to be documented in |handmade/method-debugapi-DapiStackWalker.onCorruptStack|.rst - -.. |handmade/function-debugapi-make_debug_agent| replace:: to be documented in |handmade/function-debugapi-make_debug_agent|.rst - -.. |handmade/function-debugapi-debugger_stop_requested| replace:: to be documented in |handmade/function-debugapi-debugger_stop_requested|.rst - -.. |handmade/function-debugapi-tick_debug_agent| replace:: to be documented in |handmade/function-debugapi-tick_debug_agent|.rst - -.. |handmade/function-debugapi-collect_debug_agent_state| replace:: to be documented in |handmade/function-debugapi-collect_debug_agent_state|.rst - -.. |handmade/function-debugapi-on_breakpoints_reset| replace:: to be documented in |handmade/function-debugapi-on_breakpoints_reset|.rst - -.. |handmade/function-debugapi-install_debug_agent_thread_local| replace:: to be documented in |handmade/function-debugapi-install_debug_agent_thread_local|.rst - -.. |handmade/function-debugapi-install_debug_agent| replace:: to be documented in |handmade/function-debugapi-install_debug_agent|.rst - -.. |handmade/function-debugapi-get_debug_agent_context| replace:: to be documented in |handmade/function-debugapi-get_debug_agent_context|.rst - -.. |handmade/function-debugapi-has_debug_agent_context| replace:: to be documented in |handmade/function-debugapi-has_debug_agent_context|.rst - -.. |handmade/function-debugapi-fork_debug_agent_context| replace:: to be documented in |handmade/function-debugapi-fork_debug_agent_context|.rst - -.. |handmade/function-debugapi-delete_debug_agent_context| replace:: to be documented in |handmade/function-debugapi-delete_debug_agent_context|.rst - -.. |handmade/function-debugapi-is_in_debug_agent_creation| replace:: to be documented in |handmade/function-debugapi-is_in_debug_agent_creation|.rst - -.. |handmade/function-debugapi-set_single_step| replace:: to be documented in |handmade/function-debugapi-set_single_step|.rst - -.. |handmade/function-debugapi-stackwalk| replace:: to be documented in |handmade/function-debugapi-stackwalk|.rst - -.. |handmade/function-debugapi-report_context_state| replace:: to be documented in |handmade/function-debugapi-report_context_state|.rst - -.. |handmade/function-debugapi-instrument_context_allocations| replace:: to be documented in |handmade/function-debugapi-instrument_context_allocations|.rst - -.. |handmade/function-debugapi-instrument_node| replace:: to be documented in |handmade/function-debugapi-instrument_node|.rst - -.. |handmade/function-debugapi-instrument_function| replace:: to be documented in |handmade/function-debugapi-instrument_function|.rst - -.. |handmade/function-debugapi-instrument_all_functions| replace:: to be documented in |handmade/function-debugapi-instrument_all_functions|.rst - -.. |handmade/function-debugapi-instrument_all_functions_thread_local| replace:: to be documented in |handmade/function-debugapi-instrument_all_functions_thread_local|.rst - -.. |handmade/function-debugapi-clear_instruments| replace:: to be documented in |handmade/function-debugapi-clear_instruments|.rst - -.. |handmade/function-debugapi-debug_agent_command| replace:: to be documented in |handmade/function-debugapi-debug_agent_command|.rst - -.. |handmade/function-debugapi-make_data_walker| replace:: to be documented in |handmade/function-debugapi-make_data_walker|.rst - -.. |handmade/function-debugapi-walk_data| replace:: to be documented in |handmade/function-debugapi-walk_data|.rst - -.. |handmade/function-debugapi-make_stack_walker| replace:: to be documented in |handmade/function-debugapi-make_stack_walker|.rst - -.. |handmade/function-debugapi-walk_stack| replace:: to be documented in |handmade/function-debugapi-walk_stack|.rst - -.. |handmade/function-debugapi-stack_depth| replace:: to be documented in |handmade/function-debugapi-stack_depth|.rst - -.. |handmade/function-debugapi-get_context_global_variable| replace:: to be documented in |handmade/function-debugapi-get_context_global_variable|.rst - -.. |handmade/function-debugapi-has_function| replace:: to be documented in |handmade/function-debugapi-has_function|.rst - -.. |handmade/function-debugapi-invoke_in_context| replace:: to be documented in |handmade/function-debugapi-invoke_in_context|.rst - -.. |handmade/function-debugapi-invoke_debug_agent_method| replace:: to be documented in |handmade/function-debugapi-invoke_debug_agent_method|.rst - -.. |handmade/function-debugapi-invoke_debug_agent_function| replace:: to be documented in |handmade/function-debugapi-invoke_debug_agent_function|.rst - -.. |handmade/function-debugapi-lock_debug_agent| replace:: to be documented in |handmade/function-debugapi-lock_debug_agent|.rst - -.. |handmade/function-debugapi-set_hw_breakpoint| replace:: to be documented in |handmade/function-debugapi-set_hw_breakpoint|.rst - -.. |handmade/function-debugapi-clear_hw_breakpoint| replace:: to be documented in |handmade/function-debugapi-clear_hw_breakpoint|.rst - -.. |handmade/function-debugapi-get_heap_stats| replace:: to be documented in |handmade/function-debugapi-get_heap_stats|.rst - -.. |handmade/function-debugapi-free_temp_string| replace:: to be documented in |handmade/function-debugapi-free_temp_string|.rst - -.. |handmade/function-debugapi-temp_string_size| replace:: to be documented in |handmade/function-debugapi-temp_string_size|.rst - -.. |handmade/function-debugapi-break_on_free| replace:: to be documented in |handmade/function-debugapi-break_on_free|.rst - -.. |handmade/function-debugapi-track_insane_pointer| replace:: to be documented in |handmade/function-debugapi-track_insane_pointer|.rst - -.. |handmade/function-debugapi-install_new_debug_agent| replace:: to be documented in |handmade/function-debugapi-install_new_debug_agent|.rst - -.. |handmade/function-debugapi-install_new_thread_local_debug_agent| replace:: to be documented in |handmade/function-debugapi-install_new_thread_local_debug_agent|.rst - -.. |handmade/structure_annotation-debugapi-Prologue| replace:: to be documented in |handmade/structure_annotation-debugapi-Prologue|.rst - -.. |handmade/structure_annotation-debugapi-DebugAgent| replace:: to be documented in |handmade/structure_annotation-debugapi-DebugAgent|.rst - -.. |handmade/structure_annotation-debugapi-DataWalker| replace:: to be documented in |handmade/structure_annotation-debugapi-DataWalker|.rst - -.. |handmade/structure_annotation-debugapi-StackWalker| replace:: to be documented in |handmade/structure_annotation-debugapi-StackWalker|.rst - diff --git a/doc/source/stdlib/detail/decs.rst b/doc/source/stdlib/detail/decs.rst deleted file mode 100644 index c461d1873e..0000000000 --- a/doc/source/stdlib/detail/decs.rst +++ /dev/null @@ -1,102 +0,0 @@ -.. |detail/typedef-decs-ComponentHash| replace:: to be documented in |detail/typedef-decs-ComponentHash|.rst - -.. |detail/typedef-decs-TypeHash| replace:: to be documented in |detail/typedef-decs-TypeHash|.rst - -.. |detail/typedef-decs-DeferEval| replace:: to be documented in |detail/typedef-decs-DeferEval|.rst - -.. |detail/typedef-decs-ComponentMap| replace:: to be documented in |detail/typedef-decs-ComponentMap|.rst - -.. |detail/typedef-decs-PassFunction| replace:: to be documented in |detail/typedef-decs-PassFunction|.rst - -.. |detail/structure-decs-CTypeInfo| replace:: to be documented in |detail/structure-decs-CTypeInfo|.rst - -.. |detail/structure-decs-Component| replace:: to be documented in |detail/structure-decs-Component|.rst - -.. |detail/structure-decs-EntityId| replace:: to be documented in |detail/structure-decs-EntityId|.rst - -.. |detail/structure-decs-Archetype| replace:: to be documented in |detail/structure-decs-Archetype|.rst - -.. |detail/structure-decs-ComponentValue| replace:: to be documented in |detail/structure-decs-ComponentValue|.rst - -.. |detail/structure-decs-DeferAction| replace:: to be documented in |detail/structure-decs-DeferAction|.rst - -.. |detail/structure-decs-EcsRequestPos| replace:: to be documented in |detail/structure-decs-EcsRequestPos|.rst - -.. |detail/structure-decs-EcsRequest| replace:: to be documented in |detail/structure-decs-EcsRequest|.rst - -.. |detail/structure-decs-DecsState| replace:: to be documented in |detail/structure-decs-DecsState|.rst - -.. |detail/structure-decs-DecsPass| replace:: to be documented in |detail/structure-decs-DecsPass|.rst - -.. |detail/function-decs-EcsRequestPos| replace:: to be documented in |detail/function-decs-EcsRequestPos|.rst - -.. |detail/function-decs-==| replace:: to be documented in |detail/function-decs-==|.rst - -.. |detail/function-decs-!=| replace:: to be documented in |detail/function-decs-!=|.rst - -.. |detail/function-decs-describe| replace:: to be documented in |detail/function-decs-describe|.rst - -.. |detail/function-decs-.| replace:: to be documented in |detail/function-decs-.|.rst - -.. |detail/function-decs-clone| replace:: to be documented in |detail/function-decs-clone|.rst - -.. |detail/function-decs-serialize| replace:: to be documented in |detail/function-decs-serialize|.rst - -.. |detail/function-decs-register_decs_stage_call| replace:: to be documented in |detail/function-decs-register_decs_stage_call|.rst - -.. |detail/function-decs-decs_stage| replace:: to be documented in |detail/function-decs-decs_stage|.rst - -.. |detail/function-decs-finalize| replace:: to be documented in |detail/function-decs-finalize|.rst - -.. |detail/function-decs-restart| replace:: to be documented in |detail/function-decs-restart|.rst - -.. |detail/function-decs-before_gc| replace:: to be documented in |detail/function-decs-before_gc|.rst - -.. |detail/function-decs-after_gc| replace:: to be documented in |detail/function-decs-after_gc|.rst - -.. |detail/function-decs-debug_dump| replace:: to be documented in |detail/function-decs-debug_dump|.rst - -.. |detail/function-decs-has| replace:: to be documented in |detail/function-decs-has|.rst - -.. |detail/function-decs-verify_request| replace:: to be documented in |detail/function-decs-verify_request|.rst - -.. |detail/function-decs-compile_request| replace:: to be documented in |detail/function-decs-compile_request|.rst - -.. |detail/function-decs-lookup_request| replace:: to be documented in |detail/function-decs-lookup_request|.rst - -.. |detail/function-decs-for_each_archetype| replace:: to be documented in |detail/function-decs-for_each_archetype|.rst - -.. |detail/function-decs-for_eid_archetype| replace:: to be documented in |detail/function-decs-for_eid_archetype|.rst - -.. |detail/function-decs-for_each_archetype_find| replace:: to be documented in |detail/function-decs-for_each_archetype_find|.rst - -.. |detail/function-decs-update_entity| replace:: to be documented in |detail/function-decs-update_entity|.rst - -.. |detail/function-decs-create_entity| replace:: to be documented in |detail/function-decs-create_entity|.rst - -.. |detail/function-decs-delete_entity| replace:: to be documented in |detail/function-decs-delete_entity|.rst - -.. |detail/function-decs-commit| replace:: to be documented in |detail/function-decs-commit|.rst - -.. |detail/function-decs-is_alive| replace:: to be documented in |detail/function-decs-is_alive|.rst - -.. |detail/function-decs-entity_count| replace:: to be documented in |detail/function-decs-entity_count|.rst - -.. |detail/function-decs-remove| replace:: to be documented in |detail/function-decs-remove|.rst - -.. |detail/function-decs-set| replace:: to be documented in |detail/function-decs-set|.rst - -.. |detail/function-decs-decs_array| replace:: to be documented in |detail/function-decs-decs_array|.rst - -.. |detail/function-decs-get| replace:: to be documented in |detail/function-decs-get|.rst - -.. |detail/function-decs-get_ro| replace:: to be documented in |detail/function-decs-get_ro|.rst - -.. |detail/function-decs-get_default_ro| replace:: to be documented in |detail/function-decs-get_default_ro|.rst - -.. |detail/function-decs-get_optional| replace:: to be documented in |detail/function-decs-get_optional|.rst - -.. |detail/function-decs-get_component| replace:: to be documented in |detail/function-decs-get_component|.rst - -.. |detail/variable-decs-INVALID_ENTITY_ID| replace:: to be documented in |detail/variable-decs-INVALID_ENTITY_ID|.rst - diff --git a/doc/source/stdlib/detail/decs_boost.rst b/doc/source/stdlib/detail/decs_boost.rst deleted file mode 100644 index 9a7b4b10ae..0000000000 --- a/doc/source/stdlib/detail/decs_boost.rst +++ /dev/null @@ -1,32 +0,0 @@ -.. |detail/typedef-decs_boost-ItCheck| replace:: to be documented in |detail/typedef-decs_boost-ItCheck|.rst - -.. |detail/enumeration-decs_boost-DecsQueryType| replace:: to be documented in |detail/enumeration-decs_boost-DecsQueryType|.rst - -.. |detail/class-decs_boost-DecsReq| replace:: to be documented in |detail/class-decs_boost-DecsReq|.rst - -.. |detail/class-decs_boost-DecsReqN| replace:: to be documented in |detail/class-decs_boost-DecsReqN|.rst - -.. |detail/class-decs_boost-DecsTemplate| replace:: to be documented in |detail/class-decs_boost-DecsTemplate|.rst - -.. |detail/method-decs_boost-DecsTemplate.apply| replace:: to be documented in |detail/method-decs_boost-DecsTemplate.apply|.rst - -.. |detail/class-decs_boost-DecsQueryMacro| replace:: to be documented in |detail/class-decs_boost-DecsQueryMacro|.rst - -.. |detail/method-decs_boost-DecsQueryMacro.preVisit| replace:: to be documented in |detail/method-decs_boost-DecsQueryMacro.preVisit|.rst - -.. |detail/method-decs_boost-DecsQueryMacro.visit| replace:: to be documented in |detail/method-decs_boost-DecsQueryMacro.visit|.rst - -.. |detail/method-decs_boost-DecsQueryMacro.implement| replace:: to be documented in |detail/method-decs_boost-DecsQueryMacro.implement|.rst - -.. |detail/class-decs_boost-DecsFindQueryMacro| replace:: to be documented in |detail/class-decs_boost-DecsFindQueryMacro|.rst - -.. |detail/method-decs_boost-DecsFindQueryMacro.visit| replace:: to be documented in |detail/method-decs_boost-DecsFindQueryMacro.visit|.rst - -.. |detail/class-decs_boost-DecsEcsMacro| replace:: to be documented in |detail/class-decs_boost-DecsEcsMacro|.rst - -.. |detail/method-decs_boost-DecsEcsMacro.apply| replace:: to be documented in |detail/method-decs_boost-DecsEcsMacro.apply|.rst - -.. |detail/class-decs_boost-FromDecsMacro| replace:: to be documented in |detail/class-decs_boost-FromDecsMacro|.rst - -.. |detail/method-decs_boost-FromDecsMacro.visit| replace:: to be documented in |detail/method-decs_boost-FromDecsMacro.visit|.rst - diff --git a/doc/source/stdlib/detail/decs_state.rst b/doc/source/stdlib/detail/decs_state.rst deleted file mode 100644 index 8ad13b113a..0000000000 --- a/doc/source/stdlib/detail/decs_state.rst +++ /dev/null @@ -1,10 +0,0 @@ -.. |detail/structure-decs_state-EcsRequestView| replace:: to be documented in |detail/structure-decs_state-EcsRequestView|.rst - -.. |detail/structure-decs_state-EcsComponentView| replace:: to be documented in |detail/structure-decs_state-EcsComponentView|.rst - -.. |detail/structure-decs_state-EcsArchetypeView| replace:: to be documented in |detail/structure-decs_state-EcsArchetypeView|.rst - -.. |detail/class-decs_state-ContextStateAgent| replace:: to be documented in |detail/class-decs_state-ContextStateAgent|.rst - -.. |detail/method-decs_state-ContextStateAgent.onCollect| replace:: to be documented in |detail/method-decs_state-ContextStateAgent.onCollect|.rst - diff --git a/doc/source/stdlib/detail/defer.rst b/doc/source/stdlib/detail/defer.rst deleted file mode 100644 index 28ce4d02bc..0000000000 --- a/doc/source/stdlib/detail/defer.rst +++ /dev/null @@ -1,12 +0,0 @@ -.. |detail/class-defer-DeferMacro| replace:: to be documented in |detail/class-defer-DeferMacro|.rst - -.. |detail/method-defer-DeferMacro.transform| replace:: to be documented in |detail/method-defer-DeferMacro.transform|.rst - -.. |detail/class-defer-DeferDeleteMacro| replace:: to be documented in |detail/class-defer-DeferDeleteMacro|.rst - -.. |detail/method-defer-DeferDeleteMacro.visit| replace:: to be documented in |detail/method-defer-DeferDeleteMacro.visit|.rst - -.. |detail/function-defer-defer| replace:: to be documented in |detail/function-defer-defer|.rst - -.. |detail/function-defer-nada| replace:: to be documented in |detail/function-defer-nada|.rst - diff --git a/doc/source/stdlib/detail/dynamic_cast_rtti.rst b/doc/source/stdlib/detail/dynamic_cast_rtti.rst deleted file mode 100644 index 9a43ab8354..0000000000 --- a/doc/source/stdlib/detail/dynamic_cast_rtti.rst +++ /dev/null @@ -1,14 +0,0 @@ -.. |detail/class-dynamic_cast_rtti-ClassAsIs| replace:: to be documented in |detail/class-dynamic_cast_rtti-ClassAsIs|.rst - -.. |detail/method-dynamic_cast_rtti-ClassAsIs.visitExprIsVariant| replace:: to be documented in |detail/method-dynamic_cast_rtti-ClassAsIs.visitExprIsVariant|.rst - -.. |detail/method-dynamic_cast_rtti-ClassAsIs.visitExprAsVariant| replace:: to be documented in |detail/method-dynamic_cast_rtti-ClassAsIs.visitExprAsVariant|.rst - -.. |detail/method-dynamic_cast_rtti-ClassAsIs.visitExprSafeAsVariant| replace:: to be documented in |detail/method-dynamic_cast_rtti-ClassAsIs.visitExprSafeAsVariant|.rst - -.. |detail/function-dynamic_cast_rtti-is_instance_of| replace:: to be documented in |detail/function-dynamic_cast_rtti-is_instance_of|.rst - -.. |detail/function-dynamic_cast_rtti-dynamic_type_cast| replace:: to be documented in |detail/function-dynamic_cast_rtti-dynamic_type_cast|.rst - -.. |detail/function-dynamic_cast_rtti-force_dynamic_type_cast| replace:: to be documented in |detail/function-dynamic_cast_rtti-force_dynamic_type_cast|.rst - diff --git a/doc/source/stdlib/detail/enum_trait.rst b/doc/source/stdlib/detail/enum_trait.rst deleted file mode 100644 index dee90a7533..0000000000 --- a/doc/source/stdlib/detail/enum_trait.rst +++ /dev/null @@ -1,20 +0,0 @@ -.. |detail/class-enum_trait-EnumFromStringConstruction| replace:: to be documented in |detail/class-enum_trait-EnumFromStringConstruction|.rst - -.. |detail/method-enum_trait-EnumFromStringConstruction.apply| replace:: to be documented in |detail/method-enum_trait-EnumFromStringConstruction.apply|.rst - -.. |detail/class-enum_trait-TypeInfoGetEnumLength| replace:: to be documented in |detail/class-enum_trait-TypeInfoGetEnumLength|.rst - -.. |detail/method-enum_trait-TypeInfoGetEnumLength.getAstChange| replace:: to be documented in |detail/method-enum_trait-TypeInfoGetEnumLength.getAstChange|.rst - -.. |detail/class-enum_trait-TypeInfoGetEnumNames| replace:: to be documented in |detail/class-enum_trait-TypeInfoGetEnumNames|.rst - -.. |detail/method-enum_trait-TypeInfoGetEnumNames.getAstChange| replace:: to be documented in |detail/method-enum_trait-TypeInfoGetEnumNames.getAstChange|.rst - -.. |detail/function-enum_trait-each| replace:: to be documented in |detail/function-enum_trait-each|.rst - -.. |detail/function-enum_trait-string| replace:: to be documented in |detail/function-enum_trait-string|.rst - -.. |detail/function-enum_trait-to_enum| replace:: to be documented in |detail/function-enum_trait-to_enum|.rst - -.. |detail/function-enum_trait-enum_to_table| replace:: to be documented in |detail/function-enum_trait-enum_to_table|.rst - diff --git a/doc/source/stdlib/detail/enumeration-async_boost-AssignOp.rst b/doc/source/stdlib/detail/enumeration-async_boost-AssignOp.rst deleted file mode 100644 index ca848df4e6..0000000000 --- a/doc/source/stdlib/detail/enumeration-async_boost-AssignOp.rst +++ /dev/null @@ -1 +0,0 @@ -Assignment operation type for async field updates. diff --git a/doc/source/stdlib/detail/enumeration-das_source_formatter-TokenType.rst b/doc/source/stdlib/detail/enumeration-das_source_formatter-TokenType.rst deleted file mode 100644 index 7aba5c2d84..0000000000 --- a/doc/source/stdlib/detail/enumeration-das_source_formatter-TokenType.rst +++ /dev/null @@ -1 +0,0 @@ -Classification of source tokens for formatting. diff --git a/doc/source/stdlib/detail/enumeration-decs_boost-DecsQueryType.rst b/doc/source/stdlib/detail/enumeration-decs_boost-DecsQueryType.rst deleted file mode 100644 index 9b7c88da38..0000000000 --- a/doc/source/stdlib/detail/enumeration-decs_boost-DecsQueryType.rst +++ /dev/null @@ -1 +0,0 @@ -Enum for ECS query types. diff --git a/doc/source/stdlib/detail/enumeration-match-MatchType.rst b/doc/source/stdlib/detail/enumeration-match-MatchType.rst deleted file mode 100644 index dd2cb5a9a6..0000000000 --- a/doc/source/stdlib/detail/enumeration-match-MatchType.rst +++ /dev/null @@ -1 +0,0 @@ -Type of pattern match clause. diff --git a/doc/source/stdlib/detail/enumeration_macro-enum_trait-string_to_enum.rst b/doc/source/stdlib/detail/enumeration_macro-enum_trait-string_to_enum.rst deleted file mode 100644 index c65b87b69b..0000000000 --- a/doc/source/stdlib/detail/enumeration_macro-enum_trait-string_to_enum.rst +++ /dev/null @@ -1 +0,0 @@ -Enumeration annotation which implements string constructor for enumeration. diff --git a/doc/source/stdlib/detail/faker.rst b/doc/source/stdlib/detail/faker.rst deleted file mode 100644 index d09033e994..0000000000 --- a/doc/source/stdlib/detail/faker.rst +++ /dev/null @@ -1,94 +0,0 @@ -.. |detail/typedef-faker-BitRepresentation64| replace:: to be documented in |detail/typedef-faker-BitRepresentation64|.rst - -.. |detail/structure-faker-MonthNameAndDay| replace:: to be documented in |detail/structure-faker-MonthNameAndDay|.rst - -.. |detail/structure-faker-Faker| replace:: to be documented in |detail/structure-faker-Faker|.rst - -.. |detail/function-faker-Faker| replace:: to be documented in |detail/function-faker-Faker|.rst - -.. |detail/function-faker-long_string| replace:: to be documented in |detail/function-faker-long_string|.rst - -.. |detail/function-faker-any_string| replace:: to be documented in |detail/function-faker-any_string|.rst - -.. |detail/function-faker-any_file_name| replace:: to be documented in |detail/function-faker-any_file_name|.rst - -.. |detail/function-faker-random_int| replace:: to be documented in |detail/function-faker-random_int|.rst - -.. |detail/function-faker-random_uint| replace:: to be documented in |detail/function-faker-random_uint|.rst - -.. |detail/function-faker-random_int8| replace:: to be documented in |detail/function-faker-random_int8|.rst - -.. |detail/function-faker-random_uint8| replace:: to be documented in |detail/function-faker-random_uint8|.rst - -.. |detail/function-faker-random_int16| replace:: to be documented in |detail/function-faker-random_int16|.rst - -.. |detail/function-faker-random_uint16| replace:: to be documented in |detail/function-faker-random_uint16|.rst - -.. |detail/function-faker-random_float| replace:: to be documented in |detail/function-faker-random_float|.rst - -.. |detail/function-faker-random_int2| replace:: to be documented in |detail/function-faker-random_int2|.rst - -.. |detail/function-faker-random_range| replace:: to be documented in |detail/function-faker-random_range|.rst - -.. |detail/function-faker-random_range64| replace:: to be documented in |detail/function-faker-random_range64|.rst - -.. |detail/function-faker-random_int3| replace:: to be documented in |detail/function-faker-random_int3|.rst - -.. |detail/function-faker-random_int4| replace:: to be documented in |detail/function-faker-random_int4|.rst - -.. |detail/function-faker-random_uint2| replace:: to be documented in |detail/function-faker-random_uint2|.rst - -.. |detail/function-faker-random_urange| replace:: to be documented in |detail/function-faker-random_urange|.rst - -.. |detail/function-faker-random_urange64| replace:: to be documented in |detail/function-faker-random_urange64|.rst - -.. |detail/function-faker-random_uint3| replace:: to be documented in |detail/function-faker-random_uint3|.rst - -.. |detail/function-faker-random_uint4| replace:: to be documented in |detail/function-faker-random_uint4|.rst - -.. |detail/function-faker-random_float2| replace:: to be documented in |detail/function-faker-random_float2|.rst - -.. |detail/function-faker-random_float3| replace:: to be documented in |detail/function-faker-random_float3|.rst - -.. |detail/function-faker-random_float4| replace:: to be documented in |detail/function-faker-random_float4|.rst - -.. |detail/function-faker-random_float3x3| replace:: to be documented in |detail/function-faker-random_float3x3|.rst - -.. |detail/function-faker-random_float3x4| replace:: to be documented in |detail/function-faker-random_float3x4|.rst - -.. |detail/function-faker-random_float4x4| replace:: to be documented in |detail/function-faker-random_float4x4|.rst - -.. |detail/function-faker-random_int64| replace:: to be documented in |detail/function-faker-random_int64|.rst - -.. |detail/function-faker-random_uint64| replace:: to be documented in |detail/function-faker-random_uint64|.rst - -.. |detail/function-faker-random_double| replace:: to be documented in |detail/function-faker-random_double|.rst - -.. |detail/function-faker-any_set| replace:: to be documented in |detail/function-faker-any_set|.rst - -.. |detail/function-faker-any_char| replace:: to be documented in |detail/function-faker-any_char|.rst - -.. |detail/function-faker-number| replace:: to be documented in |detail/function-faker-number|.rst - -.. |detail/function-faker-positive_int| replace:: to be documented in |detail/function-faker-positive_int|.rst - -.. |detail/function-faker-any_int| replace:: to be documented in |detail/function-faker-any_int|.rst - -.. |detail/function-faker-any_hex| replace:: to be documented in |detail/function-faker-any_hex|.rst - -.. |detail/function-faker-any_float| replace:: to be documented in |detail/function-faker-any_float|.rst - -.. |detail/function-faker-any_uint| replace:: to be documented in |detail/function-faker-any_uint|.rst - -.. |detail/function-faker-month| replace:: to be documented in |detail/function-faker-month|.rst - -.. |detail/function-faker-day| replace:: to be documented in |detail/function-faker-day|.rst - -.. |detail/function-faker-is_leap_year| replace:: to be documented in |detail/function-faker-is_leap_year|.rst - -.. |detail/function-faker-week_day| replace:: to be documented in |detail/function-faker-week_day|.rst - -.. |detail/function-faker-date| replace:: to be documented in |detail/function-faker-date|.rst - -.. |detail/function-faker-any_enum| replace:: to be documented in |detail/function-faker-any_enum|.rst - diff --git a/doc/source/stdlib/detail/fio.rst b/doc/source/stdlib/detail/fio.rst deleted file mode 100644 index 0f8aaf9f36..0000000000 --- a/doc/source/stdlib/detail/fio.rst +++ /dev/null @@ -1,104 +0,0 @@ -.. |handmade/typedef-fio-file| replace:: to be documented in |handmade/typedef-fio-file|.rst - -.. |handmade/structure-fio-df_header| replace:: to be documented in |handmade/structure-fio-df_header|.rst - -.. |handmade/function-fio-remove| replace:: to be documented in |handmade/function-fio-remove|.rst - -.. |handmade/function-fio-rename| replace:: to be documented in |handmade/function-fio-rename|.rst - -.. |handmade/function-fio-fexist| replace:: to be documented in |handmade/function-fio-fexist|.rst - -.. |handmade/function-fio-rmdir_rec| replace:: to be documented in |handmade/function-fio-rmdir_rec|.rst - -.. |handmade/function-fio-fopen| replace:: to be documented in |handmade/function-fio-fopen|.rst - -.. |handmade/function-fio-fclose| replace:: to be documented in |handmade/function-fio-fclose|.rst - -.. |handmade/function-fio-fflush| replace:: to be documented in |handmade/function-fio-fflush|.rst - -.. |handmade/function-fio-fprint| replace:: to be documented in |handmade/function-fio-fprint|.rst - -.. |handmade/function-fio-fread| replace:: to be documented in |handmade/function-fio-fread|.rst - -.. |handmade/function-fio-fmap| replace:: to be documented in |handmade/function-fio-fmap|.rst - -.. |handmade/function-fio-fgets| replace:: to be documented in |handmade/function-fio-fgets|.rst - -.. |handmade/function-fio-fwrite| replace:: to be documented in |handmade/function-fio-fwrite|.rst - -.. |handmade/function-fio-feof| replace:: to be documented in |handmade/function-fio-feof|.rst - -.. |handmade/function-fio-fseek| replace:: to be documented in |handmade/function-fio-fseek|.rst - -.. |handmade/function-fio-ftell| replace:: to be documented in |handmade/function-fio-ftell|.rst - -.. |handmade/function-fio-dir_name| replace:: to be documented in |handmade/function-fio-dir_name|.rst - -.. |handmade/function-fio-base_name| replace:: to be documented in |handmade/function-fio-base_name|.rst - -.. |handmade/function-fio-fstat| replace:: to be documented in |handmade/function-fio-fstat|.rst - -.. |handmade/function-fio-stat| replace:: to be documented in |handmade/function-fio-stat|.rst - -.. |handmade/function-fio-builtin_dir| replace:: to be documented in |handmade/function-fio-builtin_dir|.rst - -.. |handmade/function-fio-mkdir| replace:: to be documented in |handmade/function-fio-mkdir|.rst - -.. |handmade/function-fio-rmdir| replace:: to be documented in |handmade/function-fio-rmdir|.rst - -.. |handmade/function-fio-chdir| replace:: to be documented in |handmade/function-fio-chdir|.rst - -.. |handmade/function-fio-getcwd| replace:: to be documented in |handmade/function-fio-getcwd|.rst - -.. |handmade/function-fio-fstdin| replace:: to be documented in |handmade/function-fio-fstdin|.rst - -.. |handmade/function-fio-fstdout| replace:: to be documented in |handmade/function-fio-fstdout|.rst - -.. |handmade/function-fio-fstderr| replace:: to be documented in |handmade/function-fio-fstderr|.rst - -.. |handmade/function-fio-sleep| replace:: to be documented in |handmade/function-fio-sleep|.rst - -.. |handmade/function-fio-getchar| replace:: to be documented in |handmade/function-fio-getchar|.rst - -.. |handmade/function-fio-exit| replace:: to be documented in |handmade/function-fio-exit|.rst - -.. |handmade/function-fio-popen| replace:: to be documented in |handmade/function-fio-popen|.rst - -.. |handmade/function-fio-popen_binary| replace:: to be documented in |handmade/function-fio-popen_binary|.rst - -.. |handmade/function-fio-popen_timeout| replace:: to be documented in |handmade/function-fio-popen_timeout|.rst - -.. |handmade/function-fio-get_full_file_name| replace:: to be documented in |handmade/function-fio-get_full_file_name|.rst - -.. |handmade/function-fio-get_env_variable| replace:: to be documented in |handmade/function-fio-get_env_variable|.rst - -.. |handmade/function-fio-has_env_variable| replace:: to be documented in |handmade/function-fio-has_env_variable|.rst - -.. |handmade/function-fio-register_dynamic_module| replace:: to be documented in |handmade/function-fio-register_dynamic_module|.rst - -.. |handmade/function-fio-register_native_path| replace:: to be documented in |handmade/function-fio-register_native_path|.rst - -.. |handmade/function-fio-sanitize_command_line| replace:: to be documented in |handmade/function-fio-sanitize_command_line|.rst - -.. |handmade/function-fio-fload| replace:: to be documented in |handmade/function-fio-fload|.rst - -.. |handmade/function-fio-mkdir_rec| replace:: to be documented in |handmade/function-fio-mkdir_rec|.rst - -.. |handmade/function-fio-dir| replace:: to be documented in |handmade/function-fio-dir|.rst - -.. |handmade/function-fio-fsave| replace:: to be documented in |handmade/function-fio-fsave|.rst - -.. |handmade/any_annotation-fio-FILE| replace:: to be documented in |handmade/any_annotation-fio-FILE|.rst - -.. |handmade/structure_annotation-fio-FStat| replace:: to be documented in |handmade/structure_annotation-fio-FStat|.rst - -.. |handmade/variable-fio-seek_set| replace:: to be documented in |handmade/variable-fio-seek_set|.rst - -.. |handmade/variable-fio-seek_cur| replace:: to be documented in |handmade/variable-fio-seek_cur|.rst - -.. |handmade/variable-fio-seek_end| replace:: to be documented in |handmade/variable-fio-seek_end|.rst - -.. |handmade/variable-fio-popen_timed_out| replace:: to be documented in |handmade/variable-fio-popen_timed_out|.rst - -.. |handmade/variable-fio-df_magic| replace:: to be documented in |handmade/variable-fio-df_magic|.rst - diff --git a/doc/source/stdlib/detail/flat_hash_table.rst b/doc/source/stdlib/detail/flat_hash_table.rst deleted file mode 100644 index bf0e10638d..0000000000 --- a/doc/source/stdlib/detail/flat_hash_table.rst +++ /dev/null @@ -1,6 +0,0 @@ -.. |detail/structure-flat_hash_table-TFlatHashTable| replace:: to be documented in |detail/structure-flat_hash_table-TFlatHashTable|.rst - -.. |detail/class-flat_hash_table-TFlatHashTable`TypeMacro| replace:: to be documented in |detail/class-flat_hash_table-TFlatHashTable`TypeMacro|.rst - -.. |detail/method-flat_hash_table-TFlatHashTable`TypeMacro.visit| replace:: to be documented in |detail/method-flat_hash_table-TFlatHashTable`TypeMacro.visit|.rst - diff --git a/doc/source/stdlib/detail/function-PUGIXML_boost-XML-0xbcf5611be457e8cf.rst b/doc/source/stdlib/detail/function-PUGIXML_boost-XML-0xbcf5611be457e8cf.rst deleted file mode 100644 index 20afa42af0..0000000000 --- a/doc/source/stdlib/detail/function-PUGIXML_boost-XML-0xbcf5611be457e8cf.rst +++ /dev/null @@ -1,8 +0,0 @@ -Serializes a native value into XML child elements of *node*. -Structs/tuples: each field becomes a child element (via ``apply``). -Variants: stores ``_variant`` attribute with the active index. -Tables (key-value): each entry becomes an ``entry`` child with ``_key`` / ``_val`` sub-elements. -Tables (key-only): each key becomes an ``item`` child. -Arrays/dim: each element becomes an ``item`` child. -Enumerations: stored as string name. Bitfields: stored as integer value. -Primitives: sets the text content of *node*. diff --git a/doc/source/stdlib/detail/function-PUGIXML_boost-_lb__rb_-0x251b2adb5e14d129.rst b/doc/source/stdlib/detail/function-PUGIXML_boost-_lb__rb_-0x251b2adb5e14d129.rst deleted file mode 100644 index 60bab6639c..0000000000 --- a/doc/source/stdlib/detail/function-PUGIXML_boost-_lb__rb_-0x251b2adb5e14d129.rst +++ /dev/null @@ -1,6 +0,0 @@ -Returns the attribute named *attr_name*. Combine with ``is``/``as`` -operators for typed access: - - ``node["price"] as float`` - - ``if (node["discount"] is float) { ... }`` diff --git a/doc/source/stdlib/detail/function-PUGIXML_boost-_rq_as_rq_bool-0x721c70e73f0163a7.rst b/doc/source/stdlib/detail/function-PUGIXML_boost-_rq_as_rq_bool-0x721c70e73f0163a7.rst deleted file mode 100644 index 58ea51a69c..0000000000 --- a/doc/source/stdlib/detail/function-PUGIXML_boost-_rq_as_rq_bool-0x721c70e73f0163a7.rst +++ /dev/null @@ -1 +0,0 @@ -Converts ``xml_text`` content to ``bool`` (default ``false``). diff --git a/doc/source/stdlib/detail/function-PUGIXML_boost-_rq_as_rq_bool-0xc34ee2a9569f067.rst b/doc/source/stdlib/detail/function-PUGIXML_boost-_rq_as_rq_bool-0xc34ee2a9569f067.rst deleted file mode 100644 index 94733397b3..0000000000 --- a/doc/source/stdlib/detail/function-PUGIXML_boost-_rq_as_rq_bool-0xc34ee2a9569f067.rst +++ /dev/null @@ -1 +0,0 @@ -Converts an ``xml_attribute`` value to ``bool`` (default ``false``). diff --git a/doc/source/stdlib/detail/function-PUGIXML_boost-_rq_as_rq_double-0x3527cadb24d29cd9.rst b/doc/source/stdlib/detail/function-PUGIXML_boost-_rq_as_rq_double-0x3527cadb24d29cd9.rst deleted file mode 100644 index e9802ae646..0000000000 --- a/doc/source/stdlib/detail/function-PUGIXML_boost-_rq_as_rq_double-0x3527cadb24d29cd9.rst +++ /dev/null @@ -1 +0,0 @@ -Converts ``xml_text`` content to ``double`` (default ``0.0lf``). diff --git a/doc/source/stdlib/detail/function-PUGIXML_boost-_rq_as_rq_double-0xf32f0d8bd412d0dd.rst b/doc/source/stdlib/detail/function-PUGIXML_boost-_rq_as_rq_double-0xf32f0d8bd412d0dd.rst deleted file mode 100644 index 45e714d313..0000000000 --- a/doc/source/stdlib/detail/function-PUGIXML_boost-_rq_as_rq_double-0xf32f0d8bd412d0dd.rst +++ /dev/null @@ -1 +0,0 @@ -Converts an ``xml_attribute`` value to ``double`` (default ``0.0lf``). diff --git a/doc/source/stdlib/detail/function-PUGIXML_boost-_rq_as_rq_float-0x6d681df2ec82440d.rst b/doc/source/stdlib/detail/function-PUGIXML_boost-_rq_as_rq_float-0x6d681df2ec82440d.rst deleted file mode 100644 index f7fe158dfa..0000000000 --- a/doc/source/stdlib/detail/function-PUGIXML_boost-_rq_as_rq_float-0x6d681df2ec82440d.rst +++ /dev/null @@ -1 +0,0 @@ -Converts an ``xml_attribute`` value to ``float`` (default ``0.0``). diff --git a/doc/source/stdlib/detail/function-PUGIXML_boost-_rq_as_rq_float-0xfd0720bc5556ae24.rst b/doc/source/stdlib/detail/function-PUGIXML_boost-_rq_as_rq_float-0xfd0720bc5556ae24.rst deleted file mode 100644 index 27f8b9e1ad..0000000000 --- a/doc/source/stdlib/detail/function-PUGIXML_boost-_rq_as_rq_float-0xfd0720bc5556ae24.rst +++ /dev/null @@ -1 +0,0 @@ -Converts ``xml_text`` content to ``float`` (default ``0.0``). diff --git a/doc/source/stdlib/detail/function-PUGIXML_boost-_rq_as_rq_int-0x429742962167fba0.rst b/doc/source/stdlib/detail/function-PUGIXML_boost-_rq_as_rq_int-0x429742962167fba0.rst deleted file mode 100644 index f44084ae81..0000000000 --- a/doc/source/stdlib/detail/function-PUGIXML_boost-_rq_as_rq_int-0x429742962167fba0.rst +++ /dev/null @@ -1 +0,0 @@ -Converts ``xml_text`` content to ``int`` (default ``0``). diff --git a/doc/source/stdlib/detail/function-PUGIXML_boost-_rq_as_rq_int-0xddcf81d70b6795c9.rst b/doc/source/stdlib/detail/function-PUGIXML_boost-_rq_as_rq_int-0xddcf81d70b6795c9.rst deleted file mode 100644 index 6c465884b6..0000000000 --- a/doc/source/stdlib/detail/function-PUGIXML_boost-_rq_as_rq_int-0xddcf81d70b6795c9.rst +++ /dev/null @@ -1 +0,0 @@ -Converts an ``xml_attribute`` value to ``int`` (default ``0``). diff --git a/doc/source/stdlib/detail/function-PUGIXML_boost-_rq_as_rq_string-0x2c9325e77956d555.rst b/doc/source/stdlib/detail/function-PUGIXML_boost-_rq_as_rq_string-0x2c9325e77956d555.rst deleted file mode 100644 index f72d50b2e9..0000000000 --- a/doc/source/stdlib/detail/function-PUGIXML_boost-_rq_as_rq_string-0x2c9325e77956d555.rst +++ /dev/null @@ -1 +0,0 @@ -Converts an ``xml_attribute`` value to ``string`` (default ``""``). diff --git a/doc/source/stdlib/detail/function-PUGIXML_boost-_rq_as_rq_string-0x9ae99ad7385d6661.rst b/doc/source/stdlib/detail/function-PUGIXML_boost-_rq_as_rq_string-0x9ae99ad7385d6661.rst deleted file mode 100644 index ea0f3e99d8..0000000000 --- a/doc/source/stdlib/detail/function-PUGIXML_boost-_rq_as_rq_string-0x9ae99ad7385d6661.rst +++ /dev/null @@ -1 +0,0 @@ -Converts ``xml_text`` content to ``string`` (default ``""``). diff --git a/doc/source/stdlib/detail/function-PUGIXML_boost-_rq_as_rq_string-0xaf08a2d7494c7def.rst b/doc/source/stdlib/detail/function-PUGIXML_boost-_rq_as_rq_string-0xaf08a2d7494c7def.rst deleted file mode 100644 index 951d57913a..0000000000 --- a/doc/source/stdlib/detail/function-PUGIXML_boost-_rq_as_rq_string-0xaf08a2d7494c7def.rst +++ /dev/null @@ -1 +0,0 @@ -Serializes an ``xml_node`` (and its subtree) to an XML string. diff --git a/doc/source/stdlib/detail/function-PUGIXML_boost-_rq_as_rq_uint-0x66e2a4dceb40c997.rst b/doc/source/stdlib/detail/function-PUGIXML_boost-_rq_as_rq_uint-0x66e2a4dceb40c997.rst deleted file mode 100644 index 8c11bd793b..0000000000 --- a/doc/source/stdlib/detail/function-PUGIXML_boost-_rq_as_rq_uint-0x66e2a4dceb40c997.rst +++ /dev/null @@ -1 +0,0 @@ -Converts ``xml_text`` content to ``uint`` (default ``0u``). diff --git a/doc/source/stdlib/detail/function-PUGIXML_boost-_rq_as_rq_uint-0xed6118728183bdb7.rst b/doc/source/stdlib/detail/function-PUGIXML_boost-_rq_as_rq_uint-0xed6118728183bdb7.rst deleted file mode 100644 index b6cd1eb559..0000000000 --- a/doc/source/stdlib/detail/function-PUGIXML_boost-_rq_as_rq_uint-0xed6118728183bdb7.rst +++ /dev/null @@ -1 +0,0 @@ -Converts an ``xml_attribute`` value to ``uint`` (default ``0u``). diff --git a/doc/source/stdlib/detail/function-PUGIXML_boost-_rq_as_rq_xml_node-0xc84a3d087ae75595.rst b/doc/source/stdlib/detail/function-PUGIXML_boost-_rq_as_rq_xml_node-0xc84a3d087ae75595.rst deleted file mode 100644 index bff32cad2d..0000000000 --- a/doc/source/stdlib/detail/function-PUGIXML_boost-_rq_as_rq_xml_node-0xc84a3d087ae75595.rst +++ /dev/null @@ -1,2 +0,0 @@ -Returns the document as an ``xml_node`` handle for mutation APIs -that require a node (e.g. ``append_child``). diff --git a/doc/source/stdlib/detail/function-PUGIXML_boost-_rq_is_rq_bool-0x5e20efb5c2020ba7.rst b/doc/source/stdlib/detail/function-PUGIXML_boost-_rq_is_rq_bool-0x5e20efb5c2020ba7.rst deleted file mode 100644 index 2d6e8ed643..0000000000 --- a/doc/source/stdlib/detail/function-PUGIXML_boost-_rq_is_rq_bool-0x5e20efb5c2020ba7.rst +++ /dev/null @@ -1 +0,0 @@ -Returns ``true`` if the text node is non-empty. diff --git a/doc/source/stdlib/detail/function-PUGIXML_boost-_rq_is_rq_bool-0x9cbb58a3b28e4867.rst b/doc/source/stdlib/detail/function-PUGIXML_boost-_rq_is_rq_bool-0x9cbb58a3b28e4867.rst deleted file mode 100644 index 9fabffc658..0000000000 --- a/doc/source/stdlib/detail/function-PUGIXML_boost-_rq_is_rq_bool-0x9cbb58a3b28e4867.rst +++ /dev/null @@ -1 +0,0 @@ -Returns ``true`` if the attribute exists. diff --git a/doc/source/stdlib/detail/function-PUGIXML_boost-_rq_is_rq_double-0x8d8345e2b3f8e8dd.rst b/doc/source/stdlib/detail/function-PUGIXML_boost-_rq_is_rq_double-0x8d8345e2b3f8e8dd.rst deleted file mode 100644 index 9fabffc658..0000000000 --- a/doc/source/stdlib/detail/function-PUGIXML_boost-_rq_is_rq_double-0x8d8345e2b3f8e8dd.rst +++ /dev/null @@ -1 +0,0 @@ -Returns ``true`` if the attribute exists. diff --git a/doc/source/stdlib/detail/function-PUGIXML_boost-_rq_is_rq_double-0xa43d96cf303a4d9.rst b/doc/source/stdlib/detail/function-PUGIXML_boost-_rq_is_rq_double-0xa43d96cf303a4d9.rst deleted file mode 100644 index 2d6e8ed643..0000000000 --- a/doc/source/stdlib/detail/function-PUGIXML_boost-_rq_is_rq_double-0xa43d96cf303a4d9.rst +++ /dev/null @@ -1 +0,0 @@ -Returns ``true`` if the text node is non-empty. diff --git a/doc/source/stdlib/detail/function-PUGIXML_boost-_rq_is_rq_float-0x234f98660e571c0d.rst b/doc/source/stdlib/detail/function-PUGIXML_boost-_rq_is_rq_float-0x234f98660e571c0d.rst deleted file mode 100644 index 9fabffc658..0000000000 --- a/doc/source/stdlib/detail/function-PUGIXML_boost-_rq_is_rq_float-0x234f98660e571c0d.rst +++ /dev/null @@ -1 +0,0 @@ -Returns ``true`` if the attribute exists. diff --git a/doc/source/stdlib/detail/function-PUGIXML_boost-_rq_is_rq_float-0xb1edc76f87b2e624.rst b/doc/source/stdlib/detail/function-PUGIXML_boost-_rq_is_rq_float-0xb1edc76f87b2e624.rst deleted file mode 100644 index 2d6e8ed643..0000000000 --- a/doc/source/stdlib/detail/function-PUGIXML_boost-_rq_is_rq_float-0xb1edc76f87b2e624.rst +++ /dev/null @@ -1 +0,0 @@ -Returns ``true`` if the text node is non-empty. diff --git a/doc/source/stdlib/detail/function-PUGIXML_boost-_rq_is_rq_int-0xacb39c10f71723a0.rst b/doc/source/stdlib/detail/function-PUGIXML_boost-_rq_is_rq_int-0xacb39c10f71723a0.rst deleted file mode 100644 index 2d6e8ed643..0000000000 --- a/doc/source/stdlib/detail/function-PUGIXML_boost-_rq_is_rq_int-0xacb39c10f71723a0.rst +++ /dev/null @@ -1 +0,0 @@ -Returns ``true`` if the text node is non-empty. diff --git a/doc/source/stdlib/detail/function-PUGIXML_boost-_rq_is_rq_int-0xcaaf3de021c29dc9.rst b/doc/source/stdlib/detail/function-PUGIXML_boost-_rq_is_rq_int-0xcaaf3de021c29dc9.rst deleted file mode 100644 index 30a0a115a1..0000000000 --- a/doc/source/stdlib/detail/function-PUGIXML_boost-_rq_is_rq_int-0xcaaf3de021c29dc9.rst +++ /dev/null @@ -1 +0,0 @@ -Returns ``true`` if the attribute exists (has a value convertible to int). diff --git a/doc/source/stdlib/detail/function-PUGIXML_boost-_rq_is_rq_string-0xdc67df25b7fced55.rst b/doc/source/stdlib/detail/function-PUGIXML_boost-_rq_is_rq_string-0xdc67df25b7fced55.rst deleted file mode 100644 index 9fabffc658..0000000000 --- a/doc/source/stdlib/detail/function-PUGIXML_boost-_rq_is_rq_string-0xdc67df25b7fced55.rst +++ /dev/null @@ -1 +0,0 @@ -Returns ``true`` if the attribute exists. diff --git a/doc/source/stdlib/detail/function-PUGIXML_boost-_rq_is_rq_string-0xebf7409860396e61.rst b/doc/source/stdlib/detail/function-PUGIXML_boost-_rq_is_rq_string-0xebf7409860396e61.rst deleted file mode 100644 index 2d6e8ed643..0000000000 --- a/doc/source/stdlib/detail/function-PUGIXML_boost-_rq_is_rq_string-0xebf7409860396e61.rst +++ /dev/null @@ -1 +0,0 @@ -Returns ``true`` if the text node is non-empty. diff --git a/doc/source/stdlib/detail/function-PUGIXML_boost-_rq_is_rq_uint-0x5529f33cd72c2197.rst b/doc/source/stdlib/detail/function-PUGIXML_boost-_rq_is_rq_uint-0x5529f33cd72c2197.rst deleted file mode 100644 index 2d6e8ed643..0000000000 --- a/doc/source/stdlib/detail/function-PUGIXML_boost-_rq_is_rq_uint-0x5529f33cd72c2197.rst +++ /dev/null @@ -1 +0,0 @@ -Returns ``true`` if the text node is non-empty. diff --git a/doc/source/stdlib/detail/function-PUGIXML_boost-_rq_is_rq_uint-0xdf4b2e9015e1a5b7.rst b/doc/source/stdlib/detail/function-PUGIXML_boost-_rq_is_rq_uint-0xdf4b2e9015e1a5b7.rst deleted file mode 100644 index 9fabffc658..0000000000 --- a/doc/source/stdlib/detail/function-PUGIXML_boost-_rq_is_rq_uint-0xdf4b2e9015e1a5b7.rst +++ /dev/null @@ -1 +0,0 @@ -Returns ``true`` if the attribute exists. diff --git a/doc/source/stdlib/detail/function-PUGIXML_boost-add_attr-0x5237713e065d1379.rst b/doc/source/stdlib/detail/function-PUGIXML_boost-add_attr-0x5237713e065d1379.rst deleted file mode 100644 index d77b28d486..0000000000 --- a/doc/source/stdlib/detail/function-PUGIXML_boost-add_attr-0x5237713e065d1379.rst +++ /dev/null @@ -1 +0,0 @@ -Appends an attribute with *name* and *value* (string). diff --git a/doc/source/stdlib/detail/function-PUGIXML_boost-add_attr-0x591e9160f0c645bf.rst b/doc/source/stdlib/detail/function-PUGIXML_boost-add_attr-0x591e9160f0c645bf.rst deleted file mode 100644 index 6de75d79aa..0000000000 --- a/doc/source/stdlib/detail/function-PUGIXML_boost-add_attr-0x591e9160f0c645bf.rst +++ /dev/null @@ -1 +0,0 @@ -Appends an attribute with *name* and *value* (bool). diff --git a/doc/source/stdlib/detail/function-PUGIXML_boost-add_attr-0x5c79ac60f3b0e811.rst b/doc/source/stdlib/detail/function-PUGIXML_boost-add_attr-0x5c79ac60f3b0e811.rst deleted file mode 100644 index 3c381d8473..0000000000 --- a/doc/source/stdlib/detail/function-PUGIXML_boost-add_attr-0x5c79ac60f3b0e811.rst +++ /dev/null @@ -1 +0,0 @@ -Appends an attribute with *name* and *value* (int). diff --git a/doc/source/stdlib/detail/function-PUGIXML_boost-add_attr-0xeef31eb5708550f5.rst b/doc/source/stdlib/detail/function-PUGIXML_boost-add_attr-0xeef31eb5708550f5.rst deleted file mode 100644 index 97f7800ffb..0000000000 --- a/doc/source/stdlib/detail/function-PUGIXML_boost-add_attr-0xeef31eb5708550f5.rst +++ /dev/null @@ -1 +0,0 @@ -Appends an attribute with *name* and *value* (float). diff --git a/doc/source/stdlib/detail/function-PUGIXML_boost-add_child-0xeb16b491b72d6975.rst b/doc/source/stdlib/detail/function-PUGIXML_boost-add_child-0xeb16b491b72d6975.rst deleted file mode 100644 index b049b4e6ae..0000000000 --- a/doc/source/stdlib/detail/function-PUGIXML_boost-add_child-0xeb16b491b72d6975.rst +++ /dev/null @@ -1,2 +0,0 @@ -Appends a child element with *name* and sets its text content. -Returns the new child node. diff --git a/doc/source/stdlib/detail/function-PUGIXML_boost-add_child_ex-0xf7e00c12151f9b98.rst b/doc/source/stdlib/detail/function-PUGIXML_boost-add_child_ex-0xf7e00c12151f9b98.rst deleted file mode 100644 index 789b83da77..0000000000 --- a/doc/source/stdlib/detail/function-PUGIXML_boost-add_child_ex-0xf7e00c12151f9b98.rst +++ /dev/null @@ -1,2 +0,0 @@ -Appends a child element with *name* and a single attribute. -Returns the new child node. diff --git a/doc/source/stdlib/detail/function-PUGIXML_boost-attr-0x1d6fc1d6a2a77644.rst b/doc/source/stdlib/detail/function-PUGIXML_boost-attr-0x1d6fc1d6a2a77644.rst deleted file mode 100644 index a62a7d0c3d..0000000000 --- a/doc/source/stdlib/detail/function-PUGIXML_boost-attr-0x1d6fc1d6a2a77644.rst +++ /dev/null @@ -1 +0,0 @@ -Appends a bool attribute, returns parent for chaining. diff --git a/doc/source/stdlib/detail/function-PUGIXML_boost-attr-0x2098dad6a509264e.rst b/doc/source/stdlib/detail/function-PUGIXML_boost-attr-0x2098dad6a509264e.rst deleted file mode 100644 index f513ee57d3..0000000000 --- a/doc/source/stdlib/detail/function-PUGIXML_boost-attr-0x2098dad6a509264e.rst +++ /dev/null @@ -1 +0,0 @@ -Appends an int attribute, returns parent for chaining. diff --git a/doc/source/stdlib/detail/function-PUGIXML_boost-attr-0x3410f0d71ab205e8.rst b/doc/source/stdlib/detail/function-PUGIXML_boost-attr-0x3410f0d71ab205e8.rst deleted file mode 100644 index 9ab5ab96db..0000000000 --- a/doc/source/stdlib/detail/function-PUGIXML_boost-attr-0x3410f0d71ab205e8.rst +++ /dev/null @@ -1,3 +0,0 @@ -Appends an attribute and returns the *parent node* for chaining: - - ``book |> attr("isbn", "978-...") |> attr("lang", "en")`` diff --git a/doc/source/stdlib/detail/function-PUGIXML_boost-attr-0x84e733b02c37333c.rst b/doc/source/stdlib/detail/function-PUGIXML_boost-attr-0x84e733b02c37333c.rst deleted file mode 100644 index d03911dcca..0000000000 --- a/doc/source/stdlib/detail/function-PUGIXML_boost-attr-0x84e733b02c37333c.rst +++ /dev/null @@ -1 +0,0 @@ -Appends a float attribute, returns parent for chaining. diff --git a/doc/source/stdlib/detail/function-PUGIXML_boost-each-0x4fd348473aab16bd.rst b/doc/source/stdlib/detail/function-PUGIXML_boost-each-0x4fd348473aab16bd.rst deleted file mode 100644 index d504a59395..0000000000 --- a/doc/source/stdlib/detail/function-PUGIXML_boost-each-0x4fd348473aab16bd.rst +++ /dev/null @@ -1,5 +0,0 @@ -Returns a lazy iterator over all ``xpath_node`` entries in an -``xpath_node_set``. Intended for use in ``for`` loops. -Because the iterator is named ``each``, the call can be omitted: - - ``for (xn in node_set) { ... }`` diff --git a/doc/source/stdlib/detail/function-PUGIXML_boost-each_attribute-0x556a1dc6ede89990.rst b/doc/source/stdlib/detail/function-PUGIXML_boost-each_attribute-0x556a1dc6ede89990.rst deleted file mode 100644 index 8c3bb88214..0000000000 --- a/doc/source/stdlib/detail/function-PUGIXML_boost-each_attribute-0x556a1dc6ede89990.rst +++ /dev/null @@ -1,4 +0,0 @@ -Returns a lazy iterator over all attributes of *node*. -Intended for use in ``for`` loops: - - ``for (a in each_attribute(node)) { ... }`` diff --git a/doc/source/stdlib/detail/function-PUGIXML_boost-each_child-0x514331a1aedd9ae0.rst b/doc/source/stdlib/detail/function-PUGIXML_boost-each_child-0x514331a1aedd9ae0.rst deleted file mode 100644 index 801698bebd..0000000000 --- a/doc/source/stdlib/detail/function-PUGIXML_boost-each_child-0x514331a1aedd9ae0.rst +++ /dev/null @@ -1,4 +0,0 @@ -Returns a lazy iterator over all child elements of *node*. -Intended for use in ``for`` loops: - - ``for (ch in each_child(node)) { ... }`` diff --git a/doc/source/stdlib/detail/function-PUGIXML_boost-each_child-0xcce7cf7b92af7d5d.rst b/doc/source/stdlib/detail/function-PUGIXML_boost-each_child-0xcce7cf7b92af7d5d.rst deleted file mode 100644 index edb7f99331..0000000000 --- a/doc/source/stdlib/detail/function-PUGIXML_boost-each_child-0xcce7cf7b92af7d5d.rst +++ /dev/null @@ -1,4 +0,0 @@ -Returns a lazy iterator over child elements of *node* whose tag -matches *name*. Intended for use in ``for`` loops: - - ``for (ch in each_child(node, "item")) { ... }`` diff --git a/doc/source/stdlib/detail/function-PUGIXML_boost-for_each-0x25ea38cd3ed17a4c.rst b/doc/source/stdlib/detail/function-PUGIXML_boost-for_each-0x25ea38cd3ed17a4c.rst deleted file mode 100644 index cc3ba5523e..0000000000 --- a/doc/source/stdlib/detail/function-PUGIXML_boost-for_each-0x25ea38cd3ed17a4c.rst +++ /dev/null @@ -1 +0,0 @@ -Iterates over all ``xpath_node`` entries in an ``xpath_node_set``. diff --git a/doc/source/stdlib/detail/function-PUGIXML_boost-for_each_attribute-0x17f19003764e1cd5.rst b/doc/source/stdlib/detail/function-PUGIXML_boost-for_each_attribute-0x17f19003764e1cd5.rst deleted file mode 100644 index 012a6520cd..0000000000 --- a/doc/source/stdlib/detail/function-PUGIXML_boost-for_each_attribute-0x17f19003764e1cd5.rst +++ /dev/null @@ -1 +0,0 @@ -Iterates over all attributes of *node*. diff --git a/doc/source/stdlib/detail/function-PUGIXML_boost-for_each_child-0x48f1d49fcea3a9ca.rst b/doc/source/stdlib/detail/function-PUGIXML_boost-for_each_child-0x48f1d49fcea3a9ca.rst deleted file mode 100644 index 1102cc32f3..0000000000 --- a/doc/source/stdlib/detail/function-PUGIXML_boost-for_each_child-0x48f1d49fcea3a9ca.rst +++ /dev/null @@ -1 +0,0 @@ -Iterates over child elements of *node* whose tag matches *name*. diff --git a/doc/source/stdlib/detail/function-PUGIXML_boost-for_each_child-0x71a947d9d8241e87.rst b/doc/source/stdlib/detail/function-PUGIXML_boost-for_each_child-0x71a947d9d8241e87.rst deleted file mode 100644 index fe45e5df1b..0000000000 --- a/doc/source/stdlib/detail/function-PUGIXML_boost-for_each_child-0x71a947d9d8241e87.rst +++ /dev/null @@ -1 +0,0 @@ -Iterates over all child elements of *node*. diff --git a/doc/source/stdlib/detail/function-PUGIXML_boost-for_each_select-0x36f35f6fd4c87783.rst b/doc/source/stdlib/detail/function-PUGIXML_boost-for_each_select-0x36f35f6fd4c87783.rst deleted file mode 100644 index d679c30059..0000000000 --- a/doc/source/stdlib/detail/function-PUGIXML_boost-for_each_select-0x36f35f6fd4c87783.rst +++ /dev/null @@ -1,2 +0,0 @@ -Selects all nodes matching *xpath_query* and invokes *blk* for -each result. The temporary ``xpath_node_set`` is freed automatically. diff --git a/doc/source/stdlib/detail/function-PUGIXML_boost-from_XML-0x1dbb58b00530eaaa.rst b/doc/source/stdlib/detail/function-PUGIXML_boost-from_XML-0x1dbb58b00530eaaa.rst deleted file mode 100644 index e7bc165c1f..0000000000 --- a/doc/source/stdlib/detail/function-PUGIXML_boost-from_XML-0x1dbb58b00530eaaa.rst +++ /dev/null @@ -1,2 +0,0 @@ -Parses an XML string and deserializes the document element into -a native value in one step. Symmetric with ``to_XML``. diff --git a/doc/source/stdlib/detail/function-PUGIXML_boost-from_XML-0x1e616ea1fb8a891.rst b/doc/source/stdlib/detail/function-PUGIXML_boost-from_XML-0x1e616ea1fb8a891.rst deleted file mode 100644 index 330b4378fb..0000000000 --- a/doc/source/stdlib/detail/function-PUGIXML_boost-from_XML-0x1e616ea1fb8a891.rst +++ /dev/null @@ -1,3 +0,0 @@ -Deserializes an XML node tree into a native value. -Struct fields become child elements; arrays become sequences of -child elements. Missing elements yield default values. diff --git a/doc/source/stdlib/detail/function-PUGIXML_boost-from_XML-0x207339d8053e1252.rst b/doc/source/stdlib/detail/function-PUGIXML_boost-from_XML-0x207339d8053e1252.rst deleted file mode 100644 index 8da8195345..0000000000 --- a/doc/source/stdlib/detail/function-PUGIXML_boost-from_XML-0x207339d8053e1252.rst +++ /dev/null @@ -1 +0,0 @@ -Reads the text content of *node* as a ``float``. diff --git a/doc/source/stdlib/detail/function-PUGIXML_boost-from_XML-0x225c299548e3a45c.rst b/doc/source/stdlib/detail/function-PUGIXML_boost-from_XML-0x225c299548e3a45c.rst deleted file mode 100644 index 5240e6a3f9..0000000000 --- a/doc/source/stdlib/detail/function-PUGIXML_boost-from_XML-0x225c299548e3a45c.rst +++ /dev/null @@ -1 +0,0 @@ -Reads the text content of *node* as a ``uint``. diff --git a/doc/source/stdlib/detail/function-PUGIXML_boost-from_XML-0x2f8a8219dceddabc.rst b/doc/source/stdlib/detail/function-PUGIXML_boost-from_XML-0x2f8a8219dceddabc.rst deleted file mode 100644 index e853c40400..0000000000 --- a/doc/source/stdlib/detail/function-PUGIXML_boost-from_XML-0x2f8a8219dceddabc.rst +++ /dev/null @@ -1 +0,0 @@ -Reads the text content of *node* as an ``int16``. diff --git a/doc/source/stdlib/detail/function-PUGIXML_boost-from_XML-0x2fa582cc1934b132.rst b/doc/source/stdlib/detail/function-PUGIXML_boost-from_XML-0x2fa582cc1934b132.rst deleted file mode 100644 index 996e1605a9..0000000000 --- a/doc/source/stdlib/detail/function-PUGIXML_boost-from_XML-0x2fa582cc1934b132.rst +++ /dev/null @@ -1 +0,0 @@ -Reads the text content of *node* as a ``double``. diff --git a/doc/source/stdlib/detail/function-PUGIXML_boost-from_XML-0x4c0b104ddd173b74.rst b/doc/source/stdlib/detail/function-PUGIXML_boost-from_XML-0x4c0b104ddd173b74.rst deleted file mode 100644 index e85d031d6c..0000000000 --- a/doc/source/stdlib/detail/function-PUGIXML_boost-from_XML-0x4c0b104ddd173b74.rst +++ /dev/null @@ -1 +0,0 @@ -Reads the text content of *node* as a ``bool``. diff --git a/doc/source/stdlib/detail/function-PUGIXML_boost-from_XML-0x585cb4f0caa26c33.rst b/doc/source/stdlib/detail/function-PUGIXML_boost-from_XML-0x585cb4f0caa26c33.rst deleted file mode 100644 index 9d8a8557b6..0000000000 --- a/doc/source/stdlib/detail/function-PUGIXML_boost-from_XML-0x585cb4f0caa26c33.rst +++ /dev/null @@ -1 +0,0 @@ -Reads the text content of *node* as an ``int64``. diff --git a/doc/source/stdlib/detail/function-PUGIXML_boost-from_XML-0x67ce1060e0d93211.rst b/doc/source/stdlib/detail/function-PUGIXML_boost-from_XML-0x67ce1060e0d93211.rst deleted file mode 100644 index 48bcf3e703..0000000000 --- a/doc/source/stdlib/detail/function-PUGIXML_boost-from_XML-0x67ce1060e0d93211.rst +++ /dev/null @@ -1,2 +0,0 @@ -Deserializes an XML node into a vector or range value. -Each component (``x``, ``y``, ``z``, ``w``) is a child element. diff --git a/doc/source/stdlib/detail/function-PUGIXML_boost-from_XML-0x69ba3d241881551c.rst b/doc/source/stdlib/detail/function-PUGIXML_boost-from_XML-0x69ba3d241881551c.rst deleted file mode 100644 index 066ae45a19..0000000000 --- a/doc/source/stdlib/detail/function-PUGIXML_boost-from_XML-0x69ba3d241881551c.rst +++ /dev/null @@ -1 +0,0 @@ -Reads the text content of *node* as a ``uint8``. diff --git a/doc/source/stdlib/detail/function-PUGIXML_boost-from_XML-0x7ebe1e6a543cfe55.rst b/doc/source/stdlib/detail/function-PUGIXML_boost-from_XML-0x7ebe1e6a543cfe55.rst deleted file mode 100644 index c96901de76..0000000000 --- a/doc/source/stdlib/detail/function-PUGIXML_boost-from_XML-0x7ebe1e6a543cfe55.rst +++ /dev/null @@ -1,2 +0,0 @@ -Deserializes an XML node tree into a ``table``. -Each ``entry`` child has ``_key`` and ``_val`` sub-elements. diff --git a/doc/source/stdlib/detail/function-PUGIXML_boost-from_XML-0xa13c8ed0ecf0bc90.rst b/doc/source/stdlib/detail/function-PUGIXML_boost-from_XML-0xa13c8ed0ecf0bc90.rst deleted file mode 100644 index 9f2f2203b3..0000000000 --- a/doc/source/stdlib/detail/function-PUGIXML_boost-from_XML-0xa13c8ed0ecf0bc90.rst +++ /dev/null @@ -1 +0,0 @@ -Reads the text content of *node* as an ``int8``. diff --git a/doc/source/stdlib/detail/function-PUGIXML_boost-from_XML-0xa7d5e82fe58728ad.rst b/doc/source/stdlib/detail/function-PUGIXML_boost-from_XML-0xa7d5e82fe58728ad.rst deleted file mode 100644 index 871effa32e..0000000000 --- a/doc/source/stdlib/detail/function-PUGIXML_boost-from_XML-0xa7d5e82fe58728ad.rst +++ /dev/null @@ -1,2 +0,0 @@ -Deserializes an XML node tree into a key-only ``table`` (set). -Each ``item`` child’s text content becomes a key. diff --git a/doc/source/stdlib/detail/function-PUGIXML_boost-from_XML-0xaa5f5b7bb74db43a.rst b/doc/source/stdlib/detail/function-PUGIXML_boost-from_XML-0xaa5f5b7bb74db43a.rst deleted file mode 100644 index e4ee6f53c4..0000000000 --- a/doc/source/stdlib/detail/function-PUGIXML_boost-from_XML-0xaa5f5b7bb74db43a.rst +++ /dev/null @@ -1 +0,0 @@ -Reads the text content of *node* as a ``string``. diff --git a/doc/source/stdlib/detail/function-PUGIXML_boost-from_XML-0xcab8a472b82cd004.rst b/doc/source/stdlib/detail/function-PUGIXML_boost-from_XML-0xcab8a472b82cd004.rst deleted file mode 100644 index 51b85cb73a..0000000000 --- a/doc/source/stdlib/detail/function-PUGIXML_boost-from_XML-0xcab8a472b82cd004.rst +++ /dev/null @@ -1 +0,0 @@ -Reads the text content of *node* as a ``uint16``. diff --git a/doc/source/stdlib/detail/function-PUGIXML_boost-from_XML-0xd6f58c74b4506291.rst b/doc/source/stdlib/detail/function-PUGIXML_boost-from_XML-0xd6f58c74b4506291.rst deleted file mode 100644 index f577e79d90..0000000000 --- a/doc/source/stdlib/detail/function-PUGIXML_boost-from_XML-0xd6f58c74b4506291.rst +++ /dev/null @@ -1 +0,0 @@ -Reads the text content of *node* as an ``int``. diff --git a/doc/source/stdlib/detail/function-PUGIXML_boost-from_XML-0xe790ffad69e1f3ba.rst b/doc/source/stdlib/detail/function-PUGIXML_boost-from_XML-0xe790ffad69e1f3ba.rst deleted file mode 100644 index 15474ccfa9..0000000000 --- a/doc/source/stdlib/detail/function-PUGIXML_boost-from_XML-0xe790ffad69e1f3ba.rst +++ /dev/null @@ -1 +0,0 @@ -Reads the text content of *node* as a ``uint64``. diff --git a/doc/source/stdlib/detail/function-PUGIXML_boost-node_attr-0xbe441d554874c4b2.rst b/doc/source/stdlib/detail/function-PUGIXML_boost-node_attr-0xbe441d554874c4b2.rst deleted file mode 100644 index 2200856517..0000000000 --- a/doc/source/stdlib/detail/function-PUGIXML_boost-node_attr-0xbe441d554874c4b2.rst +++ /dev/null @@ -1,2 +0,0 @@ -Returns the string value of attribute *attr_name*, -or *default_value* if no such attribute exists. diff --git a/doc/source/stdlib/detail/function-PUGIXML_boost-node_attr_bool-0xbf9b92d8da1b436b.rst b/doc/source/stdlib/detail/function-PUGIXML_boost-node_attr_bool-0xbf9b92d8da1b436b.rst deleted file mode 100644 index c5af489350..0000000000 --- a/doc/source/stdlib/detail/function-PUGIXML_boost-node_attr_bool-0xbf9b92d8da1b436b.rst +++ /dev/null @@ -1 +0,0 @@ -Returns the boolean value of attribute *attr_name*. diff --git a/doc/source/stdlib/detail/function-PUGIXML_boost-node_attr_float-0x69b8a4e7bc7cf842.rst b/doc/source/stdlib/detail/function-PUGIXML_boost-node_attr_float-0x69b8a4e7bc7cf842.rst deleted file mode 100644 index f750b1eaf2..0000000000 --- a/doc/source/stdlib/detail/function-PUGIXML_boost-node_attr_float-0x69b8a4e7bc7cf842.rst +++ /dev/null @@ -1 +0,0 @@ -Returns the float value of attribute *attr_name*. diff --git a/doc/source/stdlib/detail/function-PUGIXML_boost-node_attr_int-0xce6d244fb5689ec5.rst b/doc/source/stdlib/detail/function-PUGIXML_boost-node_attr_int-0xce6d244fb5689ec5.rst deleted file mode 100644 index b67b77ce58..0000000000 --- a/doc/source/stdlib/detail/function-PUGIXML_boost-node_attr_int-0xce6d244fb5689ec5.rst +++ /dev/null @@ -1 +0,0 @@ -Returns the integer value of attribute *attr_name*. diff --git a/doc/source/stdlib/detail/function-PUGIXML_boost-node_text-0x3f73bca250b5bd59.rst b/doc/source/stdlib/detail/function-PUGIXML_boost-node_text-0x3f73bca250b5bd59.rst deleted file mode 100644 index 6367f53dfa..0000000000 --- a/doc/source/stdlib/detail/function-PUGIXML_boost-node_text-0x3f73bca250b5bd59.rst +++ /dev/null @@ -1,2 +0,0 @@ -Returns the text content of the child element named *child_name*, -or *default_value* if the child does not exist or has no text. diff --git a/doc/source/stdlib/detail/function-PUGIXML_boost-open_xml-0x33dcfdb5883c180a.rst b/doc/source/stdlib/detail/function-PUGIXML_boost-open_xml-0x33dcfdb5883c180a.rst deleted file mode 100644 index c15b6448c2..0000000000 --- a/doc/source/stdlib/detail/function-PUGIXML_boost-open_xml-0x33dcfdb5883c180a.rst +++ /dev/null @@ -1,3 +0,0 @@ -Opens an XML file, invokes *blk* with the parsed document and a -success flag, then automatically frees the document. The caller -never needs ``unsafe { delete ... }``. diff --git a/doc/source/stdlib/detail/function-PUGIXML_boost-parse_xml-0x349fb8caae6e9bea.rst b/doc/source/stdlib/detail/function-PUGIXML_boost-parse_xml-0x349fb8caae6e9bea.rst deleted file mode 100644 index d76feb22fc..0000000000 --- a/doc/source/stdlib/detail/function-PUGIXML_boost-parse_xml-0x349fb8caae6e9bea.rst +++ /dev/null @@ -1,2 +0,0 @@ -Parses an XML string, invokes *blk* with the document and a -success flag, then automatically frees the document. diff --git a/doc/source/stdlib/detail/function-PUGIXML_boost-select_text-0xa9a6e6bebdff6295.rst b/doc/source/stdlib/detail/function-PUGIXML_boost-select_text-0xa9a6e6bebdff6295.rst deleted file mode 100644 index e24297d8a2..0000000000 --- a/doc/source/stdlib/detail/function-PUGIXML_boost-select_text-0xa9a6e6bebdff6295.rst +++ /dev/null @@ -1,2 +0,0 @@ -Runs an XPath query and returns the text content of the first -matching node, or *default_value* if nothing matches. diff --git a/doc/source/stdlib/detail/function-PUGIXML_boost-select_value-0xf3dad41d34740702.rst b/doc/source/stdlib/detail/function-PUGIXML_boost-select_value-0xf3dad41d34740702.rst deleted file mode 100644 index 7ff65aa370..0000000000 --- a/doc/source/stdlib/detail/function-PUGIXML_boost-select_value-0xf3dad41d34740702.rst +++ /dev/null @@ -1,3 +0,0 @@ -Runs an XPath query and returns the value of the first matching -node. If the result is an attribute, returns its string value; -if an element, returns its text content. diff --git a/doc/source/stdlib/detail/function-PUGIXML_boost-tag-0x5a9956d8d911dd1d.rst b/doc/source/stdlib/detail/function-PUGIXML_boost-tag-0x5a9956d8d911dd1d.rst deleted file mode 100644 index 2141b1df07..0000000000 --- a/doc/source/stdlib/detail/function-PUGIXML_boost-tag-0x5a9956d8d911dd1d.rst +++ /dev/null @@ -1,4 +0,0 @@ -Appends a child element with *name* and text content. Returns -the new child. Use for leaf elements: - - ``node |> tag("title", "The C Programming Language")`` diff --git a/doc/source/stdlib/detail/function-PUGIXML_boost-tag-0x65aed30958925577.rst b/doc/source/stdlib/detail/function-PUGIXML_boost-tag-0x65aed30958925577.rst deleted file mode 100644 index 9fe1be9593..0000000000 --- a/doc/source/stdlib/detail/function-PUGIXML_boost-tag-0x65aed30958925577.rst +++ /dev/null @@ -1 +0,0 @@ -Appends a child element with text to a document. diff --git a/doc/source/stdlib/detail/function-PUGIXML_boost-tag-0x727c248874b7fc70.rst b/doc/source/stdlib/detail/function-PUGIXML_boost-tag-0x727c248874b7fc70.rst deleted file mode 100644 index deba3b8dd8..0000000000 --- a/doc/source/stdlib/detail/function-PUGIXML_boost-tag-0x727c248874b7fc70.rst +++ /dev/null @@ -1,4 +0,0 @@ -Appends a child element with *name*, invokes *blk* with it, and -returns the new child. Use with pipe+block for nested XML: - - ``node |> tag("book") <| $(var book) { book |> tag("title", "...") }`` diff --git a/doc/source/stdlib/detail/function-PUGIXML_boost-tag-0x8f53003459d9cae4.rst b/doc/source/stdlib/detail/function-PUGIXML_boost-tag-0x8f53003459d9cae4.rst deleted file mode 100644 index 6c41eb6075..0000000000 --- a/doc/source/stdlib/detail/function-PUGIXML_boost-tag-0x8f53003459d9cae4.rst +++ /dev/null @@ -1,3 +0,0 @@ -Appends a child element to a document, invokes *blk*, returns it. -Allows ``doc |> tag("root") <| $(var root) { ... }`` without manual -``doc as xml_node``. diff --git a/doc/source/stdlib/detail/function-PUGIXML_boost-tag-0x9b81d3b83daa9142.rst b/doc/source/stdlib/detail/function-PUGIXML_boost-tag-0x9b81d3b83daa9142.rst deleted file mode 100644 index e558bc298e..0000000000 --- a/doc/source/stdlib/detail/function-PUGIXML_boost-tag-0x9b81d3b83daa9142.rst +++ /dev/null @@ -1 +0,0 @@ -Appends a bare child element to a document. diff --git a/doc/source/stdlib/detail/function-PUGIXML_boost-tag-0xed89718e1af55fff.rst b/doc/source/stdlib/detail/function-PUGIXML_boost-tag-0xed89718e1af55fff.rst deleted file mode 100644 index 7e1b5d8bf6..0000000000 --- a/doc/source/stdlib/detail/function-PUGIXML_boost-tag-0xed89718e1af55fff.rst +++ /dev/null @@ -1 +0,0 @@ -Appends a bare child element with *name*. Returns the new child. diff --git a/doc/source/stdlib/detail/function-PUGIXML_boost-to_XML-0x2d65668f630159c7.rst b/doc/source/stdlib/detail/function-PUGIXML_boost-to_XML-0x2d65668f630159c7.rst deleted file mode 100644 index e9ac29fc00..0000000000 --- a/doc/source/stdlib/detail/function-PUGIXML_boost-to_XML-0x2d65668f630159c7.rst +++ /dev/null @@ -1,2 +0,0 @@ -Serializes a struct to a complete XML string, wrapping it in an -element named *root_name* (default ``"root"``). diff --git a/doc/source/stdlib/detail/function-PUGIXML_boost-to_string-0x32c0de37c573e304.rst b/doc/source/stdlib/detail/function-PUGIXML_boost-to_string-0x32c0de37c573e304.rst deleted file mode 100644 index b801b6ac81..0000000000 --- a/doc/source/stdlib/detail/function-PUGIXML_boost-to_string-0x32c0de37c573e304.rst +++ /dev/null @@ -1,2 +0,0 @@ -Serializes a single node (and its subtree) to an XML string -with two-space indentation. diff --git a/doc/source/stdlib/detail/function-PUGIXML_boost-to_string-0xf9fbf93367124555.rst b/doc/source/stdlib/detail/function-PUGIXML_boost-to_string-0xf9fbf93367124555.rst deleted file mode 100644 index 6ea9b537e5..0000000000 --- a/doc/source/stdlib/detail/function-PUGIXML_boost-to_string-0xf9fbf93367124555.rst +++ /dev/null @@ -1,2 +0,0 @@ -Serializes the entire document to a pretty-printed XML string -with two-space indentation and default formatting. diff --git a/doc/source/stdlib/detail/function-PUGIXML_boost-with_doc-0xcfbefee8b45606a8.rst b/doc/source/stdlib/detail/function-PUGIXML_boost-with_doc-0xcfbefee8b45606a8.rst deleted file mode 100644 index 152d9ff4e9..0000000000 --- a/doc/source/stdlib/detail/function-PUGIXML_boost-with_doc-0xcfbefee8b45606a8.rst +++ /dev/null @@ -1,2 +0,0 @@ -Creates an empty ``xml_document``, invokes *blk*, then frees it. -Use this when building XML from scratch. diff --git a/doc/source/stdlib/detail/function-PUGIXML_boost-with_xpath-0xa26691fe8a9135ad.rst b/doc/source/stdlib/detail/function-PUGIXML_boost-with_xpath-0xa26691fe8a9135ad.rst deleted file mode 100644 index e25072b66e..0000000000 --- a/doc/source/stdlib/detail/function-PUGIXML_boost-with_xpath-0xa26691fe8a9135ad.rst +++ /dev/null @@ -1,2 +0,0 @@ -Compiles an XPath expression, invokes *blk* with the compiled -query handle, then frees it. Avoids manual ``delete``. diff --git a/doc/source/stdlib/detail/function-algorithm-binary_search-0x1cebf128180ac16e.rst b/doc/source/stdlib/detail/function-algorithm-binary_search-0x1cebf128180ac16e.rst deleted file mode 100644 index 27fdc5f128..0000000000 --- a/doc/source/stdlib/detail/function-algorithm-binary_search-0x1cebf128180ac16e.rst +++ /dev/null @@ -1 +0,0 @@ -Returns true if val appears within the range [f, last). diff --git a/doc/source/stdlib/detail/function-algorithm-binary_search-0x1de8f19e6c44a56d.rst b/doc/source/stdlib/detail/function-algorithm-binary_search-0x1de8f19e6c44a56d.rst deleted file mode 100644 index 27fdc5f128..0000000000 --- a/doc/source/stdlib/detail/function-algorithm-binary_search-0x1de8f19e6c44a56d.rst +++ /dev/null @@ -1 +0,0 @@ -Returns true if val appears within the range [f, last). diff --git a/doc/source/stdlib/detail/function-algorithm-binary_search-0x1f96034a82a36c98.rst b/doc/source/stdlib/detail/function-algorithm-binary_search-0x1f96034a82a36c98.rst deleted file mode 100644 index b65f1cf30a..0000000000 --- a/doc/source/stdlib/detail/function-algorithm-binary_search-0x1f96034a82a36c98.rst +++ /dev/null @@ -1,2 +0,0 @@ -Returns true if val appears within the range [f, last). -The array must be sorted according to the provided less function. diff --git a/doc/source/stdlib/detail/function-algorithm-binary_search-0x289919af628da4e1.rst b/doc/source/stdlib/detail/function-algorithm-binary_search-0x289919af628da4e1.rst deleted file mode 100644 index 9cb8d3583a..0000000000 --- a/doc/source/stdlib/detail/function-algorithm-binary_search-0x289919af628da4e1.rst +++ /dev/null @@ -1,2 +0,0 @@ -Returns true if val appears within the array a. -The array must be sorted according to the provided less function. diff --git a/doc/source/stdlib/detail/function-algorithm-binary_search-0x6140c5dea5a22cf.rst b/doc/source/stdlib/detail/function-algorithm-binary_search-0x6140c5dea5a22cf.rst deleted file mode 100644 index e802435d82..0000000000 --- a/doc/source/stdlib/detail/function-algorithm-binary_search-0x6140c5dea5a22cf.rst +++ /dev/null @@ -1 +0,0 @@ -Returns true if val appears within the array a. diff --git a/doc/source/stdlib/detail/function-algorithm-binary_search-0x9cc7c2707d845b4a.rst b/doc/source/stdlib/detail/function-algorithm-binary_search-0x9cc7c2707d845b4a.rst deleted file mode 100644 index e802435d82..0000000000 --- a/doc/source/stdlib/detail/function-algorithm-binary_search-0x9cc7c2707d845b4a.rst +++ /dev/null @@ -1 +0,0 @@ -Returns true if val appears within the array a. diff --git a/doc/source/stdlib/detail/function-algorithm-binary_search-0xad4ffd6c53c3193.rst b/doc/source/stdlib/detail/function-algorithm-binary_search-0xad4ffd6c53c3193.rst deleted file mode 100644 index c2798d74fd..0000000000 --- a/doc/source/stdlib/detail/function-algorithm-binary_search-0xad4ffd6c53c3193.rst +++ /dev/null @@ -1,2 +0,0 @@ -Returns true if val appears within the array a. -The array must be sorted. diff --git a/doc/source/stdlib/detail/function-algorithm-binary_search-0xaf2c235d37853a3a.rst b/doc/source/stdlib/detail/function-algorithm-binary_search-0xaf2c235d37853a3a.rst deleted file mode 100644 index 76dbf8f939..0000000000 --- a/doc/source/stdlib/detail/function-algorithm-binary_search-0xaf2c235d37853a3a.rst +++ /dev/null @@ -1,2 +0,0 @@ -Returns true if val appears within the range [f, last). -The array must be sorted. diff --git a/doc/source/stdlib/detail/function-algorithm-combine-0x9635b3d64daa7cb3.rst b/doc/source/stdlib/detail/function-algorithm-combine-0x9635b3d64daa7cb3.rst deleted file mode 100644 index 88ac8a5699..0000000000 --- a/doc/source/stdlib/detail/function-algorithm-combine-0x9635b3d64daa7cb3.rst +++ /dev/null @@ -1 +0,0 @@ -Returns a new array containing elements from a followed by b. diff --git a/doc/source/stdlib/detail/function-algorithm-combine-0xa40ab0508ccbd13e.rst b/doc/source/stdlib/detail/function-algorithm-combine-0xa40ab0508ccbd13e.rst deleted file mode 100644 index 88ac8a5699..0000000000 --- a/doc/source/stdlib/detail/function-algorithm-combine-0xa40ab0508ccbd13e.rst +++ /dev/null @@ -1 +0,0 @@ -Returns a new array containing elements from a followed by b. diff --git a/doc/source/stdlib/detail/function-algorithm-difference-0x4fcd58c2823b2448.rst b/doc/source/stdlib/detail/function-algorithm-difference-0x4fcd58c2823b2448.rst deleted file mode 100644 index 9e6699e2d8..0000000000 --- a/doc/source/stdlib/detail/function-algorithm-difference-0x4fcd58c2823b2448.rst +++ /dev/null @@ -1 +0,0 @@ -Returns the difference of two sets. diff --git a/doc/source/stdlib/detail/function-algorithm-equal_range-0x7cbc13175684102c.rst b/doc/source/stdlib/detail/function-algorithm-equal_range-0x7cbc13175684102c.rst deleted file mode 100644 index 4e7927a63f..0000000000 --- a/doc/source/stdlib/detail/function-algorithm-equal_range-0x7cbc13175684102c.rst +++ /dev/null @@ -1,2 +0,0 @@ -Returns a pair of indices [lower, upper) bounding the range of elements equal to val. -The array must be sorted. diff --git a/doc/source/stdlib/detail/function-algorithm-equal_range-0xc6df4aac5294d047.rst b/doc/source/stdlib/detail/function-algorithm-equal_range-0xc6df4aac5294d047.rst deleted file mode 100644 index 603540c695..0000000000 --- a/doc/source/stdlib/detail/function-algorithm-equal_range-0xc6df4aac5294d047.rst +++ /dev/null @@ -1,2 +0,0 @@ -Returns a pair of indices [lower, upper) bounding the range of elements equal to val within [f, l). -The array must be sorted. diff --git a/doc/source/stdlib/detail/function-algorithm-erase_all-0xfa3c729a53ecef76.rst b/doc/source/stdlib/detail/function-algorithm-erase_all-0xfa3c729a53ecef76.rst deleted file mode 100644 index d859f83500..0000000000 --- a/doc/source/stdlib/detail/function-algorithm-erase_all-0xfa3c729a53ecef76.rst +++ /dev/null @@ -1,3 +0,0 @@ -Erases all elements equal to value from arr in O(n) time. -Uses swap to support non-copyable types. Removed elements are swapped to the tail -and properly finalized by resize. diff --git a/doc/source/stdlib/detail/function-algorithm-fill-0x11ae312e19ebf6bb.rst b/doc/source/stdlib/detail/function-algorithm-fill-0x11ae312e19ebf6bb.rst deleted file mode 100644 index c94cb68b0c..0000000000 --- a/doc/source/stdlib/detail/function-algorithm-fill-0x11ae312e19ebf6bb.rst +++ /dev/null @@ -1 +0,0 @@ -Sets all elements of the array to the given value using clone. diff --git a/doc/source/stdlib/detail/function-algorithm-fill-0x144a2093ef8935ec.rst b/doc/source/stdlib/detail/function-algorithm-fill-0x144a2093ef8935ec.rst deleted file mode 100644 index c94cb68b0c..0000000000 --- a/doc/source/stdlib/detail/function-algorithm-fill-0x144a2093ef8935ec.rst +++ /dev/null @@ -1 +0,0 @@ -Sets all elements of the array to the given value using clone. diff --git a/doc/source/stdlib/detail/function-algorithm-identical-0xc790a26a6bc089fa.rst b/doc/source/stdlib/detail/function-algorithm-identical-0xc790a26a6bc089fa.rst deleted file mode 100644 index 7e15d43ee2..0000000000 --- a/doc/source/stdlib/detail/function-algorithm-identical-0xc790a26a6bc089fa.rst +++ /dev/null @@ -1 +0,0 @@ -Returns true if the two sets are identical. diff --git a/doc/source/stdlib/detail/function-algorithm-intersection-0xcdcb33c9f35fae52.rst b/doc/source/stdlib/detail/function-algorithm-intersection-0xcdcb33c9f35fae52.rst deleted file mode 100644 index 86aff3d427..0000000000 --- a/doc/source/stdlib/detail/function-algorithm-intersection-0xcdcb33c9f35fae52.rst +++ /dev/null @@ -1 +0,0 @@ -Returns the intersection of two sets. diff --git a/doc/source/stdlib/detail/function-algorithm-is_sorted-0x1b609885ecb869d6.rst b/doc/source/stdlib/detail/function-algorithm-is_sorted-0x1b609885ecb869d6.rst deleted file mode 100644 index 46cacd5c9d..0000000000 --- a/doc/source/stdlib/detail/function-algorithm-is_sorted-0x1b609885ecb869d6.rst +++ /dev/null @@ -1 +0,0 @@ -Returns true if the array is sorted in non-descending order. diff --git a/doc/source/stdlib/detail/function-algorithm-is_sorted-0x3b00ac5f3c749b8c.rst b/doc/source/stdlib/detail/function-algorithm-is_sorted-0x3b00ac5f3c749b8c.rst deleted file mode 100644 index d6687104ed..0000000000 --- a/doc/source/stdlib/detail/function-algorithm-is_sorted-0x3b00ac5f3c749b8c.rst +++ /dev/null @@ -1 +0,0 @@ -Returns true if the array is sorted according to the provided less function. diff --git a/doc/source/stdlib/detail/function-algorithm-is_sorted-0x8084e673a98ba716.rst b/doc/source/stdlib/detail/function-algorithm-is_sorted-0x8084e673a98ba716.rst deleted file mode 100644 index 46cacd5c9d..0000000000 --- a/doc/source/stdlib/detail/function-algorithm-is_sorted-0x8084e673a98ba716.rst +++ /dev/null @@ -1 +0,0 @@ -Returns true if the array is sorted in non-descending order. diff --git a/doc/source/stdlib/detail/function-algorithm-is_subset-0xfd350840c23abead.rst b/doc/source/stdlib/detail/function-algorithm-is_subset-0xfd350840c23abead.rst deleted file mode 100644 index 25d36084a8..0000000000 --- a/doc/source/stdlib/detail/function-algorithm-is_subset-0xfd350840c23abead.rst +++ /dev/null @@ -1 +0,0 @@ -Returns true if all elements of a are contained in b. diff --git a/doc/source/stdlib/detail/function-algorithm-lower_bound-0x1c9077e733599e3c.rst b/doc/source/stdlib/detail/function-algorithm-lower_bound-0x1c9077e733599e3c.rst deleted file mode 100644 index 0c8c24b56e..0000000000 --- a/doc/source/stdlib/detail/function-algorithm-lower_bound-0x1c9077e733599e3c.rst +++ /dev/null @@ -1 +0,0 @@ -Returns the index of the first element in the array for which less returns false, or length(a) if no such element is found. diff --git a/doc/source/stdlib/detail/function-algorithm-lower_bound-0x1cbae16136742bf7.rst b/doc/source/stdlib/detail/function-algorithm-lower_bound-0x1cbae16136742bf7.rst deleted file mode 100644 index 091a6ffe6b..0000000000 --- a/doc/source/stdlib/detail/function-algorithm-lower_bound-0x1cbae16136742bf7.rst +++ /dev/null @@ -1 +0,0 @@ -Returns the index of the first element in the range [f, l) for which less returns false, or l if no such element is found. diff --git a/doc/source/stdlib/detail/function-algorithm-lower_bound-0x65d7ba53126067c3.rst b/doc/source/stdlib/detail/function-algorithm-lower_bound-0x65d7ba53126067c3.rst deleted file mode 100644 index 091a6ffe6b..0000000000 --- a/doc/source/stdlib/detail/function-algorithm-lower_bound-0x65d7ba53126067c3.rst +++ /dev/null @@ -1 +0,0 @@ -Returns the index of the first element in the range [f, l) for which less returns false, or l if no such element is found. diff --git a/doc/source/stdlib/detail/function-algorithm-lower_bound-0x8cf240a3a8ad3c21.rst b/doc/source/stdlib/detail/function-algorithm-lower_bound-0x8cf240a3a8ad3c21.rst deleted file mode 100644 index 9a340a86dc..0000000000 --- a/doc/source/stdlib/detail/function-algorithm-lower_bound-0x8cf240a3a8ad3c21.rst +++ /dev/null @@ -1 +0,0 @@ -Returns the index of the first element in the array that is not less than val, or length(a) if no such element is found. diff --git a/doc/source/stdlib/detail/function-algorithm-lower_bound-0x9e462d5940438790.rst b/doc/source/stdlib/detail/function-algorithm-lower_bound-0x9e462d5940438790.rst deleted file mode 100644 index 83894dca44..0000000000 --- a/doc/source/stdlib/detail/function-algorithm-lower_bound-0x9e462d5940438790.rst +++ /dev/null @@ -1 +0,0 @@ -Returns the index of the first element in the range [f, l) that is not less than val, or l if no such element is found. diff --git a/doc/source/stdlib/detail/function-algorithm-lower_bound-0xb469fc2f44d14195.rst b/doc/source/stdlib/detail/function-algorithm-lower_bound-0xb469fc2f44d14195.rst deleted file mode 100644 index 9a340a86dc..0000000000 --- a/doc/source/stdlib/detail/function-algorithm-lower_bound-0xb469fc2f44d14195.rst +++ /dev/null @@ -1 +0,0 @@ -Returns the index of the first element in the array that is not less than val, or length(a) if no such element is found. diff --git a/doc/source/stdlib/detail/function-algorithm-lower_bound-0xc56e85976e59df7c.rst b/doc/source/stdlib/detail/function-algorithm-lower_bound-0xc56e85976e59df7c.rst deleted file mode 100644 index 0c8c24b56e..0000000000 --- a/doc/source/stdlib/detail/function-algorithm-lower_bound-0xc56e85976e59df7c.rst +++ /dev/null @@ -1 +0,0 @@ -Returns the index of the first element in the array for which less returns false, or length(a) if no such element is found. diff --git a/doc/source/stdlib/detail/function-algorithm-lower_bound-0xceed134e29704a8c.rst b/doc/source/stdlib/detail/function-algorithm-lower_bound-0xceed134e29704a8c.rst deleted file mode 100644 index 83894dca44..0000000000 --- a/doc/source/stdlib/detail/function-algorithm-lower_bound-0xceed134e29704a8c.rst +++ /dev/null @@ -1 +0,0 @@ -Returns the index of the first element in the range [f, l) that is not less than val, or l if no such element is found. diff --git a/doc/source/stdlib/detail/function-algorithm-max_element-0xa27849e7fc72e63.rst b/doc/source/stdlib/detail/function-algorithm-max_element-0xa27849e7fc72e63.rst deleted file mode 100644 index 626b220844..0000000000 --- a/doc/source/stdlib/detail/function-algorithm-max_element-0xa27849e7fc72e63.rst +++ /dev/null @@ -1 +0,0 @@ -Returns the index of the maximum element in the array, or -1 if the array is empty. diff --git a/doc/source/stdlib/detail/function-algorithm-max_element-0xc0989ef3a53f1b4b.rst b/doc/source/stdlib/detail/function-algorithm-max_element-0xc0989ef3a53f1b4b.rst deleted file mode 100644 index a6297dcfde..0000000000 --- a/doc/source/stdlib/detail/function-algorithm-max_element-0xc0989ef3a53f1b4b.rst +++ /dev/null @@ -1 +0,0 @@ -Returns the index of the maximum element according to the provided less function, or -1 if the array is empty. diff --git a/doc/source/stdlib/detail/function-algorithm-max_element-0xf754a1232d757e9d.rst b/doc/source/stdlib/detail/function-algorithm-max_element-0xf754a1232d757e9d.rst deleted file mode 100644 index 626b220844..0000000000 --- a/doc/source/stdlib/detail/function-algorithm-max_element-0xf754a1232d757e9d.rst +++ /dev/null @@ -1 +0,0 @@ -Returns the index of the maximum element in the array, or -1 if the array is empty. diff --git a/doc/source/stdlib/detail/function-algorithm-min_element-0x6760c745f2d39ff3.rst b/doc/source/stdlib/detail/function-algorithm-min_element-0x6760c745f2d39ff3.rst deleted file mode 100644 index 7b3e47211a..0000000000 --- a/doc/source/stdlib/detail/function-algorithm-min_element-0x6760c745f2d39ff3.rst +++ /dev/null @@ -1 +0,0 @@ -Returns the index of the minimum element in the array, or -1 if the array is empty. diff --git a/doc/source/stdlib/detail/function-algorithm-min_element-0x7a69a0aa5f473b9.rst b/doc/source/stdlib/detail/function-algorithm-min_element-0x7a69a0aa5f473b9.rst deleted file mode 100644 index 7b3e47211a..0000000000 --- a/doc/source/stdlib/detail/function-algorithm-min_element-0x7a69a0aa5f473b9.rst +++ /dev/null @@ -1 +0,0 @@ -Returns the index of the minimum element in the array, or -1 if the array is empty. diff --git a/doc/source/stdlib/detail/function-algorithm-min_element-0x7c11eaa2d37d7a41.rst b/doc/source/stdlib/detail/function-algorithm-min_element-0x7c11eaa2d37d7a41.rst deleted file mode 100644 index 720894aa08..0000000000 --- a/doc/source/stdlib/detail/function-algorithm-min_element-0x7c11eaa2d37d7a41.rst +++ /dev/null @@ -1 +0,0 @@ -Returns the index of the minimum element according to the provided less function, or -1 if the array is empty. diff --git a/doc/source/stdlib/detail/function-algorithm-reverse-0x31020a998ad920a0.rst b/doc/source/stdlib/detail/function-algorithm-reverse-0x31020a998ad920a0.rst deleted file mode 100644 index 1777446154..0000000000 --- a/doc/source/stdlib/detail/function-algorithm-reverse-0x31020a998ad920a0.rst +++ /dev/null @@ -1 +0,0 @@ -Reverses the elements of a in place. diff --git a/doc/source/stdlib/detail/function-algorithm-reverse-0xc81754f6565380cd.rst b/doc/source/stdlib/detail/function-algorithm-reverse-0xc81754f6565380cd.rst deleted file mode 100644 index b12ba9cbf2..0000000000 --- a/doc/source/stdlib/detail/function-algorithm-reverse-0xc81754f6565380cd.rst +++ /dev/null @@ -1 +0,0 @@ -Reverses the elements of array a in place. diff --git a/doc/source/stdlib/detail/function-algorithm-rotate-0x191c14d465ab23bc.rst b/doc/source/stdlib/detail/function-algorithm-rotate-0x191c14d465ab23bc.rst deleted file mode 100644 index 82738b43ce..0000000000 --- a/doc/source/stdlib/detail/function-algorithm-rotate-0x191c14d465ab23bc.rst +++ /dev/null @@ -1,2 +0,0 @@ -Rotates the array so that the element at index mid becomes the first element. -Elements before mid are moved to the end. diff --git a/doc/source/stdlib/detail/function-algorithm-rotate-0x5bb309eaab2e8c1.rst b/doc/source/stdlib/detail/function-algorithm-rotate-0x5bb309eaab2e8c1.rst deleted file mode 100644 index 2fa6c9724a..0000000000 --- a/doc/source/stdlib/detail/function-algorithm-rotate-0x5bb309eaab2e8c1.rst +++ /dev/null @@ -1 +0,0 @@ -Rotates the array so that the element at index mid becomes the first element. diff --git a/doc/source/stdlib/detail/function-algorithm-sort_unique-0x5f1ced8afedaf0ca.rst b/doc/source/stdlib/detail/function-algorithm-sort_unique-0x5f1ced8afedaf0ca.rst deleted file mode 100644 index abbdde2734..0000000000 --- a/doc/source/stdlib/detail/function-algorithm-sort_unique-0x5f1ced8afedaf0ca.rst +++ /dev/null @@ -1,3 +0,0 @@ -Returns an array of elements from a, sorted and with duplicates removed. -The elements are sorted in ascending order. -The resulting array has only unique elements. diff --git a/doc/source/stdlib/detail/function-algorithm-symmetric_difference-0x2e36f26dd7bba97e.rst b/doc/source/stdlib/detail/function-algorithm-symmetric_difference-0x2e36f26dd7bba97e.rst deleted file mode 100644 index 2c43342271..0000000000 --- a/doc/source/stdlib/detail/function-algorithm-symmetric_difference-0x2e36f26dd7bba97e.rst +++ /dev/null @@ -1 +0,0 @@ -Returns the symmetric difference of two sets (elements in either set but not both). diff --git a/doc/source/stdlib/detail/function-algorithm-topological_sort-0x63433293b7c772ab.rst b/doc/source/stdlib/detail/function-algorithm-topological_sort-0x63433293b7c772ab.rst deleted file mode 100644 index d2769a7930..0000000000 --- a/doc/source/stdlib/detail/function-algorithm-topological_sort-0x63433293b7c772ab.rst +++ /dev/null @@ -1,4 +0,0 @@ -Topological sort of a graph. -Each node has an id, and set (table with no values) of dependencies. -Dependency `before` represents a link from a node, which should appear in the sorted list before the node. -Returns a sorted list of nodes. diff --git a/doc/source/stdlib/detail/function-algorithm-union-0x54e0082561ed9839.rst b/doc/source/stdlib/detail/function-algorithm-union-0x54e0082561ed9839.rst deleted file mode 100644 index 1773361425..0000000000 --- a/doc/source/stdlib/detail/function-algorithm-union-0x54e0082561ed9839.rst +++ /dev/null @@ -1 +0,0 @@ -Returns the union of two sets. diff --git a/doc/source/stdlib/detail/function-algorithm-unique-0x229ae2c6ff8b197d.rst b/doc/source/stdlib/detail/function-algorithm-unique-0x229ae2c6ff8b197d.rst deleted file mode 100644 index 2abac3f113..0000000000 --- a/doc/source/stdlib/detail/function-algorithm-unique-0x229ae2c6ff8b197d.rst +++ /dev/null @@ -1,2 +0,0 @@ -Returns an array with adjacent duplicate elements removed. -The array should be sorted first if all duplicates need to be removed. diff --git a/doc/source/stdlib/detail/function-algorithm-upper_bound-0x397cdffad998f3e7.rst b/doc/source/stdlib/detail/function-algorithm-upper_bound-0x397cdffad998f3e7.rst deleted file mode 100644 index b55bd2c688..0000000000 --- a/doc/source/stdlib/detail/function-algorithm-upper_bound-0x397cdffad998f3e7.rst +++ /dev/null @@ -1 +0,0 @@ -Returns the index of the first element in the range [f, l) for which less(val, element) returns true, or l if no such element is found. diff --git a/doc/source/stdlib/detail/function-algorithm-upper_bound-0x41cd9dbc5cd1cfa9.rst b/doc/source/stdlib/detail/function-algorithm-upper_bound-0x41cd9dbc5cd1cfa9.rst deleted file mode 100644 index 9674a5174e..0000000000 --- a/doc/source/stdlib/detail/function-algorithm-upper_bound-0x41cd9dbc5cd1cfa9.rst +++ /dev/null @@ -1 +0,0 @@ -Returns the index of the first element in the array that is greater than val, or length(a) if no such element is found. diff --git a/doc/source/stdlib/detail/function-algorithm-upper_bound-0x6b244e81d1b39efb.rst b/doc/source/stdlib/detail/function-algorithm-upper_bound-0x6b244e81d1b39efb.rst deleted file mode 100644 index b55bd2c688..0000000000 --- a/doc/source/stdlib/detail/function-algorithm-upper_bound-0x6b244e81d1b39efb.rst +++ /dev/null @@ -1 +0,0 @@ -Returns the index of the first element in the range [f, l) for which less(val, element) returns true, or l if no such element is found. diff --git a/doc/source/stdlib/detail/function-algorithm-upper_bound-0x732c11eb6c8d9d18.rst b/doc/source/stdlib/detail/function-algorithm-upper_bound-0x732c11eb6c8d9d18.rst deleted file mode 100644 index 8230da0207..0000000000 --- a/doc/source/stdlib/detail/function-algorithm-upper_bound-0x732c11eb6c8d9d18.rst +++ /dev/null @@ -1 +0,0 @@ -Returns the index of the first element in the range [f, l) that is greater than val, or l if no such element is found. diff --git a/doc/source/stdlib/detail/function-algorithm-upper_bound-0xca5ae52a16f33a7d.rst b/doc/source/stdlib/detail/function-algorithm-upper_bound-0xca5ae52a16f33a7d.rst deleted file mode 100644 index 9674a5174e..0000000000 --- a/doc/source/stdlib/detail/function-algorithm-upper_bound-0xca5ae52a16f33a7d.rst +++ /dev/null @@ -1 +0,0 @@ -Returns the index of the first element in the array that is greater than val, or length(a) if no such element is found. diff --git a/doc/source/stdlib/detail/function-algorithm-upper_bound-0xd8341fdb69c5ee8.rst b/doc/source/stdlib/detail/function-algorithm-upper_bound-0xd8341fdb69c5ee8.rst deleted file mode 100644 index e015d94136..0000000000 --- a/doc/source/stdlib/detail/function-algorithm-upper_bound-0xd8341fdb69c5ee8.rst +++ /dev/null @@ -1 +0,0 @@ -Returns the index of the first element in the array for which less(val, element) returns true, or length(a) if no such element is found. diff --git a/doc/source/stdlib/detail/function-algorithm-upper_bound-0xe5b64e1b9a409ce8.rst b/doc/source/stdlib/detail/function-algorithm-upper_bound-0xe5b64e1b9a409ce8.rst deleted file mode 100644 index e015d94136..0000000000 --- a/doc/source/stdlib/detail/function-algorithm-upper_bound-0xe5b64e1b9a409ce8.rst +++ /dev/null @@ -1 +0,0 @@ -Returns the index of the first element in the array for which less(val, element) returns true, or length(a) if no such element is found. diff --git a/doc/source/stdlib/detail/function-algorithm-upper_bound-0xeb2e4be8378f5a64.rst b/doc/source/stdlib/detail/function-algorithm-upper_bound-0xeb2e4be8378f5a64.rst deleted file mode 100644 index 8230da0207..0000000000 --- a/doc/source/stdlib/detail/function-algorithm-upper_bound-0xeb2e4be8378f5a64.rst +++ /dev/null @@ -1 +0,0 @@ -Returns the index of the first element in the range [f, l) that is greater than val, or l if no such element is found. diff --git a/doc/source/stdlib/detail/function-ansi_colors-blue_str-0x423d9924a9a580e0.rst b/doc/source/stdlib/detail/function-ansi_colors-blue_str-0x423d9924a9a580e0.rst deleted file mode 100644 index 3e44cc10e3..0000000000 --- a/doc/source/stdlib/detail/function-ansi_colors-blue_str-0x423d9924a9a580e0.rst +++ /dev/null @@ -1 +0,0 @@ -Wraps `str` with ANSI blue (``\\x1B[34m``) if colors are enabled. diff --git a/doc/source/stdlib/detail/function-ansi_colors-bold_str-0x66972a99665bf6d5.rst b/doc/source/stdlib/detail/function-ansi_colors-bold_str-0x66972a99665bf6d5.rst deleted file mode 100644 index 6d2e65a6a2..0000000000 --- a/doc/source/stdlib/detail/function-ansi_colors-bold_str-0x66972a99665bf6d5.rst +++ /dev/null @@ -1 +0,0 @@ -Wraps `str` with ANSI bold (``\\x1B[1m``) if colors are enabled. diff --git a/doc/source/stdlib/detail/function-ansi_colors-cyan_str-0x8ccbbb7b561b0397.rst b/doc/source/stdlib/detail/function-ansi_colors-cyan_str-0x8ccbbb7b561b0397.rst deleted file mode 100644 index 05f57069c2..0000000000 --- a/doc/source/stdlib/detail/function-ansi_colors-cyan_str-0x8ccbbb7b561b0397.rst +++ /dev/null @@ -1 +0,0 @@ -Wraps `str` with ANSI cyan (``\\x1B[36m``) if colors are enabled. diff --git a/doc/source/stdlib/detail/function-ansi_colors-dim_str-0x3e5230ed783a4fc1.rst b/doc/source/stdlib/detail/function-ansi_colors-dim_str-0x3e5230ed783a4fc1.rst deleted file mode 100644 index 8ee16515b8..0000000000 --- a/doc/source/stdlib/detail/function-ansi_colors-dim_str-0x3e5230ed783a4fc1.rst +++ /dev/null @@ -1 +0,0 @@ -Wraps `str` with ANSI dim (``\\x1B[2m``) if colors are enabled. diff --git a/doc/source/stdlib/detail/function-ansi_colors-green_str-0x1343d399168d7eb8.rst b/doc/source/stdlib/detail/function-ansi_colors-green_str-0x1343d399168d7eb8.rst deleted file mode 100644 index d8770f60b7..0000000000 --- a/doc/source/stdlib/detail/function-ansi_colors-green_str-0x1343d399168d7eb8.rst +++ /dev/null @@ -1 +0,0 @@ -Wraps `str` with ANSI green (``\\x1B[32m``) if colors are enabled. diff --git a/doc/source/stdlib/detail/function-ansi_colors-init_ansi_colors-0x2f277e27af7d1ad4.rst b/doc/source/stdlib/detail/function-ansi_colors-init_ansi_colors-0x2f277e27af7d1ad4.rst deleted file mode 100644 index 559fa5c735..0000000000 --- a/doc/source/stdlib/detail/function-ansi_colors-init_ansi_colors-0x2f277e27af7d1ad4.rst +++ /dev/null @@ -1,2 +0,0 @@ -Auto-detect color support from command-line arguments. -Equivalent to ``init_ansi_colors(get_command_line_arguments())``. diff --git a/doc/source/stdlib/detail/function-ansi_colors-init_ansi_colors-0xa85ff5a452b6b7c3.rst b/doc/source/stdlib/detail/function-ansi_colors-init_ansi_colors-0xa85ff5a452b6b7c3.rst deleted file mode 100644 index 3b073ac7fa..0000000000 --- a/doc/source/stdlib/detail/function-ansi_colors-init_ansi_colors-0xa85ff5a452b6b7c3.rst +++ /dev/null @@ -1,2 +0,0 @@ -Detect color support from `args`, ``TERM``, and ``NO_COLOR`` environment variables. -Sets ``use_tty_colors`` accordingly. Respects ``--color``, ``--no-color``, and ``NO_COLOR``. diff --git a/doc/source/stdlib/detail/function-ansi_colors-magenta_str-0xd1caae1edb54a857.rst b/doc/source/stdlib/detail/function-ansi_colors-magenta_str-0xd1caae1edb54a857.rst deleted file mode 100644 index e16b41f7eb..0000000000 --- a/doc/source/stdlib/detail/function-ansi_colors-magenta_str-0xd1caae1edb54a857.rst +++ /dev/null @@ -1 +0,0 @@ -Wraps `str` with ANSI magenta (``\\x1B[35m``) if colors are enabled. diff --git a/doc/source/stdlib/detail/function-ansi_colors-red_str-0x47979df14ac032fe.rst b/doc/source/stdlib/detail/function-ansi_colors-red_str-0x47979df14ac032fe.rst deleted file mode 100644 index f07e8200d7..0000000000 --- a/doc/source/stdlib/detail/function-ansi_colors-red_str-0x47979df14ac032fe.rst +++ /dev/null @@ -1 +0,0 @@ -Wraps `str` with ANSI red (``\\x1B[31m``) if colors are enabled. diff --git a/doc/source/stdlib/detail/function-ansi_colors-reset_str-0xebc033919fe44d3.rst b/doc/source/stdlib/detail/function-ansi_colors-reset_str-0xebc033919fe44d3.rst deleted file mode 100644 index aca417e3d4..0000000000 --- a/doc/source/stdlib/detail/function-ansi_colors-reset_str-0xebc033919fe44d3.rst +++ /dev/null @@ -1 +0,0 @@ -Returns the ANSI reset sequence if colors are enabled, empty string otherwise. diff --git a/doc/source/stdlib/detail/function-ansi_colors-underline_str-0x22f5115ea985a90b.rst b/doc/source/stdlib/detail/function-ansi_colors-underline_str-0x22f5115ea985a90b.rst deleted file mode 100644 index 36b0ea2680..0000000000 --- a/doc/source/stdlib/detail/function-ansi_colors-underline_str-0x22f5115ea985a90b.rst +++ /dev/null @@ -1 +0,0 @@ -Wraps `str` with ANSI underline (``\\x1B[4m``) if colors are enabled. diff --git a/doc/source/stdlib/detail/function-ansi_colors-yellow_str-0xc53030371a2c93f3.rst b/doc/source/stdlib/detail/function-ansi_colors-yellow_str-0xc53030371a2c93f3.rst deleted file mode 100644 index 236fcc3a1d..0000000000 --- a/doc/source/stdlib/detail/function-ansi_colors-yellow_str-0xc53030371a2c93f3.rst +++ /dev/null @@ -1 +0,0 @@ -Wraps `str` with ANSI yellow (``\\x1B[33m``) if colors are enabled. diff --git a/doc/source/stdlib/detail/function-archive-MemSerializer-MemSerializer-0xe5381da5d7f52677.rst b/doc/source/stdlib/detail/function-archive-MemSerializer-MemSerializer-0xe5381da5d7f52677.rst deleted file mode 100644 index d2889fa415..0000000000 --- a/doc/source/stdlib/detail/function-archive-MemSerializer-MemSerializer-0xe5381da5d7f52677.rst +++ /dev/null @@ -1 +0,0 @@ -Initialize the serializer for reading from the given data. diff --git a/doc/source/stdlib/detail/function-archive-MemSerializer-MemSerializer-0xfa24472c9ad49913.rst b/doc/source/stdlib/detail/function-archive-MemSerializer-MemSerializer-0xfa24472c9ad49913.rst deleted file mode 100644 index 031f81b1ef..0000000000 --- a/doc/source/stdlib/detail/function-archive-MemSerializer-MemSerializer-0xfa24472c9ad49913.rst +++ /dev/null @@ -1 +0,0 @@ -Initialize the serializer for reading or writing. diff --git a/doc/source/stdlib/detail/function-archive-MemSerializer-OK-0xafa9024c86776c1e.rst b/doc/source/stdlib/detail/function-archive-MemSerializer-OK-0xafa9024c86776c1e.rst deleted file mode 100644 index dfa0ad72b9..0000000000 --- a/doc/source/stdlib/detail/function-archive-MemSerializer-OK-0xafa9024c86776c1e.rst +++ /dev/null @@ -1 +0,0 @@ -Implements 'OK' method, which returns true if the serializer is in a valid state. diff --git a/doc/source/stdlib/detail/function-archive-MemSerializer-error-0xd1468cf36036a37c.rst b/doc/source/stdlib/detail/function-archive-MemSerializer-error-0xd1468cf36036a37c.rst deleted file mode 100644 index 07864cae9e..0000000000 --- a/doc/source/stdlib/detail/function-archive-MemSerializer-error-0xd1468cf36036a37c.rst +++ /dev/null @@ -1 +0,0 @@ -Sets the last error code. diff --git a/doc/source/stdlib/detail/function-archive-MemSerializer-extractData-0xb7211ad788830dbb.rst b/doc/source/stdlib/detail/function-archive-MemSerializer-extractData-0xb7211ad788830dbb.rst deleted file mode 100644 index 18332ef989..0000000000 --- a/doc/source/stdlib/detail/function-archive-MemSerializer-extractData-0xb7211ad788830dbb.rst +++ /dev/null @@ -1 +0,0 @@ -Extract the data from the serializer. diff --git a/doc/source/stdlib/detail/function-archive-MemSerializer-getCopyOfData-0xffe74ed3ca2223d6.rst b/doc/source/stdlib/detail/function-archive-MemSerializer-getCopyOfData-0xffe74ed3ca2223d6.rst deleted file mode 100644 index 7f87cff3f5..0000000000 --- a/doc/source/stdlib/detail/function-archive-MemSerializer-getCopyOfData-0xffe74ed3ca2223d6.rst +++ /dev/null @@ -1 +0,0 @@ -Returns copy of the data from the serializer. diff --git a/doc/source/stdlib/detail/function-archive-MemSerializer-getLastError-0x343bef81ab0fcd14.rst b/doc/source/stdlib/detail/function-archive-MemSerializer-getLastError-0x343bef81ab0fcd14.rst deleted file mode 100644 index 3717436d47..0000000000 --- a/doc/source/stdlib/detail/function-archive-MemSerializer-getLastError-0x343bef81ab0fcd14.rst +++ /dev/null @@ -1 +0,0 @@ -Returns last serialization error. diff --git a/doc/source/stdlib/detail/function-archive-MemSerializer-read-0xe757744cbc1dc4f0.rst b/doc/source/stdlib/detail/function-archive-MemSerializer-read-0xe757744cbc1dc4f0.rst deleted file mode 100644 index 6f9cd1b3ef..0000000000 --- a/doc/source/stdlib/detail/function-archive-MemSerializer-read-0xe757744cbc1dc4f0.rst +++ /dev/null @@ -1 +0,0 @@ -Reads bytes from data, advances the reading position. diff --git a/doc/source/stdlib/detail/function-archive-MemSerializer-write-0x45e36885121bef5e.rst b/doc/source/stdlib/detail/function-archive-MemSerializer-write-0x45e36885121bef5e.rst deleted file mode 100644 index d13703ddd2..0000000000 --- a/doc/source/stdlib/detail/function-archive-MemSerializer-write-0x45e36885121bef5e.rst +++ /dev/null @@ -1 +0,0 @@ -Appends bytes at the end of the data. diff --git a/doc/source/stdlib/detail/function-archive-Serializer-OK-0xafa9024c86776c1e.rst b/doc/source/stdlib/detail/function-archive-Serializer-OK-0xafa9024c86776c1e.rst deleted file mode 100644 index a6093a3b0e..0000000000 --- a/doc/source/stdlib/detail/function-archive-Serializer-OK-0xafa9024c86776c1e.rst +++ /dev/null @@ -1 +0,0 @@ -Return status of the archive diff --git a/doc/source/stdlib/detail/function-archive-Serializer-error-0xd1468cf36036a37c.rst b/doc/source/stdlib/detail/function-archive-Serializer-error-0xd1468cf36036a37c.rst deleted file mode 100644 index 3fa2b32ac7..0000000000 --- a/doc/source/stdlib/detail/function-archive-Serializer-error-0xd1468cf36036a37c.rst +++ /dev/null @@ -1 +0,0 @@ -Report error to the archive diff --git a/doc/source/stdlib/detail/function-archive-Serializer-read-0xe757744cbc1dc4f0.rst b/doc/source/stdlib/detail/function-archive-Serializer-read-0xe757744cbc1dc4f0.rst deleted file mode 100644 index 8eecbe0069..0000000000 --- a/doc/source/stdlib/detail/function-archive-Serializer-read-0xe757744cbc1dc4f0.rst +++ /dev/null @@ -1 +0,0 @@ -Read binary data from stream. diff --git a/doc/source/stdlib/detail/function-archive-Serializer-write-0x45e36885121bef5e.rst b/doc/source/stdlib/detail/function-archive-Serializer-write-0x45e36885121bef5e.rst deleted file mode 100644 index bfcd0c2fd3..0000000000 --- a/doc/source/stdlib/detail/function-archive-Serializer-write-0x45e36885121bef5e.rst +++ /dev/null @@ -1 +0,0 @@ -Write binary data to stream. diff --git a/doc/source/stdlib/detail/function-archive-mem_archive_load-0x870ccaa3a93fa521.rst b/doc/source/stdlib/detail/function-archive-mem_archive_load-0x870ccaa3a93fa521.rst deleted file mode 100644 index d9780055dc..0000000000 --- a/doc/source/stdlib/detail/function-archive-mem_archive_load-0x870ccaa3a93fa521.rst +++ /dev/null @@ -1 +0,0 @@ -Loads the object from a memory archive. `data` is the array with the serialized data, returned from `mem_archive_save`. diff --git a/doc/source/stdlib/detail/function-archive-mem_archive_save-0xed7be5aaa0b24ff1.rst b/doc/source/stdlib/detail/function-archive-mem_archive_save-0xed7be5aaa0b24ff1.rst deleted file mode 100644 index 013e6315b7..0000000000 --- a/doc/source/stdlib/detail/function-archive-mem_archive_save-0xed7be5aaa0b24ff1.rst +++ /dev/null @@ -1 +0,0 @@ -Saves the object to a memory archive. Result is array with the serialized data. diff --git a/doc/source/stdlib/detail/function-archive-read_raw-0x74121d1797494e08.rst b/doc/source/stdlib/detail/function-archive-read_raw-0x74121d1797494e08.rst deleted file mode 100644 index 4f039cec5c..0000000000 --- a/doc/source/stdlib/detail/function-archive-read_raw-0x74121d1797494e08.rst +++ /dev/null @@ -1 +0,0 @@ -Read raw data (straight up bytes for raw pod) diff --git a/doc/source/stdlib/detail/function-archive-serialize-0x1064f15a69990e2d.rst b/doc/source/stdlib/detail/function-archive-serialize-0x1064f15a69990e2d.rst deleted file mode 100644 index cd8e7a0a62..0000000000 --- a/doc/source/stdlib/detail/function-archive-serialize-0x1064f15a69990e2d.rst +++ /dev/null @@ -1 +0,0 @@ -Serializes string by serializing its length and characters. diff --git a/doc/source/stdlib/detail/function-archive-serialize-0x36bc5c6c5b9ab5d7.rst b/doc/source/stdlib/detail/function-archive-serialize-0x36bc5c6c5b9ab5d7.rst deleted file mode 100644 index d43dcdfddf..0000000000 --- a/doc/source/stdlib/detail/function-archive-serialize-0x36bc5c6c5b9ab5d7.rst +++ /dev/null @@ -1 +0,0 @@ -Serializes float3x3 matrix diff --git a/doc/source/stdlib/detail/function-archive-serialize-0x36c15c6c5ba334d7.rst b/doc/source/stdlib/detail/function-archive-serialize-0x36c15c6c5ba334d7.rst deleted file mode 100644 index 1fc5140f7d..0000000000 --- a/doc/source/stdlib/detail/function-archive-serialize-0x36c15c6c5ba334d7.rst +++ /dev/null @@ -1 +0,0 @@ -Serializes float3x4 matrix diff --git a/doc/source/stdlib/detail/function-archive-serialize-0x4ec35c6c70387bd7.rst b/doc/source/stdlib/detail/function-archive-serialize-0x4ec35c6c70387bd7.rst deleted file mode 100644 index 665bdc9d3f..0000000000 --- a/doc/source/stdlib/detail/function-archive-serialize-0x4ec35c6c70387bd7.rst +++ /dev/null @@ -1 +0,0 @@ -Serializes float4x4 matrix diff --git a/doc/source/stdlib/detail/function-archive-serialize-0x6bda914b651b2d2f.rst b/doc/source/stdlib/detail/function-archive-serialize-0x6bda914b651b2d2f.rst deleted file mode 100644 index ef15f9e772..0000000000 --- a/doc/source/stdlib/detail/function-archive-serialize-0x6bda914b651b2d2f.rst +++ /dev/null @@ -1 +0,0 @@ -Serializes array by serializing its length and each element. diff --git a/doc/source/stdlib/detail/function-archive-serialize-0xa62df472ba362ee1.rst b/doc/source/stdlib/detail/function-archive-serialize-0xa62df472ba362ee1.rst deleted file mode 100644 index 032d8ae642..0000000000 --- a/doc/source/stdlib/detail/function-archive-serialize-0xa62df472ba362ee1.rst +++ /dev/null @@ -1 +0,0 @@ -Serializes table by serializing its length and each key-value pair. diff --git a/doc/source/stdlib/detail/function-archive-serialize-0xc207d3853d0e411e.rst b/doc/source/stdlib/detail/function-archive-serialize-0xc207d3853d0e411e.rst deleted file mode 100644 index 1c5dc8bd0b..0000000000 --- a/doc/source/stdlib/detail/function-archive-serialize-0xc207d3853d0e411e.rst +++ /dev/null @@ -1 +0,0 @@ -Serializes nullable type by serializing a flag and the value if present. diff --git a/doc/source/stdlib/detail/function-archive-serialize-0xc207dc853d0e5069.rst b/doc/source/stdlib/detail/function-archive-serialize-0xc207dc853d0e5069.rst deleted file mode 100644 index ceb0968baa..0000000000 --- a/doc/source/stdlib/detail/function-archive-serialize-0xc207dc853d0e5069.rst +++ /dev/null @@ -1 +0,0 @@ -Serializes variant by serializing the index and the active field. diff --git a/doc/source/stdlib/detail/function-archive-serialize-0xc22a77853d491dca.rst b/doc/source/stdlib/detail/function-archive-serialize-0xc22a77853d491dca.rst deleted file mode 100644 index ef15f9e772..0000000000 --- a/doc/source/stdlib/detail/function-archive-serialize-0xc22a77853d491dca.rst +++ /dev/null @@ -1 +0,0 @@ -Serializes array by serializing its length and each element. diff --git a/doc/source/stdlib/detail/function-archive-serialize_raw-0x854552c4872591ea.rst b/doc/source/stdlib/detail/function-archive-serialize_raw-0x854552c4872591ea.rst deleted file mode 100644 index 4e02af337f..0000000000 --- a/doc/source/stdlib/detail/function-archive-serialize_raw-0x854552c4872591ea.rst +++ /dev/null @@ -1 +0,0 @@ -Serialize raw data (straight up bytes for raw pod) diff --git a/doc/source/stdlib/detail/function-archive-write_raw-0xa203266664a7683f.rst b/doc/source/stdlib/detail/function-archive-write_raw-0xa203266664a7683f.rst deleted file mode 100644 index 42f61efc04..0000000000 --- a/doc/source/stdlib/detail/function-archive-write_raw-0xa203266664a7683f.rst +++ /dev/null @@ -1 +0,0 @@ -Write raw data (straight up bytes for raw pod) diff --git a/doc/source/stdlib/detail/function-array_boost-array_helper-0xa7c7e3fb09d0b268.rst b/doc/source/stdlib/detail/function-array_boost-array_helper-0xa7c7e3fb09d0b268.rst deleted file mode 100644 index 6e7709fef0..0000000000 --- a/doc/source/stdlib/detail/function-array_boost-array_helper-0xa7c7e3fb09d0b268.rst +++ /dev/null @@ -1 +0,0 @@ -helper for temp_array with const argument diff --git a/doc/source/stdlib/detail/function-array_boost-array_helper-0xbd677633d308c604.rst b/doc/source/stdlib/detail/function-array_boost-array_helper-0xbd677633d308c604.rst deleted file mode 100644 index 5c21fa25e3..0000000000 --- a/doc/source/stdlib/detail/function-array_boost-array_helper-0xbd677633d308c604.rst +++ /dev/null @@ -1 +0,0 @@ -helper for temp_array with var argument diff --git a/doc/source/stdlib/detail/function-array_boost-array_view-0x1fa0ef353a04b9bd.rst b/doc/source/stdlib/detail/function-array_boost-array_view-0x1fa0ef353a04b9bd.rst deleted file mode 100644 index 525430fd55..0000000000 --- a/doc/source/stdlib/detail/function-array_boost-array_view-0x1fa0ef353a04b9bd.rst +++ /dev/null @@ -1 +0,0 @@ -creates a view of the array, which is a temporary array that is valid only within the block diff --git a/doc/source/stdlib/detail/function-array_boost-array_view-0x237e11b59d4d9eb1.rst b/doc/source/stdlib/detail/function-array_boost-array_view-0x237e11b59d4d9eb1.rst deleted file mode 100644 index 525430fd55..0000000000 --- a/doc/source/stdlib/detail/function-array_boost-array_view-0x237e11b59d4d9eb1.rst +++ /dev/null @@ -1 +0,0 @@ -creates a view of the array, which is a temporary array that is valid only within the block diff --git a/doc/source/stdlib/detail/function-array_boost-empty-0x1e8f8dccbc9d1273.rst b/doc/source/stdlib/detail/function-array_boost-empty-0x1e8f8dccbc9d1273.rst deleted file mode 100644 index 551c131cd3..0000000000 --- a/doc/source/stdlib/detail/function-array_boost-empty-0x1e8f8dccbc9d1273.rst +++ /dev/null @@ -1 +0,0 @@ -returns true if 'v' has 0 elements. this also implies that `length(v)` is defined. diff --git a/doc/source/stdlib/detail/function-array_boost-temp_array-0x13facae9301ce1a9.rst b/doc/source/stdlib/detail/function-array_boost-temp_array-0x13facae9301ce1a9.rst deleted file mode 100644 index 068b0935d4..0000000000 --- a/doc/source/stdlib/detail/function-array_boost-temp_array-0x13facae9301ce1a9.rst +++ /dev/null @@ -1,6 +0,0 @@ -creates a temporary array from the given data pointer and length -Important requirements are: - - * data pointer is valid and points to a memory block of at least lenA elements - * each element follows the next one directly, with the stride equal to size of the element - * data memory does not change within the lifetime of the returned array diff --git a/doc/source/stdlib/detail/function-array_boost-temp_array-0x1c889c53e2841a71.rst b/doc/source/stdlib/detail/function-array_boost-temp_array-0x1c889c53e2841a71.rst deleted file mode 100644 index 2269e83b9b..0000000000 --- a/doc/source/stdlib/detail/function-array_boost-temp_array-0x1c889c53e2841a71.rst +++ /dev/null @@ -1,6 +0,0 @@ -Creates temporary array from the given object. -Important requirements are: - - * object memory is linear - * each element follows the next one directly, with the stride equal to size of the element - * object memory does not change within the lifetime of the returned array diff --git a/doc/source/stdlib/detail/function-array_boost-temp_array-0xf0cc4ff83b0f1369.rst b/doc/source/stdlib/detail/function-array_boost-temp_array-0xf0cc4ff83b0f1369.rst deleted file mode 100644 index 2269e83b9b..0000000000 --- a/doc/source/stdlib/detail/function-array_boost-temp_array-0xf0cc4ff83b0f1369.rst +++ /dev/null @@ -1,6 +0,0 @@ -Creates temporary array from the given object. -Important requirements are: - - * object memory is linear - * each element follows the next one directly, with the stride equal to size of the element - * object memory does not change within the lifetime of the returned array diff --git a/doc/source/stdlib/detail/function-array_boost-temp_array-0xf367cd2b42cc8761.rst b/doc/source/stdlib/detail/function-array_boost-temp_array-0xf367cd2b42cc8761.rst deleted file mode 100644 index 068b0935d4..0000000000 --- a/doc/source/stdlib/detail/function-array_boost-temp_array-0xf367cd2b42cc8761.rst +++ /dev/null @@ -1,6 +0,0 @@ -creates a temporary array from the given data pointer and length -Important requirements are: - - * data pointer is valid and points to a memory block of at least lenA elements - * each element follows the next one directly, with the stride equal to size of the element - * data memory does not change within the lifetime of the returned array diff --git a/doc/source/stdlib/detail/function-assert_once-assert_once-0xad029a22652423bc.rst b/doc/source/stdlib/detail/function-assert_once-assert_once-0xad029a22652423bc.rst deleted file mode 100644 index 1c0061012d..0000000000 --- a/doc/source/stdlib/detail/function-assert_once-assert_once-0xad029a22652423bc.rst +++ /dev/null @@ -1 +0,0 @@ -Same as assert, only the check will be not be repeated after the assertion failed the first time. diff --git a/doc/source/stdlib/detail/function-ast_block_to_loop-convert_block_to_loop-0xc5100af282dcd8cf.rst b/doc/source/stdlib/detail/function-ast_block_to_loop-convert_block_to_loop-0xc5100af282dcd8cf.rst deleted file mode 100644 index 7bea9a2304..0000000000 --- a/doc/source/stdlib/detail/function-ast_block_to_loop-convert_block_to_loop-0xc5100af282dcd8cf.rst +++ /dev/null @@ -1,4 +0,0 @@ -Converts closure block to loop. -If `failOnReturn` is true, then returns are not allowed inside the block. -If `replaceReturnWithContinue` is true, then `return cond;` are replaced with `if cond; continue;`. -If `requireContinueCond` is false, then `return;` is replaced with `continue;`, otherwise it is an error. diff --git a/doc/source/stdlib/detail/function-ast_used-collect_used_types-0xa577ee41c1b90a0d.rst b/doc/source/stdlib/detail/function-ast_used-collect_used_types-0xa577ee41c1b90a0d.rst deleted file mode 100644 index 6335ab40a3..0000000000 --- a/doc/source/stdlib/detail/function-ast_used-collect_used_types-0xa577ee41c1b90a0d.rst +++ /dev/null @@ -1,2 +0,0 @@ -Goes through list of functions `vfun` and variables `vvar` and collects list of which enumeration and structure types are used in them. -Calls `blk` with said list. diff --git a/doc/source/stdlib/detail/function-async_boost-async_race-0x576e990c9a340053.rst b/doc/source/stdlib/detail/function-async_boost-async_race-0x576e990c9a340053.rst deleted file mode 100644 index 0d1eb4980e..0000000000 --- a/doc/source/stdlib/detail/function-async_boost-async_race-0x576e990c9a340053.rst +++ /dev/null @@ -1,2 +0,0 @@ -This function runs two async functions concurrently and returns the -index (0 or 1) of whichever finishes first. The other is abandoned. diff --git a/doc/source/stdlib/detail/function-async_boost-async_run-0x1f28abf50c902e0a.rst b/doc/source/stdlib/detail/function-async_boost-async_run-0x1f28abf50c902e0a.rst deleted file mode 100644 index 181f0db616..0000000000 --- a/doc/source/stdlib/detail/function-async_boost-async_run-0x1f28abf50c902e0a.rst +++ /dev/null @@ -1 +0,0 @@ -This function runs async function until it is finished. diff --git a/doc/source/stdlib/detail/function-async_boost-async_run_all-0xbeb1774bf1d1a308.rst b/doc/source/stdlib/detail/function-async_boost-async_run_all-0xbeb1774bf1d1a308.rst deleted file mode 100644 index 375f3ded83..0000000000 --- a/doc/source/stdlib/detail/function-async_boost-async_run_all-0xbeb1774bf1d1a308.rst +++ /dev/null @@ -1 +0,0 @@ -This function runs all async function until they are finished (in parallel, starting from the last one). diff --git a/doc/source/stdlib/detail/function-async_boost-async_timeout-0x90c6a8e18a67722c.rst b/doc/source/stdlib/detail/function-async_boost-async_timeout-0x90c6a8e18a67722c.rst deleted file mode 100644 index 2a95f34559..0000000000 --- a/doc/source/stdlib/detail/function-async_boost-async_timeout-0x90c6a8e18a67722c.rst +++ /dev/null @@ -1,3 +0,0 @@ -This function runs an async function for at most `max_frames` frames. -Returns ``true`` if the async function completed within the limit, -``false`` if it was terminated due to timeout. diff --git a/doc/source/stdlib/detail/function-async_boost-await-0x41404ee56cdd68bf.rst b/doc/source/stdlib/detail/function-async_boost-await-0x41404ee56cdd68bf.rst deleted file mode 100644 index 1dc43b16da..0000000000 --- a/doc/source/stdlib/detail/function-async_boost-await-0x41404ee56cdd68bf.rst +++ /dev/null @@ -1 +0,0 @@ -This function is used to wait for the result of the async function. diff --git a/doc/source/stdlib/detail/function-async_boost-await-0xa121fd3b8cab9231.rst b/doc/source/stdlib/detail/function-async_boost-await-0xa121fd3b8cab9231.rst deleted file mode 100644 index 1dc43b16da..0000000000 --- a/doc/source/stdlib/detail/function-async_boost-await-0xa121fd3b8cab9231.rst +++ /dev/null @@ -1 +0,0 @@ -This function is used to wait for the result of the async function. diff --git a/doc/source/stdlib/detail/function-async_boost-await_next_frame-0xa8e8499e939699a9.rst b/doc/source/stdlib/detail/function-async_boost-await_next_frame-0xa8e8499e939699a9.rst deleted file mode 100644 index 1f2660ffb5..0000000000 --- a/doc/source/stdlib/detail/function-async_boost-await_next_frame-0xa8e8499e939699a9.rst +++ /dev/null @@ -1 +0,0 @@ -This function is used to suspend coroutine until next frame. diff --git a/doc/source/stdlib/detail/function-base64-BASE64_DECODE_OUT_SIZE-0xa95e4446c74fb13f.rst b/doc/source/stdlib/detail/function-base64-BASE64_DECODE_OUT_SIZE-0xa95e4446c74fb13f.rst deleted file mode 100644 index bfcc8b7bca..0000000000 --- a/doc/source/stdlib/detail/function-base64-BASE64_DECODE_OUT_SIZE-0xa95e4446c74fb13f.rst +++ /dev/null @@ -1 +0,0 @@ -Returns the maximum decoded output size for a Base64 string of length `s`. diff --git a/doc/source/stdlib/detail/function-base64-BASE64_ENCODE_OUT_SIZE-0xb15c9177fb2e8b0e.rst b/doc/source/stdlib/detail/function-base64-BASE64_ENCODE_OUT_SIZE-0xb15c9177fb2e8b0e.rst deleted file mode 100644 index 3926770b37..0000000000 --- a/doc/source/stdlib/detail/function-base64-BASE64_ENCODE_OUT_SIZE-0xb15c9177fb2e8b0e.rst +++ /dev/null @@ -1 +0,0 @@ -Returns the encoded output size for binary data of length `s`. diff --git a/doc/source/stdlib/detail/function-base64-base64_decode-0x17cd693dfb72d469.rst b/doc/source/stdlib/detail/function-base64-base64_decode-0x17cd693dfb72d469.rst deleted file mode 100644 index 43ece46651..0000000000 --- a/doc/source/stdlib/detail/function-base64-base64_decode-0x17cd693dfb72d469.rst +++ /dev/null @@ -1 +0,0 @@ -Decodes a Base64-encoded string into the provided byte array. Returns the decoded byte count, or -1 on error. diff --git a/doc/source/stdlib/detail/function-base64-base64_decode-0xd394543a22900f9c.rst b/doc/source/stdlib/detail/function-base64-base64_decode-0xd394543a22900f9c.rst deleted file mode 100644 index d128062a5e..0000000000 --- a/doc/source/stdlib/detail/function-base64-base64_decode-0xd394543a22900f9c.rst +++ /dev/null @@ -1 +0,0 @@ -Decodes a Base64-encoded string. Returns a tuple of the decoded text and its byte length. diff --git a/doc/source/stdlib/detail/function-base64-base64_encode-0x1cc4c24bf6dfd89f.rst b/doc/source/stdlib/detail/function-base64-base64_encode-0x1cc4c24bf6dfd89f.rst deleted file mode 100644 index 47c91d08d5..0000000000 --- a/doc/source/stdlib/detail/function-base64-base64_encode-0x1cc4c24bf6dfd89f.rst +++ /dev/null @@ -1 +0,0 @@ -Encodes a string to its Base64 text representation. diff --git a/doc/source/stdlib/detail/function-base64-base64_encode-0x5145b2ead5d4d1eb.rst b/doc/source/stdlib/detail/function-base64-base64_encode-0x5145b2ead5d4d1eb.rst deleted file mode 100644 index 8b250607ac..0000000000 --- a/doc/source/stdlib/detail/function-base64-base64_encode-0x5145b2ead5d4d1eb.rst +++ /dev/null @@ -1 +0,0 @@ -Encodes a byte array to its Base64 text representation. diff --git a/doc/source/stdlib/detail/function-bitfield_boost-_lb__rb_-0xb0aed0f8b65fa052.rst b/doc/source/stdlib/detail/function-bitfield_boost-_lb__rb_-0xb0aed0f8b65fa052.rst deleted file mode 100644 index 6691e9d521..0000000000 --- a/doc/source/stdlib/detail/function-bitfield_boost-_lb__rb_-0xb0aed0f8b65fa052.rst +++ /dev/null @@ -1 +0,0 @@ -get bitfield bit at index i diff --git a/doc/source/stdlib/detail/function-bitfield_boost-_lb__rb_^^_eq_-0x80cb8467310bd903.rst b/doc/source/stdlib/detail/function-bitfield_boost-_lb__rb_^^_eq_-0x80cb8467310bd903.rst deleted file mode 100644 index 19a38f68b7..0000000000 --- a/doc/source/stdlib/detail/function-bitfield_boost-_lb__rb_^^_eq_-0x80cb8467310bd903.rst +++ /dev/null @@ -1 +0,0 @@ -toggle bitfield bit at index i if v is true diff --git a/doc/source/stdlib/detail/function-bitfield_boost-_lb__rb__eq_-0x1450f57bcb7b7f6d.rst b/doc/source/stdlib/detail/function-bitfield_boost-_lb__rb__eq_-0x1450f57bcb7b7f6d.rst deleted file mode 100644 index d03ef03a86..0000000000 --- a/doc/source/stdlib/detail/function-bitfield_boost-_lb__rb__eq_-0x1450f57bcb7b7f6d.rst +++ /dev/null @@ -1 +0,0 @@ -|| assignment for bitfield bit at index i diff --git a/doc/source/stdlib/detail/function-bitfield_boost-_lb__rb__eq_-0x37d74dafddd8eb45.rst b/doc/source/stdlib/detail/function-bitfield_boost-_lb__rb__eq_-0x37d74dafddd8eb45.rst deleted file mode 100644 index 89ed44722d..0000000000 --- a/doc/source/stdlib/detail/function-bitfield_boost-_lb__rb__eq_-0x37d74dafddd8eb45.rst +++ /dev/null @@ -1 +0,0 @@ -set bitfield bit at index i to v diff --git a/doc/source/stdlib/detail/function-bitfield_boost-_lb__rb__ref__ref__eq_-0x45a24ae02824dc5b.rst b/doc/source/stdlib/detail/function-bitfield_boost-_lb__rb__ref__ref__eq_-0x45a24ae02824dc5b.rst deleted file mode 100644 index 7fa1a0f31e..0000000000 --- a/doc/source/stdlib/detail/function-bitfield_boost-_lb__rb__ref__ref__eq_-0x45a24ae02824dc5b.rst +++ /dev/null @@ -1 +0,0 @@ -&& assignment for bitfield bit at index i diff --git a/doc/source/stdlib/detail/function-bitfield_boost-each_bit-0x8605cb2b6f85b4bc.rst b/doc/source/stdlib/detail/function-bitfield_boost-each_bit-0x8605cb2b6f85b4bc.rst deleted file mode 100644 index 9b34ebf990..0000000000 --- a/doc/source/stdlib/detail/function-bitfield_boost-each_bit-0x8605cb2b6f85b4bc.rst +++ /dev/null @@ -1 +0,0 @@ -Iterates over each bit of a bitfield value, yielding true or false for each bit. diff --git a/doc/source/stdlib/detail/function-bitfield_trait-each-0x6664fece0f7bcdf4.rst b/doc/source/stdlib/detail/function-bitfield_trait-each-0x6664fece0f7bcdf4.rst deleted file mode 100644 index a14673e4a3..0000000000 --- a/doc/source/stdlib/detail/function-bitfield_trait-each-0x6664fece0f7bcdf4.rst +++ /dev/null @@ -1 +0,0 @@ -Iterates over the names of a bitfield type, yielding each bit as a bitfield value (1ul << bitIndex). diff --git a/doc/source/stdlib/detail/function-bitfield_trait-each_bit_name-0xe86127c407f1651c.rst b/doc/source/stdlib/detail/function-bitfield_trait-each_bit_name-0xe86127c407f1651c.rst deleted file mode 100644 index 349031876a..0000000000 --- a/doc/source/stdlib/detail/function-bitfield_trait-each_bit_name-0xe86127c407f1651c.rst +++ /dev/null @@ -1 +0,0 @@ -Iterates over the names of a bitfield type, yielding each bit name as a string. diff --git a/doc/source/stdlib/detail/function-bool_array-BoolArray-_lb__rb_-0x57400d7ac7ad847.rst b/doc/source/stdlib/detail/function-bool_array-BoolArray-_lb__rb_-0x57400d7ac7ad847.rst deleted file mode 100644 index 30daa23d0d..0000000000 --- a/doc/source/stdlib/detail/function-bool_array-BoolArray-_lb__rb_-0x57400d7ac7ad847.rst +++ /dev/null @@ -1 +0,0 @@ -Get the boolean value at the given index. diff --git a/doc/source/stdlib/detail/function-bool_array-BoolArray-_lb__rb_^^_eq_-0xd59e63346168b5c0.rst b/doc/source/stdlib/detail/function-bool_array-BoolArray-_lb__rb_^^_eq_-0xd59e63346168b5c0.rst deleted file mode 100644 index 6f3d02b0b5..0000000000 --- a/doc/source/stdlib/detail/function-bool_array-BoolArray-_lb__rb_^^_eq_-0xd59e63346168b5c0.rst +++ /dev/null @@ -1 +0,0 @@ -Perform XOR operation on the boolean value at the given index. diff --git a/doc/source/stdlib/detail/function-bool_array-BoolArray-_lb__rb__eq_-0x24d576842833c232.rst b/doc/source/stdlib/detail/function-bool_array-BoolArray-_lb__rb__eq_-0x24d576842833c232.rst deleted file mode 100644 index 7cf330050f..0000000000 --- a/doc/source/stdlib/detail/function-bool_array-BoolArray-_lb__rb__eq_-0x24d576842833c232.rst +++ /dev/null @@ -1 +0,0 @@ -Set the boolean value at the given index. diff --git a/doc/source/stdlib/detail/function-bool_array-BoolArray-_lb__rb__eq_-0x9c39a869e5312aba.rst b/doc/source/stdlib/detail/function-bool_array-BoolArray-_lb__rb__eq_-0x9c39a869e5312aba.rst deleted file mode 100644 index 2576890763..0000000000 --- a/doc/source/stdlib/detail/function-bool_array-BoolArray-_lb__rb__eq_-0x9c39a869e5312aba.rst +++ /dev/null @@ -1 +0,0 @@ -Perform OR operation on the boolean value at the given index. diff --git a/doc/source/stdlib/detail/function-bool_array-BoolArray-_lb__rb__ref__ref__eq_-0xa86e90b319750698.rst b/doc/source/stdlib/detail/function-bool_array-BoolArray-_lb__rb__ref__ref__eq_-0xa86e90b319750698.rst deleted file mode 100644 index 070dcddfe7..0000000000 --- a/doc/source/stdlib/detail/function-bool_array-BoolArray-_lb__rb__ref__ref__eq_-0xa86e90b319750698.rst +++ /dev/null @@ -1 +0,0 @@ -Perform AND operation on the boolean value at the given index. diff --git a/doc/source/stdlib/detail/function-bool_array-BoolArray-clear-0xfc03506d61601fea.rst b/doc/source/stdlib/detail/function-bool_array-BoolArray-clear-0xfc03506d61601fea.rst deleted file mode 100644 index c5ffb0cdd8..0000000000 --- a/doc/source/stdlib/detail/function-bool_array-BoolArray-clear-0xfc03506d61601fea.rst +++ /dev/null @@ -1 +0,0 @@ -Clear the BoolArray. diff --git a/doc/source/stdlib/detail/function-bool_array-BoolArray-data_pointer-0x8748e96855c75935.rst b/doc/source/stdlib/detail/function-bool_array-BoolArray-data_pointer-0x8748e96855c75935.rst deleted file mode 100644 index 75f3582831..0000000000 --- a/doc/source/stdlib/detail/function-bool_array-BoolArray-data_pointer-0x8748e96855c75935.rst +++ /dev/null @@ -1 +0,0 @@ -Get the data pointer of the BoolArray. diff --git a/doc/source/stdlib/detail/function-bool_array-BoolArray-data_pointer-0xcbabcf7876231075.rst b/doc/source/stdlib/detail/function-bool_array-BoolArray-data_pointer-0xcbabcf7876231075.rst deleted file mode 100644 index 75f3582831..0000000000 --- a/doc/source/stdlib/detail/function-bool_array-BoolArray-data_pointer-0xcbabcf7876231075.rst +++ /dev/null @@ -1 +0,0 @@ -Get the data pointer of the BoolArray. diff --git a/doc/source/stdlib/detail/function-bool_array-BoolArray-erase-0x47487be93a8552f0.rst b/doc/source/stdlib/detail/function-bool_array-BoolArray-erase-0x47487be93a8552f0.rst deleted file mode 100644 index a1a09c0be9..0000000000 --- a/doc/source/stdlib/detail/function-bool_array-BoolArray-erase-0x47487be93a8552f0.rst +++ /dev/null @@ -1 +0,0 @@ -Erase the boolean value at the given index from the BoolArray. diff --git a/doc/source/stdlib/detail/function-bool_array-BoolArray-finalize-0x4cd76d3315994c33.rst b/doc/source/stdlib/detail/function-bool_array-BoolArray-finalize-0x4cd76d3315994c33.rst deleted file mode 100644 index 611ba9d3bd..0000000000 --- a/doc/source/stdlib/detail/function-bool_array-BoolArray-finalize-0x4cd76d3315994c33.rst +++ /dev/null @@ -1 +0,0 @@ -Releases the memory used by the BoolArray. diff --git a/doc/source/stdlib/detail/function-bool_array-BoolArray-insert-0x836867c98bcd07bd.rst b/doc/source/stdlib/detail/function-bool_array-BoolArray-insert-0x836867c98bcd07bd.rst deleted file mode 100644 index 5694c899c6..0000000000 --- a/doc/source/stdlib/detail/function-bool_array-BoolArray-insert-0x836867c98bcd07bd.rst +++ /dev/null @@ -1 +0,0 @@ -Insert a boolean value at the given index in the BoolArray. diff --git a/doc/source/stdlib/detail/function-bool_array-BoolArray-length-0x2b9793b687673a68.rst b/doc/source/stdlib/detail/function-bool_array-BoolArray-length-0x2b9793b687673a68.rst deleted file mode 100644 index 8bdce295e8..0000000000 --- a/doc/source/stdlib/detail/function-bool_array-BoolArray-length-0x2b9793b687673a68.rst +++ /dev/null @@ -1 +0,0 @@ -Get the length of the BoolArray. diff --git a/doc/source/stdlib/detail/function-bool_array-BoolArray-pop-0x79304040ffc07cd2.rst b/doc/source/stdlib/detail/function-bool_array-BoolArray-pop-0x79304040ffc07cd2.rst deleted file mode 100644 index ef7d5468e2..0000000000 --- a/doc/source/stdlib/detail/function-bool_array-BoolArray-pop-0x79304040ffc07cd2.rst +++ /dev/null @@ -1 +0,0 @@ -Pop the last boolean value from the BoolArray and return it. diff --git a/doc/source/stdlib/detail/function-bool_array-BoolArray-push-0x161229ec3dcfc338.rst b/doc/source/stdlib/detail/function-bool_array-BoolArray-push-0x161229ec3dcfc338.rst deleted file mode 100644 index a4ed9dec6e..0000000000 --- a/doc/source/stdlib/detail/function-bool_array-BoolArray-push-0x161229ec3dcfc338.rst +++ /dev/null @@ -1 +0,0 @@ -Push a new boolean value to the end of the BoolArray. diff --git a/doc/source/stdlib/detail/function-bool_array-BoolArray-push-0x229e926c07d4c622.rst b/doc/source/stdlib/detail/function-bool_array-BoolArray-push-0x229e926c07d4c622.rst deleted file mode 100644 index fbb58736f3..0000000000 --- a/doc/source/stdlib/detail/function-bool_array-BoolArray-push-0x229e926c07d4c622.rst +++ /dev/null @@ -1 +0,0 @@ -Push a new boolean value at the given index in the BoolArray. diff --git a/doc/source/stdlib/detail/function-bool_array-BoolArray-reserve-0x36f2246ffb994f39.rst b/doc/source/stdlib/detail/function-bool_array-BoolArray-reserve-0x36f2246ffb994f39.rst deleted file mode 100644 index 6a90105d63..0000000000 --- a/doc/source/stdlib/detail/function-bool_array-BoolArray-reserve-0x36f2246ffb994f39.rst +++ /dev/null @@ -1 +0,0 @@ -Reserve capacity for the BoolArray. diff --git a/doc/source/stdlib/detail/function-bool_array-BoolArray-resize-0xad211a61ead073e3.rst b/doc/source/stdlib/detail/function-bool_array-BoolArray-resize-0xad211a61ead073e3.rst deleted file mode 100644 index 5d5e0fbea2..0000000000 --- a/doc/source/stdlib/detail/function-bool_array-BoolArray-resize-0xad211a61ead073e3.rst +++ /dev/null @@ -1 +0,0 @@ -Resize the BoolArray to the new size. diff --git a/doc/source/stdlib/detail/function-bool_array-BoolArray-to_string-0xaec4e9ae2e4c3fea.rst b/doc/source/stdlib/detail/function-bool_array-BoolArray-to_string-0xaec4e9ae2e4c3fea.rst deleted file mode 100644 index 3a3ae8d580..0000000000 --- a/doc/source/stdlib/detail/function-bool_array-BoolArray-to_string-0xaec4e9ae2e4c3fea.rst +++ /dev/null @@ -1 +0,0 @@ -Convert the BoolArray to a string representation. diff --git a/doc/source/stdlib/detail/function-bool_array-each-0xa996d8309221b000.rst b/doc/source/stdlib/detail/function-bool_array-each-0xa996d8309221b000.rst deleted file mode 100644 index ca3ca956a2..0000000000 --- a/doc/source/stdlib/detail/function-bool_array-each-0xa996d8309221b000.rst +++ /dev/null @@ -1 +0,0 @@ -Returns an iterator over all boolean values in the BoolArray. diff --git a/doc/source/stdlib/detail/function-constant_expression-isConstantExpression-0x20db0b00b7ccf341.rst b/doc/source/stdlib/detail/function-constant_expression-isConstantExpression-0x20db0b00b7ccf341.rst deleted file mode 100644 index 74213ceb6f..0000000000 --- a/doc/source/stdlib/detail/function-constant_expression-isConstantExpression-0x20db0b00b7ccf341.rst +++ /dev/null @@ -1 +0,0 @@ -This macro function returns true if the expression is a constant expression diff --git a/doc/source/stdlib/detail/function-consume-CheckConsumeArguments-verifyCall-0xa244937c5482ab0b.rst b/doc/source/stdlib/detail/function-consume-CheckConsumeArguments-verifyCall-0xa244937c5482ab0b.rst deleted file mode 100644 index a8d765e5f2..0000000000 --- a/doc/source/stdlib/detail/function-consume-CheckConsumeArguments-verifyCall-0xa244937c5482ab0b.rst +++ /dev/null @@ -1 +0,0 @@ -check if all specified arguments are passed as moved values diff --git a/doc/source/stdlib/detail/function-consume-isConsumeArgument-0x6348e7bd4fff7a57.rst b/doc/source/stdlib/detail/function-consume-isConsumeArgument-0x6348e7bd4fff7a57.rst deleted file mode 100644 index bed3624f6e..0000000000 --- a/doc/source/stdlib/detail/function-consume-isConsumeArgument-0x6348e7bd4fff7a57.rst +++ /dev/null @@ -1 +0,0 @@ -check if the expression is a call to consume_argument diff --git a/doc/source/stdlib/detail/function-contracts-isYetAnotherVectorTemplate-0x86908a6ea28cc546.rst b/doc/source/stdlib/detail/function-contracts-isYetAnotherVectorTemplate-0x86908a6ea28cc546.rst deleted file mode 100644 index 878799fd8f..0000000000 --- a/doc/source/stdlib/detail/function-contracts-isYetAnotherVectorTemplate-0x86908a6ea28cc546.rst +++ /dev/null @@ -1 +0,0 @@ -returns true if the given type declaration is a das::vector template bound on C++ side diff --git a/doc/source/stdlib/detail/function-coroutines-CoAwait-visit-0xa7711840537a3824.rst b/doc/source/stdlib/detail/function-coroutines-CoAwait-visit-0xa7711840537a3824.rst deleted file mode 100644 index 26f02c23fd..0000000000 --- a/doc/source/stdlib/detail/function-coroutines-CoAwait-visit-0xa7711840537a3824.rst +++ /dev/null @@ -1 +0,0 @@ -Visits the co_await macro call and rewrites it into a for-yield loop over the sub-coroutine. diff --git a/doc/source/stdlib/detail/function-coroutines-CoContinue-visit-0xa7711840537a3824.rst b/doc/source/stdlib/detail/function-coroutines-CoContinue-visit-0xa7711840537a3824.rst deleted file mode 100644 index 5a983d0d4b..0000000000 --- a/doc/source/stdlib/detail/function-coroutines-CoContinue-visit-0xa7711840537a3824.rst +++ /dev/null @@ -1 +0,0 @@ -Visits the co_continue macro call and rewrites it to ``yield true``. diff --git a/doc/source/stdlib/detail/function-coroutines-CoroutineMacro-apply-0x2f26019def190937.rst b/doc/source/stdlib/detail/function-coroutines-CoroutineMacro-apply-0x2f26019def190937.rst deleted file mode 100644 index 55e313c7c8..0000000000 --- a/doc/source/stdlib/detail/function-coroutines-CoroutineMacro-apply-0x2f26019def190937.rst +++ /dev/null @@ -1 +0,0 @@ -Transforms the annotated function into a generator-based coroutine. diff --git a/doc/source/stdlib/detail/function-coroutines-YieldFrom-visit-0xa7711840537a3824.rst b/doc/source/stdlib/detail/function-coroutines-YieldFrom-visit-0xa7711840537a3824.rst deleted file mode 100644 index ded52c34c9..0000000000 --- a/doc/source/stdlib/detail/function-coroutines-YieldFrom-visit-0xa7711840537a3824.rst +++ /dev/null @@ -1 +0,0 @@ -Visits the yeild_from macro call and rewrites it into a for-yield loop. diff --git a/doc/source/stdlib/detail/function-coroutines-cr_run-0x3404fd2b4aee1388.rst b/doc/source/stdlib/detail/function-coroutines-cr_run-0x3404fd2b4aee1388.rst deleted file mode 100644 index 4b2b4d5f4d..0000000000 --- a/doc/source/stdlib/detail/function-coroutines-cr_run-0x3404fd2b4aee1388.rst +++ /dev/null @@ -1 +0,0 @@ -This function runs coroutine until it is finished. diff --git a/doc/source/stdlib/detail/function-coroutines-cr_run_all-0xf5082442d54bc369.rst b/doc/source/stdlib/detail/function-coroutines-cr_run_all-0xf5082442d54bc369.rst deleted file mode 100644 index f0b878aeb8..0000000000 --- a/doc/source/stdlib/detail/function-coroutines-cr_run_all-0xf5082442d54bc369.rst +++ /dev/null @@ -1 +0,0 @@ -This function runs all coroutines until they are finished. diff --git a/doc/source/stdlib/detail/function-coroutines-verify_inside_coroutine-0xf135462c5b5a595a.rst b/doc/source/stdlib/detail/function-coroutines-verify_inside_coroutine-0xf135462c5b5a595a.rst deleted file mode 100644 index 8c2a19337d..0000000000 --- a/doc/source/stdlib/detail/function-coroutines-verify_inside_coroutine-0xf135462c5b5a595a.rst +++ /dev/null @@ -1,2 +0,0 @@ -Verifies that a call macro is being used inside a [coroutine] or [async] annotated function. -Returns true if valid, false if not (and emits macro_error). diff --git a/doc/source/stdlib/detail/function-cpp_bind-log_cpp_class_adapter-0xd5e359bc5cd1a643.rst b/doc/source/stdlib/detail/function-cpp_bind-log_cpp_class_adapter-0xd5e359bc5cd1a643.rst deleted file mode 100644 index a2b44402f9..0000000000 --- a/doc/source/stdlib/detail/function-cpp_bind-log_cpp_class_adapter-0xd5e359bc5cd1a643.rst +++ /dev/null @@ -1,4 +0,0 @@ -Generates C++ class adapter for the Daslang class. -Intended use:: - - log_cpp_class_adapter(cppFileNameDotInc, "daslangClassName", typeinfo(ast_typedecl type)) diff --git a/doc/source/stdlib/detail/function-cuckoo_hash_table-TCuckooHashTable-insert-0x2ac9f5d94b3ed031.rst b/doc/source/stdlib/detail/function-cuckoo_hash_table-TCuckooHashTable-insert-0x2ac9f5d94b3ed031.rst deleted file mode 100644 index a13ea5a948..0000000000 --- a/doc/source/stdlib/detail/function-cuckoo_hash_table-TCuckooHashTable-insert-0x2ac9f5d94b3ed031.rst +++ /dev/null @@ -1 +0,0 @@ -insert a key value pair into the hash map diff --git a/doc/source/stdlib/detail/function-cuckoo_hash_table-hash0-0x15135c7b80088574.rst b/doc/source/stdlib/detail/function-cuckoo_hash_table-hash0-0x15135c7b80088574.rst deleted file mode 100644 index d9d6a97255..0000000000 --- a/doc/source/stdlib/detail/function-cuckoo_hash_table-hash0-0x15135c7b80088574.rst +++ /dev/null @@ -1 +0,0 @@ -this hash function converts and workhorse key to a 64 bit hash diff --git a/doc/source/stdlib/detail/function-cuckoo_hash_table-hash_extra-0xcf7a00677f7aa816.rst b/doc/source/stdlib/detail/function-cuckoo_hash_table-hash_extra-0xcf7a00677f7aa816.rst deleted file mode 100644 index e693eba613..0000000000 --- a/doc/source/stdlib/detail/function-cuckoo_hash_table-hash_extra-0xcf7a00677f7aa816.rst +++ /dev/null @@ -1 +0,0 @@ -Returns a secondary hash derived from the upper 32 bits of the primary hash, used for cuckoo hashing. diff --git a/doc/source/stdlib/detail/function-dap-ContinueArguments-0x6679b7846ef3beb6.rst b/doc/source/stdlib/detail/function-dap-ContinueArguments-0x6679b7846ef3beb6.rst deleted file mode 100644 index b92fad0c88..0000000000 --- a/doc/source/stdlib/detail/function-dap-ContinueArguments-0x6679b7846ef3beb6.rst +++ /dev/null @@ -1 +0,0 @@ -Constructs a ContinueArguments from a JSON value. diff --git a/doc/source/stdlib/detail/function-dap-DataBreakpoint-0x603e46207abd3b58.rst b/doc/source/stdlib/detail/function-dap-DataBreakpoint-0x603e46207abd3b58.rst deleted file mode 100644 index ef443d0059..0000000000 --- a/doc/source/stdlib/detail/function-dap-DataBreakpoint-0x603e46207abd3b58.rst +++ /dev/null @@ -1 +0,0 @@ -Constructs a DataBreakpoint from a JSON value. diff --git a/doc/source/stdlib/detail/function-dap-DataBreakpointInfoArguments-0xe64cbed1c6652ce3.rst b/doc/source/stdlib/detail/function-dap-DataBreakpointInfoArguments-0xe64cbed1c6652ce3.rst deleted file mode 100644 index 8aa69f8445..0000000000 --- a/doc/source/stdlib/detail/function-dap-DataBreakpointInfoArguments-0xe64cbed1c6652ce3.rst +++ /dev/null @@ -1 +0,0 @@ -Constructs a DataBreakpointInfoArguments from a JSON value. diff --git a/doc/source/stdlib/detail/function-dap-DisconnectArguments-0x9be176d413d449e.rst b/doc/source/stdlib/detail/function-dap-DisconnectArguments-0x9be176d413d449e.rst deleted file mode 100644 index 1203592c2b..0000000000 --- a/doc/source/stdlib/detail/function-dap-DisconnectArguments-0x9be176d413d449e.rst +++ /dev/null @@ -1 +0,0 @@ -Constructs a DisconnectArguments from a JSON value. diff --git a/doc/source/stdlib/detail/function-dap-EvaluateArguments-0xc1bfcdd2690cf312.rst b/doc/source/stdlib/detail/function-dap-EvaluateArguments-0xc1bfcdd2690cf312.rst deleted file mode 100644 index fa550691c9..0000000000 --- a/doc/source/stdlib/detail/function-dap-EvaluateArguments-0xc1bfcdd2690cf312.rst +++ /dev/null @@ -1 +0,0 @@ -Constructs an EvaluateArguments from a JSON value. diff --git a/doc/source/stdlib/detail/function-dap-InitializeRequestArguments-0xcfda5e72467f24c8.rst b/doc/source/stdlib/detail/function-dap-InitializeRequestArguments-0xcfda5e72467f24c8.rst deleted file mode 100644 index 07d8e3572f..0000000000 --- a/doc/source/stdlib/detail/function-dap-InitializeRequestArguments-0xcfda5e72467f24c8.rst +++ /dev/null @@ -1 +0,0 @@ -Constructs an InitializeRequestArguments from a JSON value. diff --git a/doc/source/stdlib/detail/function-dap-JV-0x486b32165ac0d5cc.rst b/doc/source/stdlib/detail/function-dap-JV-0x486b32165ac0d5cc.rst deleted file mode 100644 index 5f1224974d..0000000000 --- a/doc/source/stdlib/detail/function-dap-JV-0x486b32165ac0d5cc.rst +++ /dev/null @@ -1 +0,0 @@ -Converts a Variable struct to its DAP JSON representation. diff --git a/doc/source/stdlib/detail/function-dap-JV-0x8e9c49df66f20bbb.rst b/doc/source/stdlib/detail/function-dap-JV-0x8e9c49df66f20bbb.rst deleted file mode 100644 index d50f8e5dfa..0000000000 --- a/doc/source/stdlib/detail/function-dap-JV-0x8e9c49df66f20bbb.rst +++ /dev/null @@ -1 +0,0 @@ -Converts an EvaluateResponse struct to its DAP JSON representation. diff --git a/doc/source/stdlib/detail/function-dap-NextArguments-0xa2308a0436bd5ac3.rst b/doc/source/stdlib/detail/function-dap-NextArguments-0xa2308a0436bd5ac3.rst deleted file mode 100644 index aca7a6c775..0000000000 --- a/doc/source/stdlib/detail/function-dap-NextArguments-0xa2308a0436bd5ac3.rst +++ /dev/null @@ -1 +0,0 @@ -Constructs a NextArguments from a JSON value. diff --git a/doc/source/stdlib/detail/function-dap-PauseArguments-0x579d107b61f9dcf3.rst b/doc/source/stdlib/detail/function-dap-PauseArguments-0x579d107b61f9dcf3.rst deleted file mode 100644 index d578227de5..0000000000 --- a/doc/source/stdlib/detail/function-dap-PauseArguments-0x579d107b61f9dcf3.rst +++ /dev/null @@ -1 +0,0 @@ -Constructs a PauseArguments from a JSON value. diff --git a/doc/source/stdlib/detail/function-dap-ScopesArguments-0x6bdcd049ac80a256.rst b/doc/source/stdlib/detail/function-dap-ScopesArguments-0x6bdcd049ac80a256.rst deleted file mode 100644 index fa8858a11a..0000000000 --- a/doc/source/stdlib/detail/function-dap-ScopesArguments-0x6bdcd049ac80a256.rst +++ /dev/null @@ -1 +0,0 @@ -Constructs a ScopesArguments from a JSON value. diff --git a/doc/source/stdlib/detail/function-dap-SetBreakpointsArguments-0xf8d315f1db853494.rst b/doc/source/stdlib/detail/function-dap-SetBreakpointsArguments-0xf8d315f1db853494.rst deleted file mode 100644 index 39f7652150..0000000000 --- a/doc/source/stdlib/detail/function-dap-SetBreakpointsArguments-0xf8d315f1db853494.rst +++ /dev/null @@ -1 +0,0 @@ -Constructs a SetBreakpointsArguments from a JSON value, parsing source and breakpoints. diff --git a/doc/source/stdlib/detail/function-dap-SetDataBreakpointsArguments-0xf5cb33aef6c0896a.rst b/doc/source/stdlib/detail/function-dap-SetDataBreakpointsArguments-0xf5cb33aef6c0896a.rst deleted file mode 100644 index db0809b8b7..0000000000 --- a/doc/source/stdlib/detail/function-dap-SetDataBreakpointsArguments-0xf5cb33aef6c0896a.rst +++ /dev/null @@ -1 +0,0 @@ -Constructs a SetDataBreakpointsArguments from a JSON value, parsing the breakpoints array. diff --git a/doc/source/stdlib/detail/function-dap-Source-0x5ab400eaa5ff1f5e.rst b/doc/source/stdlib/detail/function-dap-Source-0x5ab400eaa5ff1f5e.rst deleted file mode 100644 index 98c7ac6a0f..0000000000 --- a/doc/source/stdlib/detail/function-dap-Source-0x5ab400eaa5ff1f5e.rst +++ /dev/null @@ -1 +0,0 @@ -Constructs a Source from a JSON value. diff --git a/doc/source/stdlib/detail/function-dap-SourceBreakpoint-0x4524798dd369cb53.rst b/doc/source/stdlib/detail/function-dap-SourceBreakpoint-0x4524798dd369cb53.rst deleted file mode 100644 index 2735f42a55..0000000000 --- a/doc/source/stdlib/detail/function-dap-SourceBreakpoint-0x4524798dd369cb53.rst +++ /dev/null @@ -1 +0,0 @@ -Constructs a SourceBreakpoint from a JSON value. diff --git a/doc/source/stdlib/detail/function-dap-StackTraceArguments-0x73166280aac7ce65.rst b/doc/source/stdlib/detail/function-dap-StackTraceArguments-0x73166280aac7ce65.rst deleted file mode 100644 index 9f5488770b..0000000000 --- a/doc/source/stdlib/detail/function-dap-StackTraceArguments-0x73166280aac7ce65.rst +++ /dev/null @@ -1 +0,0 @@ -Constructs a StackTraceArguments from a JSON value. diff --git a/doc/source/stdlib/detail/function-dap-StepInArguments-0x390039c5c5ee3b1c.rst b/doc/source/stdlib/detail/function-dap-StepInArguments-0x390039c5c5ee3b1c.rst deleted file mode 100644 index 5bbe79f07b..0000000000 --- a/doc/source/stdlib/detail/function-dap-StepInArguments-0x390039c5c5ee3b1c.rst +++ /dev/null @@ -1 +0,0 @@ -Constructs a StepInArguments from a JSON value. diff --git a/doc/source/stdlib/detail/function-dap-StepOutArguments-0x9e9761e1594e0dee.rst b/doc/source/stdlib/detail/function-dap-StepOutArguments-0x9e9761e1594e0dee.rst deleted file mode 100644 index f2c04608de..0000000000 --- a/doc/source/stdlib/detail/function-dap-StepOutArguments-0x9e9761e1594e0dee.rst +++ /dev/null @@ -1 +0,0 @@ -Constructs a StepOutArguments from a JSON value. diff --git a/doc/source/stdlib/detail/function-dap-VariablesArguments-0x5cf903e7126b3367.rst b/doc/source/stdlib/detail/function-dap-VariablesArguments-0x5cf903e7126b3367.rst deleted file mode 100644 index eefeaeb4f0..0000000000 --- a/doc/source/stdlib/detail/function-dap-VariablesArguments-0x5cf903e7126b3367.rst +++ /dev/null @@ -1 +0,0 @@ -Constructs a VariablesArguments from a JSON value. diff --git a/doc/source/stdlib/detail/function-dap-j_s-0xab30853761d7730e.rst b/doc/source/stdlib/detail/function-dap-j_s-0xab30853761d7730e.rst deleted file mode 100644 index 1dd62cebcf..0000000000 --- a/doc/source/stdlib/detail/function-dap-j_s-0xab30853761d7730e.rst +++ /dev/null @@ -1 +0,0 @@ -Returns the string value of a JSON value, or `defVal` if not a string. diff --git a/doc/source/stdlib/detail/function-dap-job-0x478c3f582c0ab7e2.rst b/doc/source/stdlib/detail/function-dap-job-0x478c3f582c0ab7e2.rst deleted file mode 100644 index 1f38d055c0..0000000000 --- a/doc/source/stdlib/detail/function-dap-job-0x478c3f582c0ab7e2.rst +++ /dev/null @@ -1 +0,0 @@ -Returns a boolean JSON field by name, or `defVal` if not found. diff --git a/doc/source/stdlib/detail/function-dap-joj-0x994db487d35b8589.rst b/doc/source/stdlib/detail/function-dap-joj-0x994db487d35b8589.rst deleted file mode 100644 index ff75a22438..0000000000 --- a/doc/source/stdlib/detail/function-dap-joj-0x994db487d35b8589.rst +++ /dev/null @@ -1 +0,0 @@ -Returns a nested JSON object field by name, or null if not found. diff --git a/doc/source/stdlib/detail/function-dap-jon-0x9fdf0ee20ba20dd3.rst b/doc/source/stdlib/detail/function-dap-jon-0x9fdf0ee20ba20dd3.rst deleted file mode 100644 index 7977eda05b..0000000000 --- a/doc/source/stdlib/detail/function-dap-jon-0x9fdf0ee20ba20dd3.rst +++ /dev/null @@ -1 +0,0 @@ -Returns a numeric JSON field by name, or `defVal` if not found. diff --git a/doc/source/stdlib/detail/function-dap-jos-0x78c9ca8c4b8bacc6.rst b/doc/source/stdlib/detail/function-dap-jos-0x78c9ca8c4b8bacc6.rst deleted file mode 100644 index e87af8de65..0000000000 --- a/doc/source/stdlib/detail/function-dap-jos-0x78c9ca8c4b8bacc6.rst +++ /dev/null @@ -1 +0,0 @@ -Returns a string JSON field by name, or `defVal` if not found. diff --git a/doc/source/stdlib/detail/function-das_source_formatter-format_source-0xfb066e19d23081ff.rst b/doc/source/stdlib/detail/function-das_source_formatter-format_source-0xfb066e19d23081ff.rst deleted file mode 100644 index e47287b676..0000000000 --- a/doc/source/stdlib/detail/function-das_source_formatter-format_source-0xfb066e19d23081ff.rst +++ /dev/null @@ -1 +0,0 @@ -Formats daslang source code given as a byte array and returns the formatted result. diff --git a/doc/source/stdlib/detail/function-das_source_formatter-format_source_string-0xc09312a2609e2d5.rst b/doc/source/stdlib/detail/function-das_source_formatter-format_source_string-0xc09312a2609e2d5.rst deleted file mode 100644 index 535b38ecac..0000000000 --- a/doc/source/stdlib/detail/function-das_source_formatter-format_source_string-0xc09312a2609e2d5.rst +++ /dev/null @@ -1 +0,0 @@ -Formats a daslang source code string and returns the formatted result. diff --git a/doc/source/stdlib/detail/function-das_source_formatter_fio-format_file-0xee2279329a68061.rst b/doc/source/stdlib/detail/function-das_source_formatter_fio-format_file-0xee2279329a68061.rst deleted file mode 100644 index 417fd90823..0000000000 --- a/doc/source/stdlib/detail/function-das_source_formatter_fio-format_file-0xee2279329a68061.rst +++ /dev/null @@ -1 +0,0 @@ -Reads a daslang source file, formats it, and writes the result back if changed. diff --git a/doc/source/stdlib/detail/function-das_source_formatter_fio-format_files-0x244ceb22c2b5f106.rst b/doc/source/stdlib/detail/function-das_source_formatter_fio-format_files-0x244ceb22c2b5f106.rst deleted file mode 100644 index 4bfbebd897..0000000000 --- a/doc/source/stdlib/detail/function-das_source_formatter_fio-format_files-0x244ceb22c2b5f106.rst +++ /dev/null @@ -1 +0,0 @@ -Formats multiple daslang source files in place. diff --git a/doc/source/stdlib/detail/function-dashv_boost-HvWebServer-ANY-0x93e91eccad5337d.rst b/doc/source/stdlib/detail/function-dashv_boost-HvWebServer-ANY-0x93e91eccad5337d.rst deleted file mode 100644 index c24d972fdb..0000000000 --- a/doc/source/stdlib/detail/function-dashv_boost-HvWebServer-ANY-0x93e91eccad5337d.rst +++ /dev/null @@ -1 +0,0 @@ -Registers a handler for any HTTP method matching ``uri``. diff --git a/doc/source/stdlib/detail/function-dashv_boost-HvWebServer-DELETE-0x48659e54245a0a40.rst b/doc/source/stdlib/detail/function-dashv_boost-HvWebServer-DELETE-0x48659e54245a0a40.rst deleted file mode 100644 index 86796c2dae..0000000000 --- a/doc/source/stdlib/detail/function-dashv_boost-HvWebServer-DELETE-0x48659e54245a0a40.rst +++ /dev/null @@ -1 +0,0 @@ -Registers a handler for HTTP DELETE requests matching ``uri``. diff --git a/doc/source/stdlib/detail/function-dashv_boost-HvWebServer-GET-0xaa8bc3f41f8021fa.rst b/doc/source/stdlib/detail/function-dashv_boost-HvWebServer-GET-0xaa8bc3f41f8021fa.rst deleted file mode 100644 index 251d0804fd..0000000000 --- a/doc/source/stdlib/detail/function-dashv_boost-HvWebServer-GET-0xaa8bc3f41f8021fa.rst +++ /dev/null @@ -1 +0,0 @@ -Registers a handler for HTTP GET requests matching ``uri``. diff --git a/doc/source/stdlib/detail/function-dashv_boost-HvWebServer-HEAD-0x1e9bed6e61bbeba9.rst b/doc/source/stdlib/detail/function-dashv_boost-HvWebServer-HEAD-0x1e9bed6e61bbeba9.rst deleted file mode 100644 index 903218204a..0000000000 --- a/doc/source/stdlib/detail/function-dashv_boost-HvWebServer-HEAD-0x1e9bed6e61bbeba9.rst +++ /dev/null @@ -1 +0,0 @@ -Registers a handler for HTTP HEAD requests matching ``uri``. diff --git a/doc/source/stdlib/detail/function-dashv_boost-HvWebServer-PATCH-0x774ff551a000d671.rst b/doc/source/stdlib/detail/function-dashv_boost-HvWebServer-PATCH-0x774ff551a000d671.rst deleted file mode 100644 index 9c10f1c23d..0000000000 --- a/doc/source/stdlib/detail/function-dashv_boost-HvWebServer-PATCH-0x774ff551a000d671.rst +++ /dev/null @@ -1 +0,0 @@ -Registers a handler for HTTP PATCH requests matching ``uri``. diff --git a/doc/source/stdlib/detail/function-dashv_boost-HvWebServer-POST-0xec6af3b1799abc83.rst b/doc/source/stdlib/detail/function-dashv_boost-HvWebServer-POST-0xec6af3b1799abc83.rst deleted file mode 100644 index df7fdb200f..0000000000 --- a/doc/source/stdlib/detail/function-dashv_boost-HvWebServer-POST-0xec6af3b1799abc83.rst +++ /dev/null @@ -1 +0,0 @@ -Registers a handler for HTTP POST requests matching ``uri``. diff --git a/doc/source/stdlib/detail/function-dashv_boost-HvWebServer-PUT-0x8d1bb5c465ae8caf.rst b/doc/source/stdlib/detail/function-dashv_boost-HvWebServer-PUT-0x8d1bb5c465ae8caf.rst deleted file mode 100644 index a4e350dbaf..0000000000 --- a/doc/source/stdlib/detail/function-dashv_boost-HvWebServer-PUT-0x8d1bb5c465ae8caf.rst +++ /dev/null @@ -1 +0,0 @@ -Registers a handler for HTTP PUT requests matching ``uri``. diff --git a/doc/source/stdlib/detail/function-dashv_boost-HvWebServer-SSE-0xc84eab558126e74b.rst b/doc/source/stdlib/detail/function-dashv_boost-HvWebServer-SSE-0xc84eab558126e74b.rst deleted file mode 100644 index f4edcbaa07..0000000000 --- a/doc/source/stdlib/detail/function-dashv_boost-HvWebServer-SSE-0xc84eab558126e74b.rst +++ /dev/null @@ -1,3 +0,0 @@ -Registers an SSE (Server-Sent Events) handler for ``uri``. -Same signature as GET/POST — set SSE headers and write events to the response. -Uses ``ANY`` method matching so any HTTP method reaches this handler. diff --git a/doc/source/stdlib/detail/function-dashv_boost-HvWebServer-STATIC-0xec01d40e5b3aace2.rst b/doc/source/stdlib/detail/function-dashv_boost-HvWebServer-STATIC-0xec01d40e5b3aace2.rst deleted file mode 100644 index b91e5f48de..0000000000 --- a/doc/source/stdlib/detail/function-dashv_boost-HvWebServer-STATIC-0xec01d40e5b3aace2.rst +++ /dev/null @@ -1 +0,0 @@ -Serves static files from ``dir`` under the URL prefix ``path``. diff --git a/doc/source/stdlib/detail/function-dashv_boost-HvWebServer-allow_cors-0x535d1a1f26ade310.rst b/doc/source/stdlib/detail/function-dashv_boost-HvWebServer-allow_cors-0x535d1a1f26ade310.rst deleted file mode 100644 index ac5ed7a0b7..0000000000 --- a/doc/source/stdlib/detail/function-dashv_boost-HvWebServer-allow_cors-0x535d1a1f26ade310.rst +++ /dev/null @@ -1 +0,0 @@ -Enables cross-origin resource sharing (CORS) on the server. diff --git a/doc/source/stdlib/detail/function-dashv_boost-HvWebServer-init-0xa8469a122368b5aa.rst b/doc/source/stdlib/detail/function-dashv_boost-HvWebServer-init-0xa8469a122368b5aa.rst deleted file mode 100644 index 4f148d6cf5..0000000000 --- a/doc/source/stdlib/detail/function-dashv_boost-HvWebServer-init-0xa8469a122368b5aa.rst +++ /dev/null @@ -1 +0,0 @@ -Initializes an HTTP/WebSocket server on the specified port. diff --git a/doc/source/stdlib/detail/function-dashv_boost-HvWebServer-init_wss-0xd252178afbaf5cf3.rst b/doc/source/stdlib/detail/function-dashv_boost-HvWebServer-init_wss-0xd252178afbaf5cf3.rst deleted file mode 100644 index e7995ab587..0000000000 --- a/doc/source/stdlib/detail/function-dashv_boost-HvWebServer-init_wss-0xd252178afbaf5cf3.rst +++ /dev/null @@ -1,2 +0,0 @@ -Initializes an HTTPS/WSS server with TLS. Uses the default ``modules/dasHV/cert`` -directory if ``pathToCert`` is empty. diff --git a/doc/source/stdlib/detail/function-dashv_boost-HvWebServer-set_document_root-0x9137c947def2e272.rst b/doc/source/stdlib/detail/function-dashv_boost-HvWebServer-set_document_root-0x9137c947def2e272.rst deleted file mode 100644 index 06091b00f0..0000000000 --- a/doc/source/stdlib/detail/function-dashv_boost-HvWebServer-set_document_root-0x9137c947def2e272.rst +++ /dev/null @@ -1 +0,0 @@ -Sets the document root directory for static file serving. diff --git a/doc/source/stdlib/detail/function-dashv_boost-HvWebServer-set_error_page-0x9fb2c1f5494f5b5.rst b/doc/source/stdlib/detail/function-dashv_boost-HvWebServer-set_error_page-0x9fb2c1f5494f5b5.rst deleted file mode 100644 index c612abc747..0000000000 --- a/doc/source/stdlib/detail/function-dashv_boost-HvWebServer-set_error_page-0x9fb2c1f5494f5b5.rst +++ /dev/null @@ -1 +0,0 @@ -Sets a custom error page file. diff --git a/doc/source/stdlib/detail/function-dashv_boost-HvWebServer-set_home_page-0xaf30c019acce5ce4.rst b/doc/source/stdlib/detail/function-dashv_boost-HvWebServer-set_home_page-0xaf30c019acce5ce4.rst deleted file mode 100644 index 6623200f9a..0000000000 --- a/doc/source/stdlib/detail/function-dashv_boost-HvWebServer-set_home_page-0xaf30c019acce5ce4.rst +++ /dev/null @@ -1 +0,0 @@ -Sets the default home page file (e.g., ``index.html``). diff --git a/doc/source/stdlib/detail/function-dashv_boost-HvWebServer-set_index_of-0xf3bd5d75c4248673.rst b/doc/source/stdlib/detail/function-dashv_boost-HvWebServer-set_index_of-0xf3bd5d75c4248673.rst deleted file mode 100644 index 8946e8fcc2..0000000000 --- a/doc/source/stdlib/detail/function-dashv_boost-HvWebServer-set_index_of-0xf3bd5d75c4248673.rst +++ /dev/null @@ -1 +0,0 @@ -Enables directory listing for the specified directory. diff --git a/doc/source/stdlib/detail/function-dashv_boost-HvWebServer-start-0xd87d98178fcd85f7.rst b/doc/source/stdlib/detail/function-dashv_boost-HvWebServer-start-0xd87d98178fcd85f7.rst deleted file mode 100644 index 2b6762b77c..0000000000 --- a/doc/source/stdlib/detail/function-dashv_boost-HvWebServer-start-0xd87d98178fcd85f7.rst +++ /dev/null @@ -1 +0,0 @@ -Starts the server. Returns 0 on success. diff --git a/doc/source/stdlib/detail/function-dashv_boost-HvWebServer-stop-0xb94139084b1597d7.rst b/doc/source/stdlib/detail/function-dashv_boost-HvWebServer-stop-0xb94139084b1597d7.rst deleted file mode 100644 index 766dd81d47..0000000000 --- a/doc/source/stdlib/detail/function-dashv_boost-HvWebServer-stop-0xb94139084b1597d7.rst +++ /dev/null @@ -1 +0,0 @@ -Stops the server. Returns 0 on success. diff --git a/doc/source/stdlib/detail/function-dashv_boost-HvWebServer-tick-0x8d372d0825d80a40.rst b/doc/source/stdlib/detail/function-dashv_boost-HvWebServer-tick-0x8d372d0825d80a40.rst deleted file mode 100644 index b024c616ce..0000000000 --- a/doc/source/stdlib/detail/function-dashv_boost-HvWebServer-tick-0x8d372d0825d80a40.rst +++ /dev/null @@ -1 +0,0 @@ -Processes pending HTTP and WebSocket events; must be called periodically. diff --git a/doc/source/stdlib/detail/function-dashv_boost-HvWebSocketClient-close-0x4356eaf1124fd146.rst b/doc/source/stdlib/detail/function-dashv_boost-HvWebSocketClient-close-0x4356eaf1124fd146.rst deleted file mode 100644 index ea32d69959..0000000000 --- a/doc/source/stdlib/detail/function-dashv_boost-HvWebSocketClient-close-0x4356eaf1124fd146.rst +++ /dev/null @@ -1 +0,0 @@ -Closes the WebSocket connection. Returns 0 on success. diff --git a/doc/source/stdlib/detail/function-dashv_boost-HvWebSocketClient-init-0x46618703be075bbc.rst b/doc/source/stdlib/detail/function-dashv_boost-HvWebSocketClient-init-0x46618703be075bbc.rst deleted file mode 100644 index ac62f6d0a7..0000000000 --- a/doc/source/stdlib/detail/function-dashv_boost-HvWebSocketClient-init-0x46618703be075bbc.rst +++ /dev/null @@ -1 +0,0 @@ -Connects to the given WebSocket URL. Returns 0 on success. diff --git a/doc/source/stdlib/detail/function-dashv_boost-HvWebSocketClient-is_connected-0xb2c92022d186b5a8.rst b/doc/source/stdlib/detail/function-dashv_boost-HvWebSocketClient-is_connected-0xb2c92022d186b5a8.rst deleted file mode 100644 index 3cfed7764f..0000000000 --- a/doc/source/stdlib/detail/function-dashv_boost-HvWebSocketClient-is_connected-0xb2c92022d186b5a8.rst +++ /dev/null @@ -1 +0,0 @@ -Returns ``true`` if the WebSocket connection is currently open. diff --git a/doc/source/stdlib/detail/function-dashv_boost-HvWebSocketClient-process_event_que-0xf6106403d3c49f24.rst b/doc/source/stdlib/detail/function-dashv_boost-HvWebSocketClient-process_event_que-0xf6106403d3c49f24.rst deleted file mode 100644 index 3c47b6cdfa..0000000000 --- a/doc/source/stdlib/detail/function-dashv_boost-HvWebSocketClient-process_event_que-0xf6106403d3c49f24.rst +++ /dev/null @@ -1 +0,0 @@ -Processes pending WebSocket events; must be called periodically. diff --git a/doc/source/stdlib/detail/function-dashv_boost-HvWebSocketClient-send-0x1acfe677b9745391.rst b/doc/source/stdlib/detail/function-dashv_boost-HvWebSocketClient-send-0x1acfe677b9745391.rst deleted file mode 100644 index 0f66fb7518..0000000000 --- a/doc/source/stdlib/detail/function-dashv_boost-HvWebSocketClient-send-0x1acfe677b9745391.rst +++ /dev/null @@ -1 +0,0 @@ -Sends a text message to the server. diff --git a/doc/source/stdlib/detail/function-dashv_boost-get_body_bytes-0x26be929ab6692de3.rst b/doc/source/stdlib/detail/function-dashv_boost-get_body_bytes-0x26be929ab6692de3.rst deleted file mode 100644 index 1b39909a2f..0000000000 --- a/doc/source/stdlib/detail/function-dashv_boost-get_body_bytes-0x26be929ab6692de3.rst +++ /dev/null @@ -1,2 +0,0 @@ -Extracts the response body as an ``array``. -Returns an empty array if the response is null, non-OK, or has no content. diff --git a/doc/source/stdlib/detail/function-dashv_boost-with_http_request-0x7d22d765d88d5065.rst b/doc/source/stdlib/detail/function-dashv_boost-with_http_request-0x7d22d765d88d5065.rst deleted file mode 100644 index b3db28ebae..0000000000 --- a/doc/source/stdlib/detail/function-dashv_boost-with_http_request-0x7d22d765d88d5065.rst +++ /dev/null @@ -1,2 +0,0 @@ -Creates a temporary ``HttpRequest``, invokes the block, then cleans up. -Use this to configure and send outbound HTTP requests. diff --git a/doc/source/stdlib/detail/function-debug_eval-debug_eval-0x647185423590d05f.rst b/doc/source/stdlib/detail/function-debug_eval-debug_eval-0x647185423590d05f.rst deleted file mode 100644 index a8771e5a47..0000000000 --- a/doc/source/stdlib/detail/function-debug_eval-debug_eval-0x647185423590d05f.rst +++ /dev/null @@ -1 +0,0 @@ -Evaluates a debug expression string with the given variable context and returns the result. diff --git a/doc/source/stdlib/detail/function-decs-EcsRequestPos-0xb2d8205dc56edf84.rst b/doc/source/stdlib/detail/function-decs-EcsRequestPos-0xb2d8205dc56edf84.rst deleted file mode 100644 index 04b35c9615..0000000000 --- a/doc/source/stdlib/detail/function-decs-EcsRequestPos-0xb2d8205dc56edf84.rst +++ /dev/null @@ -1 +0,0 @@ -Constructs EcsRequestPos from rtti::LineInfo. diff --git a/doc/source/stdlib/detail/function-decs-_dot_-0x6e26ef88fb28a2b2.rst b/doc/source/stdlib/detail/function-decs-_dot_-0x6e26ef88fb28a2b2.rst deleted file mode 100644 index e419aeb398..0000000000 --- a/doc/source/stdlib/detail/function-decs-_dot_-0x6e26ef88fb28a2b2.rst +++ /dev/null @@ -1,4 +0,0 @@ -Access to component value by name. For example:: - - create_entity <| @ ( eid, cmp ) - cmp.pos := float3(i) // same as cmp |> set("pos",float3(i)) diff --git a/doc/source/stdlib/detail/function-decs-_eq__eq_-0x6c2a57312270c53c.rst b/doc/source/stdlib/detail/function-decs-_eq__eq_-0x6c2a57312270c53c.rst deleted file mode 100644 index eda43fb02e..0000000000 --- a/doc/source/stdlib/detail/function-decs-_eq__eq_-0x6c2a57312270c53c.rst +++ /dev/null @@ -1 +0,0 @@ -Equality operator for entity IDs. diff --git a/doc/source/stdlib/detail/function-decs-_ex__eq_-0x8df2608787df0d40.rst b/doc/source/stdlib/detail/function-decs-_ex__eq_-0x8df2608787df0d40.rst deleted file mode 100644 index e849c4e201..0000000000 --- a/doc/source/stdlib/detail/function-decs-_ex__eq_-0x8df2608787df0d40.rst +++ /dev/null @@ -1 +0,0 @@ -Inequality operator for entity IDs. diff --git a/doc/source/stdlib/detail/function-decs-after_gc-0xfc1652abd559b40b.rst b/doc/source/stdlib/detail/function-decs-after_gc-0xfc1652abd559b40b.rst deleted file mode 100644 index de03e84d00..0000000000 --- a/doc/source/stdlib/detail/function-decs-after_gc-0xfc1652abd559b40b.rst +++ /dev/null @@ -1,2 +0,0 @@ -Low level callback to be called after the garbage collection. -This is a low-level function typically used by `live`. diff --git a/doc/source/stdlib/detail/function-decs-before_gc-0x44aabc118144c0eb.rst b/doc/source/stdlib/detail/function-decs-before_gc-0x44aabc118144c0eb.rst deleted file mode 100644 index 5a9133182d..0000000000 --- a/doc/source/stdlib/detail/function-decs-before_gc-0x44aabc118144c0eb.rst +++ /dev/null @@ -1,2 +0,0 @@ -Low level callback to be called before the garbage collection. -This is a low-level function typically used by `live`. diff --git a/doc/source/stdlib/detail/function-decs-clone-0x11ecca9e3380fa28.rst b/doc/source/stdlib/detail/function-decs-clone-0x11ecca9e3380fa28.rst deleted file mode 100644 index d26f444737..0000000000 --- a/doc/source/stdlib/detail/function-decs-clone-0x11ecca9e3380fa28.rst +++ /dev/null @@ -1 +0,0 @@ -Sets individual component value. Verifies that the value is of the correct type. diff --git a/doc/source/stdlib/detail/function-decs-clone-0x1db95e71fe1744f9.rst b/doc/source/stdlib/detail/function-decs-clone-0x1db95e71fe1744f9.rst deleted file mode 100644 index d26f444737..0000000000 --- a/doc/source/stdlib/detail/function-decs-clone-0x1db95e71fe1744f9.rst +++ /dev/null @@ -1 +0,0 @@ -Sets individual component value. Verifies that the value is of the correct type. diff --git a/doc/source/stdlib/detail/function-decs-clone-0x1dbb5f71fe1aacac.rst b/doc/source/stdlib/detail/function-decs-clone-0x1dbb5f71fe1aacac.rst deleted file mode 100644 index d26f444737..0000000000 --- a/doc/source/stdlib/detail/function-decs-clone-0x1dbb5f71fe1aacac.rst +++ /dev/null @@ -1 +0,0 @@ -Sets individual component value. Verifies that the value is of the correct type. diff --git a/doc/source/stdlib/detail/function-decs-clone-0x1dcd5c71fe393d93.rst b/doc/source/stdlib/detail/function-decs-clone-0x1dcd5c71fe393d93.rst deleted file mode 100644 index d26f444737..0000000000 --- a/doc/source/stdlib/detail/function-decs-clone-0x1dcd5c71fe393d93.rst +++ /dev/null @@ -1 +0,0 @@ -Sets individual component value. Verifies that the value is of the correct type. diff --git a/doc/source/stdlib/detail/function-decs-clone-0x1dcd6171fe394612.rst b/doc/source/stdlib/detail/function-decs-clone-0x1dcd6171fe394612.rst deleted file mode 100644 index d26f444737..0000000000 --- a/doc/source/stdlib/detail/function-decs-clone-0x1dcd6171fe394612.rst +++ /dev/null @@ -1 +0,0 @@ -Sets individual component value. Verifies that the value is of the correct type. diff --git a/doc/source/stdlib/detail/function-decs-clone-0x1dcd6271fe3947c5.rst b/doc/source/stdlib/detail/function-decs-clone-0x1dcd6271fe3947c5.rst deleted file mode 100644 index d26f444737..0000000000 --- a/doc/source/stdlib/detail/function-decs-clone-0x1dcd6271fe3947c5.rst +++ /dev/null @@ -1 +0,0 @@ -Sets individual component value. Verifies that the value is of the correct type. diff --git a/doc/source/stdlib/detail/function-decs-clone-0x1dcd6871fe3951f7.rst b/doc/source/stdlib/detail/function-decs-clone-0x1dcd6871fe3951f7.rst deleted file mode 100644 index d26f444737..0000000000 --- a/doc/source/stdlib/detail/function-decs-clone-0x1dcd6871fe3951f7.rst +++ /dev/null @@ -1 +0,0 @@ -Sets individual component value. Verifies that the value is of the correct type. diff --git a/doc/source/stdlib/detail/function-decs-clone-0x20d364a9e582581f.rst b/doc/source/stdlib/detail/function-decs-clone-0x20d364a9e582581f.rst deleted file mode 100644 index d26f444737..0000000000 --- a/doc/source/stdlib/detail/function-decs-clone-0x20d364a9e582581f.rst +++ /dev/null @@ -1 +0,0 @@ -Sets individual component value. Verifies that the value is of the correct type. diff --git a/doc/source/stdlib/detail/function-decs-clone-0x349dcd233b80c251.rst b/doc/source/stdlib/detail/function-decs-clone-0x349dcd233b80c251.rst deleted file mode 100644 index d26f444737..0000000000 --- a/doc/source/stdlib/detail/function-decs-clone-0x349dcd233b80c251.rst +++ /dev/null @@ -1 +0,0 @@ -Sets individual component value. Verifies that the value is of the correct type. diff --git a/doc/source/stdlib/detail/function-decs-clone-0x41a10cca1e992495.rst b/doc/source/stdlib/detail/function-decs-clone-0x41a10cca1e992495.rst deleted file mode 100644 index d26f444737..0000000000 --- a/doc/source/stdlib/detail/function-decs-clone-0x41a10cca1e992495.rst +++ /dev/null @@ -1 +0,0 @@ -Sets individual component value. Verifies that the value is of the correct type. diff --git a/doc/source/stdlib/detail/function-decs-clone-0x788da344670d198a.rst b/doc/source/stdlib/detail/function-decs-clone-0x788da344670d198a.rst deleted file mode 100644 index d26f444737..0000000000 --- a/doc/source/stdlib/detail/function-decs-clone-0x788da344670d198a.rst +++ /dev/null @@ -1 +0,0 @@ -Sets individual component value. Verifies that the value is of the correct type. diff --git a/doc/source/stdlib/detail/function-decs-clone-0xa4082e8677636c98.rst b/doc/source/stdlib/detail/function-decs-clone-0xa4082e8677636c98.rst deleted file mode 100644 index d26f444737..0000000000 --- a/doc/source/stdlib/detail/function-decs-clone-0xa4082e8677636c98.rst +++ /dev/null @@ -1 +0,0 @@ -Sets individual component value. Verifies that the value is of the correct type. diff --git a/doc/source/stdlib/detail/function-decs-clone-0xa7185e70223dc7b8.rst b/doc/source/stdlib/detail/function-decs-clone-0xa7185e70223dc7b8.rst deleted file mode 100644 index d26f444737..0000000000 --- a/doc/source/stdlib/detail/function-decs-clone-0xa7185e70223dc7b8.rst +++ /dev/null @@ -1 +0,0 @@ -Sets individual component value. Verifies that the value is of the correct type. diff --git a/doc/source/stdlib/detail/function-decs-clone-0xa7186570223dd39d.rst b/doc/source/stdlib/detail/function-decs-clone-0xa7186570223dd39d.rst deleted file mode 100644 index d26f444737..0000000000 --- a/doc/source/stdlib/detail/function-decs-clone-0xa7186570223dd39d.rst +++ /dev/null @@ -1 +0,0 @@ -Sets individual component value. Verifies that the value is of the correct type. diff --git a/doc/source/stdlib/detail/function-decs-clone-0xa7296370224c436a.rst b/doc/source/stdlib/detail/function-decs-clone-0xa7296370224c436a.rst deleted file mode 100644 index d26f444737..0000000000 --- a/doc/source/stdlib/detail/function-decs-clone-0xa7296370224c436a.rst +++ /dev/null @@ -1 +0,0 @@ -Sets individual component value. Verifies that the value is of the correct type. diff --git a/doc/source/stdlib/detail/function-decs-clone-0xbfe3f520eba80c24.rst b/doc/source/stdlib/detail/function-decs-clone-0xbfe3f520eba80c24.rst deleted file mode 100644 index 6352569459..0000000000 --- a/doc/source/stdlib/detail/function-decs-clone-0xbfe3f520eba80c24.rst +++ /dev/null @@ -1 +0,0 @@ -Clones component value. diff --git a/doc/source/stdlib/detail/function-decs-clone-0xd4b09da6a0ccb5dd.rst b/doc/source/stdlib/detail/function-decs-clone-0xd4b09da6a0ccb5dd.rst deleted file mode 100644 index d26f444737..0000000000 --- a/doc/source/stdlib/detail/function-decs-clone-0xd4b09da6a0ccb5dd.rst +++ /dev/null @@ -1 +0,0 @@ -Sets individual component value. Verifies that the value is of the correct type. diff --git a/doc/source/stdlib/detail/function-decs-clone-0xd7e70b00fdb8ff29.rst b/doc/source/stdlib/detail/function-decs-clone-0xd7e70b00fdb8ff29.rst deleted file mode 100644 index d26f444737..0000000000 --- a/doc/source/stdlib/detail/function-decs-clone-0xd7e70b00fdb8ff29.rst +++ /dev/null @@ -1 +0,0 @@ -Sets individual component value. Verifies that the value is of the correct type. diff --git a/doc/source/stdlib/detail/function-decs-clone-0xda4d9a868ae2e30c.rst b/doc/source/stdlib/detail/function-decs-clone-0xda4d9a868ae2e30c.rst deleted file mode 100644 index d26f444737..0000000000 --- a/doc/source/stdlib/detail/function-decs-clone-0xda4d9a868ae2e30c.rst +++ /dev/null @@ -1 +0,0 @@ -Sets individual component value. Verifies that the value is of the correct type. diff --git a/doc/source/stdlib/detail/function-decs-clone-0xda5b9a868afaad0c.rst b/doc/source/stdlib/detail/function-decs-clone-0xda5b9a868afaad0c.rst deleted file mode 100644 index d26f444737..0000000000 --- a/doc/source/stdlib/detail/function-decs-clone-0xda5b9a868afaad0c.rst +++ /dev/null @@ -1 +0,0 @@ -Sets individual component value. Verifies that the value is of the correct type. diff --git a/doc/source/stdlib/detail/function-decs-clone-0xda5c9a868afc600c.rst b/doc/source/stdlib/detail/function-decs-clone-0xda5c9a868afc600c.rst deleted file mode 100644 index d26f444737..0000000000 --- a/doc/source/stdlib/detail/function-decs-clone-0xda5c9a868afc600c.rst +++ /dev/null @@ -1 +0,0 @@ -Sets individual component value. Verifies that the value is of the correct type. diff --git a/doc/source/stdlib/detail/function-decs-clone-0xda619a868b04df0c.rst b/doc/source/stdlib/detail/function-decs-clone-0xda619a868b04df0c.rst deleted file mode 100644 index d26f444737..0000000000 --- a/doc/source/stdlib/detail/function-decs-clone-0xda619a868b04df0c.rst +++ /dev/null @@ -1 +0,0 @@ -Sets individual component value. Verifies that the value is of the correct type. diff --git a/doc/source/stdlib/detail/function-decs-clone-0xda659a868b0bab0c.rst b/doc/source/stdlib/detail/function-decs-clone-0xda659a868b0bab0c.rst deleted file mode 100644 index d26f444737..0000000000 --- a/doc/source/stdlib/detail/function-decs-clone-0xda659a868b0bab0c.rst +++ /dev/null @@ -1 +0,0 @@ -Sets individual component value. Verifies that the value is of the correct type. diff --git a/doc/source/stdlib/detail/function-decs-clone-0xe027ba7ca9f8c644.rst b/doc/source/stdlib/detail/function-decs-clone-0xe027ba7ca9f8c644.rst deleted file mode 100644 index d26f444737..0000000000 --- a/doc/source/stdlib/detail/function-decs-clone-0xe027ba7ca9f8c644.rst +++ /dev/null @@ -1 +0,0 @@ -Sets individual component value. Verifies that the value is of the correct type. diff --git a/doc/source/stdlib/detail/function-decs-clone-0xe5c6253b1b42b3a8.rst b/doc/source/stdlib/detail/function-decs-clone-0xe5c6253b1b42b3a8.rst deleted file mode 100644 index d26f444737..0000000000 --- a/doc/source/stdlib/detail/function-decs-clone-0xe5c6253b1b42b3a8.rst +++ /dev/null @@ -1 +0,0 @@ -Sets individual component value. Verifies that the value is of the correct type. diff --git a/doc/source/stdlib/detail/function-decs-clone-0xe5c6263b1b42b55b.rst b/doc/source/stdlib/detail/function-decs-clone-0xe5c6263b1b42b55b.rst deleted file mode 100644 index d26f444737..0000000000 --- a/doc/source/stdlib/detail/function-decs-clone-0xe5c6263b1b42b55b.rst +++ /dev/null @@ -1 +0,0 @@ -Sets individual component value. Verifies that the value is of the correct type. diff --git a/doc/source/stdlib/detail/function-decs-clone-0xe5c62b3b1b42bdda.rst b/doc/source/stdlib/detail/function-decs-clone-0xe5c62b3b1b42bdda.rst deleted file mode 100644 index d26f444737..0000000000 --- a/doc/source/stdlib/detail/function-decs-clone-0xe5c62b3b1b42bdda.rst +++ /dev/null @@ -1 +0,0 @@ -Sets individual component value. Verifies that the value is of the correct type. diff --git a/doc/source/stdlib/detail/function-decs-clone-0xe86cc9e309dd48e.rst b/doc/source/stdlib/detail/function-decs-clone-0xe86cc9e309dd48e.rst deleted file mode 100644 index d26f444737..0000000000 --- a/doc/source/stdlib/detail/function-decs-clone-0xe86cc9e309dd48e.rst +++ /dev/null @@ -1 +0,0 @@ -Sets individual component value. Verifies that the value is of the correct type. diff --git a/doc/source/stdlib/detail/function-decs-clone-0xecf896599038d14a.rst b/doc/source/stdlib/detail/function-decs-clone-0xecf896599038d14a.rst deleted file mode 100644 index d26f444737..0000000000 --- a/doc/source/stdlib/detail/function-decs-clone-0xecf896599038d14a.rst +++ /dev/null @@ -1 +0,0 @@ -Sets individual component value. Verifies that the value is of the correct type. diff --git a/doc/source/stdlib/detail/function-decs-clone-0xfefad2f24e1e67e7.rst b/doc/source/stdlib/detail/function-decs-clone-0xfefad2f24e1e67e7.rst deleted file mode 100644 index d26f444737..0000000000 --- a/doc/source/stdlib/detail/function-decs-clone-0xfefad2f24e1e67e7.rst +++ /dev/null @@ -1 +0,0 @@ -Sets individual component value. Verifies that the value is of the correct type. diff --git a/doc/source/stdlib/detail/function-decs-cmp_archetype_hash-0x63a3901f39901281.rst b/doc/source/stdlib/detail/function-decs-cmp_archetype_hash-0x63a3901f39901281.rst deleted file mode 100644 index 64bfeb0f58..0000000000 --- a/doc/source/stdlib/detail/function-decs-cmp_archetype_hash-0x63a3901f39901281.rst +++ /dev/null @@ -1 +0,0 @@ -Computes archetype hash from the component map. diff --git a/doc/source/stdlib/detail/function-decs-commit-0x56c0f2e34142688c.rst b/doc/source/stdlib/detail/function-decs-commit-0x56c0f2e34142688c.rst deleted file mode 100644 index e4b84e5114..0000000000 --- a/doc/source/stdlib/detail/function-decs-commit-0x56c0f2e34142688c.rst +++ /dev/null @@ -1 +0,0 @@ -Finishes all deferred actions. diff --git a/doc/source/stdlib/detail/function-decs-compile_request-0x62166ab8b59b941b.rst b/doc/source/stdlib/detail/function-decs-compile_request-0x62166ab8b59b941b.rst deleted file mode 100644 index 247f0aa96a..0000000000 --- a/doc/source/stdlib/detail/function-decs-compile_request-0x62166ab8b59b941b.rst +++ /dev/null @@ -1 +0,0 @@ -Compiles ECS request, by creating request hash. diff --git a/doc/source/stdlib/detail/function-decs-create_archetype-0x52442f85cfa75fad.rst b/doc/source/stdlib/detail/function-decs-create_archetype-0x52442f85cfa75fad.rst deleted file mode 100644 index e3b0c8b295..0000000000 --- a/doc/source/stdlib/detail/function-decs-create_archetype-0x52442f85cfa75fad.rst +++ /dev/null @@ -1 +0,0 @@ -Creates archetype from the component map. diff --git a/doc/source/stdlib/detail/function-decs-create_entity-0x702d2523114051e.rst b/doc/source/stdlib/detail/function-decs-create_entity-0x702d2523114051e.rst deleted file mode 100644 index 00502d4e11..0000000000 --- a/doc/source/stdlib/detail/function-decs-create_entity-0x702d2523114051e.rst +++ /dev/null @@ -1 +0,0 @@ -Creates new entity in the archetype with specified component map. diff --git a/doc/source/stdlib/detail/function-decs-create_entity-0x9f6f2caf871bb054.rst b/doc/source/stdlib/detail/function-decs-create_entity-0x9f6f2caf871bb054.rst deleted file mode 100644 index 50fa01f29e..0000000000 --- a/doc/source/stdlib/detail/function-decs-create_entity-0x9f6f2caf871bb054.rst +++ /dev/null @@ -1 +0,0 @@ -Creates deferred action to create entity. diff --git a/doc/source/stdlib/detail/function-decs-debug_dump-0x34214a1db896772f.rst b/doc/source/stdlib/detail/function-decs-debug_dump-0x34214a1db896772f.rst deleted file mode 100644 index 1849708026..0000000000 --- a/doc/source/stdlib/detail/function-decs-debug_dump-0x34214a1db896772f.rst +++ /dev/null @@ -1 +0,0 @@ -Prints out state of the ECS system. diff --git a/doc/source/stdlib/detail/function-decs-decs_array-0x5b63895b5aec6577.rst b/doc/source/stdlib/detail/function-decs-decs_array-0x5b63895b5aec6577.rst deleted file mode 100644 index ee775d8fef..0000000000 --- a/doc/source/stdlib/detail/function-decs-decs_array-0x5b63895b5aec6577.rst +++ /dev/null @@ -1 +0,0 @@ -Low level function returns temporary array of component given specific type of component. diff --git a/doc/source/stdlib/detail/function-decs-decs_stage-0x90f35d4e84e42c51.rst b/doc/source/stdlib/detail/function-decs-decs_stage-0x90f35d4e84e42c51.rst deleted file mode 100644 index 8afd72e30e..0000000000 --- a/doc/source/stdlib/detail/function-decs-decs_stage-0x90f35d4e84e42c51.rst +++ /dev/null @@ -1,2 +0,0 @@ -Invokes specific ECS pass. -`commit` is called before and after the invocation. diff --git a/doc/source/stdlib/detail/function-decs-delete_entity-0x7d549980552f07d8.rst b/doc/source/stdlib/detail/function-decs-delete_entity-0x7d549980552f07d8.rst deleted file mode 100644 index ca37c08c2d..0000000000 --- a/doc/source/stdlib/detail/function-decs-delete_entity-0x7d549980552f07d8.rst +++ /dev/null @@ -1 +0,0 @@ -Creates deferred action to delete entity specified by id. diff --git a/doc/source/stdlib/detail/function-decs-describe-0x9af83a632cc6a20.rst b/doc/source/stdlib/detail/function-decs-describe-0x9af83a632cc6a20.rst deleted file mode 100644 index a42f41eaa1..0000000000 --- a/doc/source/stdlib/detail/function-decs-describe-0x9af83a632cc6a20.rst +++ /dev/null @@ -1 +0,0 @@ -Returns textual description of the type. diff --git a/doc/source/stdlib/detail/function-decs-entity_count-0xc4b1acebd4bbcd90.rst b/doc/source/stdlib/detail/function-decs-entity_count-0xc4b1acebd4bbcd90.rst deleted file mode 100644 index b97d586aa1..0000000000 --- a/doc/source/stdlib/detail/function-decs-entity_count-0xc4b1acebd4bbcd90.rst +++ /dev/null @@ -1 +0,0 @@ -Returns the total number of alive entities across all archetypes. diff --git a/doc/source/stdlib/detail/function-decs-finalize-0xbef6320a7d6c64a5.rst b/doc/source/stdlib/detail/function-decs-finalize-0xbef6320a7d6c64a5.rst deleted file mode 100644 index 75bb11b649..0000000000 --- a/doc/source/stdlib/detail/function-decs-finalize-0xbef6320a7d6c64a5.rst +++ /dev/null @@ -1 +0,0 @@ -Deletes component. diff --git a/doc/source/stdlib/detail/function-decs-for_each_archetype-0x2645bc2708d5552.rst b/doc/source/stdlib/detail/function-decs-for_each_archetype-0x2645bc2708d5552.rst deleted file mode 100644 index 7a3bc5dbdd..0000000000 --- a/doc/source/stdlib/detail/function-decs-for_each_archetype-0x2645bc2708d5552.rst +++ /dev/null @@ -1,2 +0,0 @@ -Invokes block for each entity of each archetype that can be processed by the request. -Request is returned by a specified function. diff --git a/doc/source/stdlib/detail/function-decs-for_each_archetype-0x40aa7e65af2a31e3.rst b/doc/source/stdlib/detail/function-decs-for_each_archetype-0x40aa7e65af2a31e3.rst deleted file mode 100644 index f63f5f8461..0000000000 --- a/doc/source/stdlib/detail/function-decs-for_each_archetype-0x40aa7e65af2a31e3.rst +++ /dev/null @@ -1 +0,0 @@ -Invokes block for each entity of each archetype that can be processed by the request. diff --git a/doc/source/stdlib/detail/function-decs-for_each_archetype_find-0x6e991beaa3870fc6.rst b/doc/source/stdlib/detail/function-decs-for_each_archetype_find-0x6e991beaa3870fc6.rst deleted file mode 100644 index faf1c3c8a9..0000000000 --- a/doc/source/stdlib/detail/function-decs-for_each_archetype_find-0x6e991beaa3870fc6.rst +++ /dev/null @@ -1,3 +0,0 @@ -Invokes block for each entity of each archetype that can be processed by the request. -Request is returned by a specified function. -If block returns true, iteration is stopped. diff --git a/doc/source/stdlib/detail/function-decs-for_eid_archetype-0x23898b6350037541.rst b/doc/source/stdlib/detail/function-decs-for_eid_archetype-0x23898b6350037541.rst deleted file mode 100644 index 874010004c..0000000000 --- a/doc/source/stdlib/detail/function-decs-for_eid_archetype-0x23898b6350037541.rst +++ /dev/null @@ -1,2 +0,0 @@ -Invokes block for the specific entity id, given request. -Request is returned by a specified function. diff --git a/doc/source/stdlib/detail/function-decs-get-0x45d3eed41471c8fc.rst b/doc/source/stdlib/detail/function-decs-get-0x45d3eed41471c8fc.rst deleted file mode 100644 index 4aca348856..0000000000 --- a/doc/source/stdlib/detail/function-decs-get-0x45d3eed41471c8fc.rst +++ /dev/null @@ -1,2 +0,0 @@ -Creates temporary array of component given specific name and type of component. -If component is not found - panic. diff --git a/doc/source/stdlib/detail/function-decs-get-0xc6e1dc05d903c021.rst b/doc/source/stdlib/detail/function-decs-get-0xc6e1dc05d903c021.rst deleted file mode 100644 index b8f9e86a96..0000000000 --- a/doc/source/stdlib/detail/function-decs-get-0xc6e1dc05d903c021.rst +++ /dev/null @@ -1,2 +0,0 @@ -Gets component value specified by name and type. -Will panic if name matches but type does not. diff --git a/doc/source/stdlib/detail/function-decs-get_component-0x2eb8dd74c83fa055.rst b/doc/source/stdlib/detail/function-decs-get_component-0x2eb8dd74c83fa055.rst deleted file mode 100644 index 8a492a41c2..0000000000 --- a/doc/source/stdlib/detail/function-decs-get_component-0x2eb8dd74c83fa055.rst +++ /dev/null @@ -1,4 +0,0 @@ -Returns a copy of the named component for the given entity. -If the entity is dead or the component is not found, returns ``defval``. -The type of the component is inferred from the type of ``defval``. -Panics if the component exists but its type does not match. diff --git a/doc/source/stdlib/detail/function-decs-get_default_ro-0xaad1723f9b15a0c1.rst b/doc/source/stdlib/detail/function-decs-get_default_ro-0xaad1723f9b15a0c1.rst deleted file mode 100644 index 534fddaf13..0000000000 --- a/doc/source/stdlib/detail/function-decs-get_default_ro-0xaad1723f9b15a0c1.rst +++ /dev/null @@ -1,2 +0,0 @@ -Returns const iterator of component given specific name and type of component. -If component is not found - iterator will keep returning the specified value. diff --git a/doc/source/stdlib/detail/function-decs-get_eid-0x9b06cfab4cebc8f5.rst b/doc/source/stdlib/detail/function-decs-get_eid-0x9b06cfab4cebc8f5.rst deleted file mode 100644 index 0e66464535..0000000000 --- a/doc/source/stdlib/detail/function-decs-get_eid-0x9b06cfab4cebc8f5.rst +++ /dev/null @@ -1 +0,0 @@ -Gets entity ID component for the specific entity index in the archetype. diff --git a/doc/source/stdlib/detail/function-decs-get_optional-0xd7cbea24d0b56cc5.rst b/doc/source/stdlib/detail/function-decs-get_optional-0xd7cbea24d0b56cc5.rst deleted file mode 100644 index 373723a2ff..0000000000 --- a/doc/source/stdlib/detail/function-decs-get_optional-0xd7cbea24d0b56cc5.rst +++ /dev/null @@ -1,2 +0,0 @@ -Returns const iterator of component given specific name and type of component. -If component is not found - iterator will keep returning default value for the component type. diff --git a/doc/source/stdlib/detail/function-decs-get_ro-0x3fd1af6197ef3e9c.rst b/doc/source/stdlib/detail/function-decs-get_ro-0x3fd1af6197ef3e9c.rst deleted file mode 100644 index 0f146f0f1b..0000000000 --- a/doc/source/stdlib/detail/function-decs-get_ro-0x3fd1af6197ef3e9c.rst +++ /dev/null @@ -1 +0,0 @@ -Returns const temporary array of component given specific name and type of component for regular components. diff --git a/doc/source/stdlib/detail/function-decs-get_ro-0xe2cdc3d4c0b2b4f3.rst b/doc/source/stdlib/detail/function-decs-get_ro-0xe2cdc3d4c0b2b4f3.rst deleted file mode 100644 index 13d3b7c944..0000000000 --- a/doc/source/stdlib/detail/function-decs-get_ro-0xe2cdc3d4c0b2b4f3.rst +++ /dev/null @@ -1 +0,0 @@ -Returns const temporary array of component given specific name and type of component for array components. diff --git a/doc/source/stdlib/detail/function-decs-has-0xb4a17975510e4d77.rst b/doc/source/stdlib/detail/function-decs-has-0xb4a17975510e4d77.rst deleted file mode 100644 index b615fecd63..0000000000 --- a/doc/source/stdlib/detail/function-decs-has-0xb4a17975510e4d77.rst +++ /dev/null @@ -1 +0,0 @@ -Returns true if object has specified subobjec. diff --git a/doc/source/stdlib/detail/function-decs-has-0xea18a96adc6d2849.rst b/doc/source/stdlib/detail/function-decs-has-0xea18a96adc6d2849.rst deleted file mode 100644 index ad2a1d5184..0000000000 --- a/doc/source/stdlib/detail/function-decs-has-0xea18a96adc6d2849.rst +++ /dev/null @@ -1 +0,0 @@ -Returns true if component map has specified component. diff --git a/doc/source/stdlib/detail/function-decs-is_alive-0x4e4495445fb51731.rst b/doc/source/stdlib/detail/function-decs-is_alive-0x4e4495445fb51731.rst deleted file mode 100644 index 136b358b6c..0000000000 --- a/doc/source/stdlib/detail/function-decs-is_alive-0x4e4495445fb51731.rst +++ /dev/null @@ -1,2 +0,0 @@ -Returns true if the entity is alive (exists and has not been deleted). -An entity is alive when its id is within bounds and its generation matches the lookup table. diff --git a/doc/source/stdlib/detail/function-decs-lookup_request-0x84279e477438bb1e.rst b/doc/source/stdlib/detail/function-decs-lookup_request-0x84279e477438bb1e.rst deleted file mode 100644 index da2ba57a24..0000000000 --- a/doc/source/stdlib/detail/function-decs-lookup_request-0x84279e477438bb1e.rst +++ /dev/null @@ -1 +0,0 @@ -Looks up ECS request in the request cache. diff --git a/doc/source/stdlib/detail/function-decs-new_entity_id-0x1b1386810f45dffe.rst b/doc/source/stdlib/detail/function-decs-new_entity_id-0x1b1386810f45dffe.rst deleted file mode 100644 index f9342208d1..0000000000 --- a/doc/source/stdlib/detail/function-decs-new_entity_id-0x1b1386810f45dffe.rst +++ /dev/null @@ -1 +0,0 @@ -Creates new entity ID. diff --git a/doc/source/stdlib/detail/function-decs-normalize_file_name-0xb499aa061042d639.rst b/doc/source/stdlib/detail/function-decs-normalize_file_name-0xb499aa061042d639.rst deleted file mode 100644 index 21319e1478..0000000000 --- a/doc/source/stdlib/detail/function-decs-normalize_file_name-0xb499aa061042d639.rst +++ /dev/null @@ -1,3 +0,0 @@ -Strips directory path, keeping only filename and extension. -This ensures the same canonical name regardless of working directory, -which is critical for AOT hash stability. diff --git a/doc/source/stdlib/detail/function-decs-register_decs_stage_call-0xe659153d58c1900a.rst b/doc/source/stdlib/detail/function-decs-register_decs_stage_call-0xe659153d58c1900a.rst deleted file mode 100644 index c8e53d3b89..0000000000 --- a/doc/source/stdlib/detail/function-decs-register_decs_stage_call-0xe659153d58c1900a.rst +++ /dev/null @@ -1 +0,0 @@ -Registration of a single pass callback. This is a low-level function, used by decs_boost macros. diff --git a/doc/source/stdlib/detail/function-decs-remove-0xff18c25d8c994ce2.rst b/doc/source/stdlib/detail/function-decs-remove-0xff18c25d8c994ce2.rst deleted file mode 100644 index a7dd1388db..0000000000 --- a/doc/source/stdlib/detail/function-decs-remove-0xff18c25d8c994ce2.rst +++ /dev/null @@ -1 +0,0 @@ -Removes specified value from the component map. diff --git a/doc/source/stdlib/detail/function-decs-remove_entity-0x8ccc9835622cf057.rst b/doc/source/stdlib/detail/function-decs-remove_entity-0x8ccc9835622cf057.rst deleted file mode 100644 index 0df6a4109c..0000000000 --- a/doc/source/stdlib/detail/function-decs-remove_entity-0x8ccc9835622cf057.rst +++ /dev/null @@ -1 +0,0 @@ -Removes entity at specified index from the archetype. diff --git a/doc/source/stdlib/detail/function-decs-restart-0xd25bfafbb3c7d147.rst b/doc/source/stdlib/detail/function-decs-restart-0xd25bfafbb3c7d147.rst deleted file mode 100644 index c03f8363e8..0000000000 --- a/doc/source/stdlib/detail/function-decs-restart-0xd25bfafbb3c7d147.rst +++ /dev/null @@ -1 +0,0 @@ -Restarts ECS by erasing all deferred actions and entire state. diff --git a/doc/source/stdlib/detail/function-decs-serialize-0x6bc50a2b4e05ec4.rst b/doc/source/stdlib/detail/function-decs-serialize-0x6bc50a2b4e05ec4.rst deleted file mode 100644 index e9856db9a3..0000000000 --- a/doc/source/stdlib/detail/function-decs-serialize-0x6bc50a2b4e05ec4.rst +++ /dev/null @@ -1 +0,0 @@ -Serializes component value. diff --git a/doc/source/stdlib/detail/function-decs-set-0x39c52aa60b3bca98.rst b/doc/source/stdlib/detail/function-decs-set-0x39c52aa60b3bca98.rst deleted file mode 100644 index d4f210d973..0000000000 --- a/doc/source/stdlib/detail/function-decs-set-0x39c52aa60b3bca98.rst +++ /dev/null @@ -1,2 +0,0 @@ -Set component value specified by name and type. -If value already exists, it is overwritten. If already existing value type is not the same - panic. diff --git a/doc/source/stdlib/detail/function-decs-set-0x9d987ca149b12dc5.rst b/doc/source/stdlib/detail/function-decs-set-0x9d987ca149b12dc5.rst deleted file mode 100644 index d26f444737..0000000000 --- a/doc/source/stdlib/detail/function-decs-set-0x9d987ca149b12dc5.rst +++ /dev/null @@ -1 +0,0 @@ -Sets individual component value. Verifies that the value is of the correct type. diff --git a/doc/source/stdlib/detail/function-decs-update_entity-0x949be0465798d39b.rst b/doc/source/stdlib/detail/function-decs-update_entity-0x949be0465798d39b.rst deleted file mode 100644 index 44ca29a1c4..0000000000 --- a/doc/source/stdlib/detail/function-decs-update_entity-0x949be0465798d39b.rst +++ /dev/null @@ -1 +0,0 @@ -Creates deferred action to update entity specified by id. diff --git a/doc/source/stdlib/detail/function-decs-verify_request-0xecdef977c6635de4.rst b/doc/source/stdlib/detail/function-decs-verify_request-0xecdef977c6635de4.rst deleted file mode 100644 index 936c1cc3e0..0000000000 --- a/doc/source/stdlib/detail/function-decs-verify_request-0xecdef977c6635de4.rst +++ /dev/null @@ -1 +0,0 @@ -Verifies ECS request. Returns pair of boolean (true for OK) and error message. diff --git a/doc/source/stdlib/detail/function-decs-with_archetype-0xd00c5e0d7212dad7.rst b/doc/source/stdlib/detail/function-decs-with_archetype-0xd00c5e0d7212dad7.rst deleted file mode 100644 index 44f766d62c..0000000000 --- a/doc/source/stdlib/detail/function-decs-with_archetype-0xd00c5e0d7212dad7.rst +++ /dev/null @@ -1 +0,0 @@ -Invokes block for the archetype with specified hash. diff --git a/doc/source/stdlib/detail/function-defer-defer-0x9c9a418b00c84a0a.rst b/doc/source/stdlib/detail/function-defer-defer-0x9c9a418b00c84a0a.rst deleted file mode 100644 index f94a3a25d3..0000000000 --- a/doc/source/stdlib/detail/function-defer-defer-0x9c9a418b00c84a0a.rst +++ /dev/null @@ -1,7 +0,0 @@ -defer a block of code. For example:: - - var a = fopen("filename.txt","r") - defer <| - fclose(a) - -Will close the file when 'a' is out of scope. diff --git a/doc/source/stdlib/detail/function-defer-nada-0x722c50080f0f2faf.rst b/doc/source/stdlib/detail/function-defer-nada-0x722c50080f0f2faf.rst deleted file mode 100644 index 5e87f04bbe..0000000000 --- a/doc/source/stdlib/detail/function-defer-nada-0x722c50080f0f2faf.rst +++ /dev/null @@ -1 +0,0 @@ -helper function which does nothing and will be optimized out diff --git a/doc/source/stdlib/detail/function-dynamic_cast_rtti-dynamic_type_cast-0x481c060aca6ae89a.rst b/doc/source/stdlib/detail/function-dynamic_cast_rtti-dynamic_type_cast-0x481c060aca6ae89a.rst deleted file mode 100644 index 6c815562ca..0000000000 --- a/doc/source/stdlib/detail/function-dynamic_cast_rtti-dynamic_type_cast-0x481c060aca6ae89a.rst +++ /dev/null @@ -1 +0,0 @@ -Casts a class instance to the target type using RTTI, returns null if the cast fails. diff --git a/doc/source/stdlib/detail/function-dynamic_cast_rtti-force_dynamic_type_cast-0xa519cc5bb1f277b5.rst b/doc/source/stdlib/detail/function-dynamic_cast_rtti-force_dynamic_type_cast-0xa519cc5bb1f277b5.rst deleted file mode 100644 index 3c92e4afe6..0000000000 --- a/doc/source/stdlib/detail/function-dynamic_cast_rtti-force_dynamic_type_cast-0xa519cc5bb1f277b5.rst +++ /dev/null @@ -1 +0,0 @@ -Casts a class instance to the target type using RTTI, panics if the cast fails. diff --git a/doc/source/stdlib/detail/function-dynamic_cast_rtti-is_instance_of-0xc5fcab99b781e6a6.rst b/doc/source/stdlib/detail/function-dynamic_cast_rtti-is_instance_of-0xc5fcab99b781e6a6.rst deleted file mode 100644 index f9ca6cc501..0000000000 --- a/doc/source/stdlib/detail/function-dynamic_cast_rtti-is_instance_of-0xc5fcab99b781e6a6.rst +++ /dev/null @@ -1 +0,0 @@ -Returns true if the class instance is an instance of the specified class using RTTI. diff --git a/doc/source/stdlib/detail/function-enum_trait-EnumFromStringConstruction-apply-0xa5476e100c435a35.rst b/doc/source/stdlib/detail/function-enum_trait-EnumFromStringConstruction-apply-0xa5476e100c435a35.rst deleted file mode 100644 index 68b3726407..0000000000 --- a/doc/source/stdlib/detail/function-enum_trait-EnumFromStringConstruction-apply-0xa5476e100c435a35.rst +++ /dev/null @@ -1 +0,0 @@ -implements enum string constructor diff --git a/doc/source/stdlib/detail/function-enum_trait-TypeInfoGetEnumLength-getAstChange-0xe9a8efea1a93ab99.rst b/doc/source/stdlib/detail/function-enum_trait-TypeInfoGetEnumLength-getAstChange-0xe9a8efea1a93ab99.rst deleted file mode 100644 index 2d825c9732..0000000000 --- a/doc/source/stdlib/detail/function-enum_trait-TypeInfoGetEnumLength-getAstChange-0xe9a8efea1a93ab99.rst +++ /dev/null @@ -1 +0,0 @@ -returns number of enum values diff --git a/doc/source/stdlib/detail/function-enum_trait-TypeInfoGetEnumNames-getAstChange-0xe9a8efea1a93ab99.rst b/doc/source/stdlib/detail/function-enum_trait-TypeInfoGetEnumNames-getAstChange-0xe9a8efea1a93ab99.rst deleted file mode 100644 index 836071ef8d..0000000000 --- a/doc/source/stdlib/detail/function-enum_trait-TypeInfoGetEnumNames-getAstChange-0xe9a8efea1a93ab99.rst +++ /dev/null @@ -1 +0,0 @@ -returns array of enum value names diff --git a/doc/source/stdlib/detail/function-enum_trait-each-0xfe83f9b247ca1480.rst b/doc/source/stdlib/detail/function-enum_trait-each-0xfe83f9b247ca1480.rst deleted file mode 100644 index 1cf86280c6..0000000000 --- a/doc/source/stdlib/detail/function-enum_trait-each-0xfe83f9b247ca1480.rst +++ /dev/null @@ -1 +0,0 @@ -Returns an iterator over all values of the given enumeration type. diff --git a/doc/source/stdlib/detail/function-enum_trait-enum_to_table-0x3819680634095fe0.rst b/doc/source/stdlib/detail/function-enum_trait-enum_to_table-0x3819680634095fe0.rst deleted file mode 100644 index 5e4b316ca0..0000000000 --- a/doc/source/stdlib/detail/function-enum_trait-enum_to_table-0x3819680634095fe0.rst +++ /dev/null @@ -1,2 +0,0 @@ -converts enum type to a table of name => value pairs - usage: let t = enum_to_table(type) diff --git a/doc/source/stdlib/detail/function-enum_trait-string-0x8911e36fcf41302f.rst b/doc/source/stdlib/detail/function-enum_trait-string-0x8911e36fcf41302f.rst deleted file mode 100644 index 0d7da22414..0000000000 --- a/doc/source/stdlib/detail/function-enum_trait-string-0x8911e36fcf41302f.rst +++ /dev/null @@ -1,2 +0,0 @@ -converts enum value to string - usage: let s = string(EnumValue) diff --git a/doc/source/stdlib/detail/function-enum_trait-to_enum-0xa451b3120e6dfcc2.rst b/doc/source/stdlib/detail/function-enum_trait-to_enum-0xa451b3120e6dfcc2.rst deleted file mode 100644 index 2459e5b417..0000000000 --- a/doc/source/stdlib/detail/function-enum_trait-to_enum-0xa451b3120e6dfcc2.rst +++ /dev/null @@ -1,2 +0,0 @@ -converts string to enum value, panics if not found - usage: let e = to_enum(type,"EnumValueName") diff --git a/doc/source/stdlib/detail/function-enum_trait-to_enum-0xefea758889cf90ec.rst b/doc/source/stdlib/detail/function-enum_trait-to_enum-0xefea758889cf90ec.rst deleted file mode 100644 index fc878d0abd..0000000000 --- a/doc/source/stdlib/detail/function-enum_trait-to_enum-0xefea758889cf90ec.rst +++ /dev/null @@ -1,2 +0,0 @@ -converts string to enum value, returns defaultValue if not found - usage: let e = to_enum(type,"EnumValueName", EnumType.DefaultValue) diff --git a/doc/source/stdlib/detail/function-faker-Faker-0x31196536a28fad9c.rst b/doc/source/stdlib/detail/function-faker-Faker-0x31196536a28fad9c.rst deleted file mode 100644 index 85029b6877..0000000000 --- a/doc/source/stdlib/detail/function-faker-Faker-0x31196536a28fad9c.rst +++ /dev/null @@ -1 +0,0 @@ -Constructs a Faker instance with the given random number generator. diff --git a/doc/source/stdlib/detail/function-faker-any_char-0x627637dcd946d9e2.rst b/doc/source/stdlib/detail/function-faker-any_char-0x627637dcd946d9e2.rst deleted file mode 100644 index e91a4ecaa1..0000000000 --- a/doc/source/stdlib/detail/function-faker-any_char-0x627637dcd946d9e2.rst +++ /dev/null @@ -1 +0,0 @@ -Generates random char. (1 to 255 range) diff --git a/doc/source/stdlib/detail/function-faker-any_enum-0x81a2807b6960cd73.rst b/doc/source/stdlib/detail/function-faker-any_enum-0x81a2807b6960cd73.rst deleted file mode 100644 index d2debd0a72..0000000000 --- a/doc/source/stdlib/detail/function-faker-any_enum-0x81a2807b6960cd73.rst +++ /dev/null @@ -1 +0,0 @@ -Generates random enumeration value. diff --git a/doc/source/stdlib/detail/function-faker-any_file_name-0x60bb544cae43098f.rst b/doc/source/stdlib/detail/function-faker-any_file_name-0x60bb544cae43098f.rst deleted file mode 100644 index 31c52e9141..0000000000 --- a/doc/source/stdlib/detail/function-faker-any_file_name-0x60bb544cae43098f.rst +++ /dev/null @@ -1 +0,0 @@ -Generates random file name. diff --git a/doc/source/stdlib/detail/function-faker-any_float-0x8427239296e5924f.rst b/doc/source/stdlib/detail/function-faker-any_float-0x8427239296e5924f.rst deleted file mode 100644 index 9574563783..0000000000 --- a/doc/source/stdlib/detail/function-faker-any_float-0x8427239296e5924f.rst +++ /dev/null @@ -1 +0,0 @@ -Generates random float string. diff --git a/doc/source/stdlib/detail/function-faker-any_hex-0xca16daebd6770f30.rst b/doc/source/stdlib/detail/function-faker-any_hex-0xca16daebd6770f30.rst deleted file mode 100644 index 587a42f2b3..0000000000 --- a/doc/source/stdlib/detail/function-faker-any_hex-0xca16daebd6770f30.rst +++ /dev/null @@ -1 +0,0 @@ -Generates random integer hex string. diff --git a/doc/source/stdlib/detail/function-faker-any_int-0xa06141d8cf5eba41.rst b/doc/source/stdlib/detail/function-faker-any_int-0xa06141d8cf5eba41.rst deleted file mode 100644 index dea863dbed..0000000000 --- a/doc/source/stdlib/detail/function-faker-any_int-0xa06141d8cf5eba41.rst +++ /dev/null @@ -1 +0,0 @@ -Generates random integer string. diff --git a/doc/source/stdlib/detail/function-faker-any_set-0x33c34dadd41848e7.rst b/doc/source/stdlib/detail/function-faker-any_set-0x33c34dadd41848e7.rst deleted file mode 100644 index 8f9b7278f4..0000000000 --- a/doc/source/stdlib/detail/function-faker-any_set-0x33c34dadd41848e7.rst +++ /dev/null @@ -1 +0,0 @@ -Generates random set (uint[8]) diff --git a/doc/source/stdlib/detail/function-faker-any_string-0x6001382334afffd7.rst b/doc/source/stdlib/detail/function-faker-any_string-0x6001382334afffd7.rst deleted file mode 100644 index 25f84be4ca..0000000000 --- a/doc/source/stdlib/detail/function-faker-any_string-0x6001382334afffd7.rst +++ /dev/null @@ -1 +0,0 @@ -Generates a string of random characters. The string is anywhere between 0 and regex::re_gen_get_rep_limit() characters long. diff --git a/doc/source/stdlib/detail/function-faker-any_uint-0x76520ebf8df45c3b.rst b/doc/source/stdlib/detail/function-faker-any_uint-0x76520ebf8df45c3b.rst deleted file mode 100644 index 1d8cb50419..0000000000 --- a/doc/source/stdlib/detail/function-faker-any_uint-0x76520ebf8df45c3b.rst +++ /dev/null @@ -1 +0,0 @@ -Generates random unsigned integer string. diff --git a/doc/source/stdlib/detail/function-faker-date-0xb96df46647e097a8.rst b/doc/source/stdlib/detail/function-faker-date-0xb96df46647e097a8.rst deleted file mode 100644 index 5ffe5d6d99..0000000000 --- a/doc/source/stdlib/detail/function-faker-date-0xb96df46647e097a8.rst +++ /dev/null @@ -1 +0,0 @@ -Generates random date string. diff --git a/doc/source/stdlib/detail/function-faker-day-0x4e9c7419d587f385.rst b/doc/source/stdlib/detail/function-faker-day-0x4e9c7419d587f385.rst deleted file mode 100644 index 207af7a7e9..0000000000 --- a/doc/source/stdlib/detail/function-faker-day-0x4e9c7419d587f385.rst +++ /dev/null @@ -1 +0,0 @@ -Generates random day string. diff --git a/doc/source/stdlib/detail/function-faker-is_leap_year-0xc8eb7cb0184d31c1.rst b/doc/source/stdlib/detail/function-faker-is_leap_year-0xc8eb7cb0184d31c1.rst deleted file mode 100644 index a6972cd990..0000000000 --- a/doc/source/stdlib/detail/function-faker-is_leap_year-0xc8eb7cb0184d31c1.rst +++ /dev/null @@ -1 +0,0 @@ -Returns true if year is leap year. diff --git a/doc/source/stdlib/detail/function-faker-long_string-0x7deb9e65b5d9889f.rst b/doc/source/stdlib/detail/function-faker-long_string-0x7deb9e65b5d9889f.rst deleted file mode 100644 index 92a7c86903..0000000000 --- a/doc/source/stdlib/detail/function-faker-long_string-0x7deb9e65b5d9889f.rst +++ /dev/null @@ -1 +0,0 @@ -Generates a long string of random characters. The string is anywhere between 0 and faker.max_long_string characters long. diff --git a/doc/source/stdlib/detail/function-faker-month-0x9bef4598018bbe65.rst b/doc/source/stdlib/detail/function-faker-month-0x9bef4598018bbe65.rst deleted file mode 100644 index 0aa67a78e0..0000000000 --- a/doc/source/stdlib/detail/function-faker-month-0x9bef4598018bbe65.rst +++ /dev/null @@ -1 +0,0 @@ -Generates random month string. diff --git a/doc/source/stdlib/detail/function-faker-number-0x930b1093819b74ee.rst b/doc/source/stdlib/detail/function-faker-number-0x930b1093819b74ee.rst deleted file mode 100644 index f842f782d7..0000000000 --- a/doc/source/stdlib/detail/function-faker-number-0x930b1093819b74ee.rst +++ /dev/null @@ -1 +0,0 @@ -Generates random number string. diff --git a/doc/source/stdlib/detail/function-faker-positive_int-0x4a47cfaf3fcaacf6.rst b/doc/source/stdlib/detail/function-faker-positive_int-0x4a47cfaf3fcaacf6.rst deleted file mode 100644 index 9161d10a2c..0000000000 --- a/doc/source/stdlib/detail/function-faker-positive_int-0x4a47cfaf3fcaacf6.rst +++ /dev/null @@ -1 +0,0 @@ -Generates random positive integer string. diff --git a/doc/source/stdlib/detail/function-faker-random_double-0x16d2f07ed711955a.rst b/doc/source/stdlib/detail/function-faker-random_double-0x16d2f07ed711955a.rst deleted file mode 100644 index 8cebea9846..0000000000 --- a/doc/source/stdlib/detail/function-faker-random_double-0x16d2f07ed711955a.rst +++ /dev/null @@ -1 +0,0 @@ -Generates random double. diff --git a/doc/source/stdlib/detail/function-faker-random_float-0x13b7288d12b17143.rst b/doc/source/stdlib/detail/function-faker-random_float-0x13b7288d12b17143.rst deleted file mode 100644 index c8a7485ff2..0000000000 --- a/doc/source/stdlib/detail/function-faker-random_float-0x13b7288d12b17143.rst +++ /dev/null @@ -1 +0,0 @@ -Generates random float. diff --git a/doc/source/stdlib/detail/function-faker-random_float2-0x7239d44c831051d5.rst b/doc/source/stdlib/detail/function-faker-random_float2-0x7239d44c831051d5.rst deleted file mode 100644 index 396752732f..0000000000 --- a/doc/source/stdlib/detail/function-faker-random_float2-0x7239d44c831051d5.rst +++ /dev/null @@ -1 +0,0 @@ -Generates random float2. diff --git a/doc/source/stdlib/detail/function-faker-random_float3-0x99c9ceb0582d35c2.rst b/doc/source/stdlib/detail/function-faker-random_float3-0x99c9ceb0582d35c2.rst deleted file mode 100644 index 9687a7cda6..0000000000 --- a/doc/source/stdlib/detail/function-faker-random_float3-0x99c9ceb0582d35c2.rst +++ /dev/null @@ -1 +0,0 @@ -Generates random float3. diff --git a/doc/source/stdlib/detail/function-faker-random_float3x3-0x2a18156cc232fcfd.rst b/doc/source/stdlib/detail/function-faker-random_float3x3-0x2a18156cc232fcfd.rst deleted file mode 100644 index 99978dc4bf..0000000000 --- a/doc/source/stdlib/detail/function-faker-random_float3x3-0x2a18156cc232fcfd.rst +++ /dev/null @@ -1 +0,0 @@ -Generates random float3x3. diff --git a/doc/source/stdlib/detail/function-faker-random_float3x4-0x803eef40cecdae18.rst b/doc/source/stdlib/detail/function-faker-random_float3x4-0x803eef40cecdae18.rst deleted file mode 100644 index e2780ffb18..0000000000 --- a/doc/source/stdlib/detail/function-faker-random_float3x4-0x803eef40cecdae18.rst +++ /dev/null @@ -1 +0,0 @@ -Generates random float3x4. diff --git a/doc/source/stdlib/detail/function-faker-random_float4-0x126a921c0b42d443.rst b/doc/source/stdlib/detail/function-faker-random_float4-0x126a921c0b42d443.rst deleted file mode 100644 index ee2b9ba835..0000000000 --- a/doc/source/stdlib/detail/function-faker-random_float4-0x126a921c0b42d443.rst +++ /dev/null @@ -1 +0,0 @@ -Generates random float4. diff --git a/doc/source/stdlib/detail/function-faker-random_float4x4-0x4785382da91b6867.rst b/doc/source/stdlib/detail/function-faker-random_float4x4-0x4785382da91b6867.rst deleted file mode 100644 index f87812b13a..0000000000 --- a/doc/source/stdlib/detail/function-faker-random_float4x4-0x4785382da91b6867.rst +++ /dev/null @@ -1 +0,0 @@ -Generates random float4x4. diff --git a/doc/source/stdlib/detail/function-faker-random_int-0xf5df9aebbba19fbe.rst b/doc/source/stdlib/detail/function-faker-random_int-0xf5df9aebbba19fbe.rst deleted file mode 100644 index df19b90405..0000000000 --- a/doc/source/stdlib/detail/function-faker-random_int-0xf5df9aebbba19fbe.rst +++ /dev/null @@ -1 +0,0 @@ -Generates random integer. diff --git a/doc/source/stdlib/detail/function-faker-random_int16-0x521af1e945ef7b39.rst b/doc/source/stdlib/detail/function-faker-random_int16-0x521af1e945ef7b39.rst deleted file mode 100644 index 268eb4e4cb..0000000000 --- a/doc/source/stdlib/detail/function-faker-random_int16-0x521af1e945ef7b39.rst +++ /dev/null @@ -1 +0,0 @@ -Generates random int16. diff --git a/doc/source/stdlib/detail/function-faker-random_int2-0x6c91011cacc07f34.rst b/doc/source/stdlib/detail/function-faker-random_int2-0x6c91011cacc07f34.rst deleted file mode 100644 index 94a51b0bbe..0000000000 --- a/doc/source/stdlib/detail/function-faker-random_int2-0x6c91011cacc07f34.rst +++ /dev/null @@ -1 +0,0 @@ -Generates random int2. diff --git a/doc/source/stdlib/detail/function-faker-random_int3-0x1ad884b8a9e5d047.rst b/doc/source/stdlib/detail/function-faker-random_int3-0x1ad884b8a9e5d047.rst deleted file mode 100644 index 80aef12700..0000000000 --- a/doc/source/stdlib/detail/function-faker-random_int3-0x1ad884b8a9e5d047.rst +++ /dev/null @@ -1 +0,0 @@ -Generates random int3. diff --git a/doc/source/stdlib/detail/function-faker-random_int4-0x79729e94fd19ed2e.rst b/doc/source/stdlib/detail/function-faker-random_int4-0x79729e94fd19ed2e.rst deleted file mode 100644 index 947f5fbb6d..0000000000 --- a/doc/source/stdlib/detail/function-faker-random_int4-0x79729e94fd19ed2e.rst +++ /dev/null @@ -1 +0,0 @@ -Generates random int4. diff --git a/doc/source/stdlib/detail/function-faker-random_int64-0x8f5ed621b43af162.rst b/doc/source/stdlib/detail/function-faker-random_int64-0x8f5ed621b43af162.rst deleted file mode 100644 index af700d6559..0000000000 --- a/doc/source/stdlib/detail/function-faker-random_int64-0x8f5ed621b43af162.rst +++ /dev/null @@ -1 +0,0 @@ -Generates random int64 diff --git a/doc/source/stdlib/detail/function-faker-random_int8-0x39e8b50c2c2c4a92.rst b/doc/source/stdlib/detail/function-faker-random_int8-0x39e8b50c2c2c4a92.rst deleted file mode 100644 index 76d2281ed5..0000000000 --- a/doc/source/stdlib/detail/function-faker-random_int8-0x39e8b50c2c2c4a92.rst +++ /dev/null @@ -1 +0,0 @@ -Generates random int8. diff --git a/doc/source/stdlib/detail/function-faker-random_range-0xc2865b04e7fdbb1a.rst b/doc/source/stdlib/detail/function-faker-random_range-0xc2865b04e7fdbb1a.rst deleted file mode 100644 index 875372c6e8..0000000000 --- a/doc/source/stdlib/detail/function-faker-random_range-0xc2865b04e7fdbb1a.rst +++ /dev/null @@ -1 +0,0 @@ -Generates random range. diff --git a/doc/source/stdlib/detail/function-faker-random_range64-0x1796fc8cca7e86fe.rst b/doc/source/stdlib/detail/function-faker-random_range64-0x1796fc8cca7e86fe.rst deleted file mode 100644 index 20d9abeb88..0000000000 --- a/doc/source/stdlib/detail/function-faker-random_range64-0x1796fc8cca7e86fe.rst +++ /dev/null @@ -1 +0,0 @@ -Generates random range64. diff --git a/doc/source/stdlib/detail/function-faker-random_uint-0x91d2769de9948841.rst b/doc/source/stdlib/detail/function-faker-random_uint-0x91d2769de9948841.rst deleted file mode 100644 index 766cba1683..0000000000 --- a/doc/source/stdlib/detail/function-faker-random_uint-0x91d2769de9948841.rst +++ /dev/null @@ -1 +0,0 @@ -Generates random unsigned integer. diff --git a/doc/source/stdlib/detail/function-faker-random_uint16-0x1d70c82c138ac5fb.rst b/doc/source/stdlib/detail/function-faker-random_uint16-0x1d70c82c138ac5fb.rst deleted file mode 100644 index a4ca5aeac6..0000000000 --- a/doc/source/stdlib/detail/function-faker-random_uint16-0x1d70c82c138ac5fb.rst +++ /dev/null @@ -1 +0,0 @@ -Generates random uint16. diff --git a/doc/source/stdlib/detail/function-faker-random_uint2-0xeb74d0e1f061c32d.rst b/doc/source/stdlib/detail/function-faker-random_uint2-0xeb74d0e1f061c32d.rst deleted file mode 100644 index 2ba9249d03..0000000000 --- a/doc/source/stdlib/detail/function-faker-random_uint2-0xeb74d0e1f061c32d.rst +++ /dev/null @@ -1 +0,0 @@ -Generates random uint2. diff --git a/doc/source/stdlib/detail/function-faker-random_uint3-0x87db938855304c2d.rst b/doc/source/stdlib/detail/function-faker-random_uint3-0x87db938855304c2d.rst deleted file mode 100644 index bb12ca72ac..0000000000 --- a/doc/source/stdlib/detail/function-faker-random_uint3-0x87db938855304c2d.rst +++ /dev/null @@ -1 +0,0 @@ -Generates random uint3. diff --git a/doc/source/stdlib/detail/function-faker-random_uint4-0x818f4c4be4c36d2d.rst b/doc/source/stdlib/detail/function-faker-random_uint4-0x818f4c4be4c36d2d.rst deleted file mode 100644 index 6cc72735b9..0000000000 --- a/doc/source/stdlib/detail/function-faker-random_uint4-0x818f4c4be4c36d2d.rst +++ /dev/null @@ -1 +0,0 @@ -Generates random uint4. diff --git a/doc/source/stdlib/detail/function-faker-random_uint64-0xb7e7144d25073241.rst b/doc/source/stdlib/detail/function-faker-random_uint64-0xb7e7144d25073241.rst deleted file mode 100644 index 50e1d73d7a..0000000000 --- a/doc/source/stdlib/detail/function-faker-random_uint64-0xb7e7144d25073241.rst +++ /dev/null @@ -1 +0,0 @@ -Generates random uint64 diff --git a/doc/source/stdlib/detail/function-faker-random_uint8-0xbce3411e0902d92d.rst b/doc/source/stdlib/detail/function-faker-random_uint8-0xbce3411e0902d92d.rst deleted file mode 100644 index 8f60628eba..0000000000 --- a/doc/source/stdlib/detail/function-faker-random_uint8-0xbce3411e0902d92d.rst +++ /dev/null @@ -1 +0,0 @@ -Generates random uint8. diff --git a/doc/source/stdlib/detail/function-faker-random_urange-0xf64f06343a06e219.rst b/doc/source/stdlib/detail/function-faker-random_urange-0xf64f06343a06e219.rst deleted file mode 100644 index 9823bea4d7..0000000000 --- a/doc/source/stdlib/detail/function-faker-random_urange-0xf64f06343a06e219.rst +++ /dev/null @@ -1 +0,0 @@ -Generates random urange. diff --git a/doc/source/stdlib/detail/function-faker-random_urange64-0xe10fdd824e55829.rst b/doc/source/stdlib/detail/function-faker-random_urange64-0xe10fdd824e55829.rst deleted file mode 100644 index 7b92e19e07..0000000000 --- a/doc/source/stdlib/detail/function-faker-random_urange64-0xe10fdd824e55829.rst +++ /dev/null @@ -1 +0,0 @@ -Generates random urange64. diff --git a/doc/source/stdlib/detail/function-faker-week_day-0x794bac2bf1664bd2.rst b/doc/source/stdlib/detail/function-faker-week_day-0x794bac2bf1664bd2.rst deleted file mode 100644 index 90f59c96f6..0000000000 --- a/doc/source/stdlib/detail/function-faker-week_day-0x794bac2bf1664bd2.rst +++ /dev/null @@ -1 +0,0 @@ -Returns week day for given date. diff --git a/doc/source/stdlib/detail/function-faker-week_day-0xdc9fc8038a39b0ab.rst b/doc/source/stdlib/detail/function-faker-week_day-0xdc9fc8038a39b0ab.rst deleted file mode 100644 index 90f59c96f6..0000000000 --- a/doc/source/stdlib/detail/function-faker-week_day-0xdc9fc8038a39b0ab.rst +++ /dev/null @@ -1 +0,0 @@ -Returns week day for given date. diff --git a/doc/source/stdlib/detail/function-functional-all-0x7584c5f7aab4e780.rst b/doc/source/stdlib/detail/function-functional-all-0x7584c5f7aab4e780.rst deleted file mode 100644 index 8f71f2f6c2..0000000000 --- a/doc/source/stdlib/detail/function-functional-all-0x7584c5f7aab4e780.rst +++ /dev/null @@ -1 +0,0 @@ -iterates over `it` and yields true if all elements are true diff --git a/doc/source/stdlib/detail/function-functional-all-0x8e3cded98c2cc5aa.rst b/doc/source/stdlib/detail/function-functional-all-0x8e3cded98c2cc5aa.rst deleted file mode 100644 index 8f71f2f6c2..0000000000 --- a/doc/source/stdlib/detail/function-functional-all-0x8e3cded98c2cc5aa.rst +++ /dev/null @@ -1 +0,0 @@ -iterates over `it` and yields true if all elements are true diff --git a/doc/source/stdlib/detail/function-functional-any-0x1809111104139153.rst b/doc/source/stdlib/detail/function-functional-any-0x1809111104139153.rst deleted file mode 100644 index 9750e463f1..0000000000 --- a/doc/source/stdlib/detail/function-functional-any-0x1809111104139153.rst +++ /dev/null @@ -1 +0,0 @@ -iterates over `it` and yields true if any element is true diff --git a/doc/source/stdlib/detail/function-functional-any-0x50d1a2a9baf5e213.rst b/doc/source/stdlib/detail/function-functional-any-0x50d1a2a9baf5e213.rst deleted file mode 100644 index 9750e463f1..0000000000 --- a/doc/source/stdlib/detail/function-functional-any-0x50d1a2a9baf5e213.rst +++ /dev/null @@ -1 +0,0 @@ -iterates over `it` and yields true if any element is true diff --git a/doc/source/stdlib/detail/function-functional-chain-0x3396a30132fde35d.rst b/doc/source/stdlib/detail/function-functional-chain-0x3396a30132fde35d.rst deleted file mode 100644 index 9be59dc774..0000000000 --- a/doc/source/stdlib/detail/function-functional-chain-0x3396a30132fde35d.rst +++ /dev/null @@ -1 +0,0 @@ -yields all elements of `a`, then all elements of `b` diff --git a/doc/source/stdlib/detail/function-functional-cycle-0x49be927c8ece4ad4.rst b/doc/source/stdlib/detail/function-functional-cycle-0x49be927c8ece4ad4.rst deleted file mode 100644 index 355abc0651..0000000000 --- a/doc/source/stdlib/detail/function-functional-cycle-0x49be927c8ece4ad4.rst +++ /dev/null @@ -1 +0,0 @@ -endlessly iterates over `src` diff --git a/doc/source/stdlib/detail/function-functional-echo-0xaf01e136dde9fa72.rst b/doc/source/stdlib/detail/function-functional-echo-0xaf01e136dde9fa72.rst deleted file mode 100644 index 6687334aec..0000000000 --- a/doc/source/stdlib/detail/function-functional-echo-0xaf01e136dde9fa72.rst +++ /dev/null @@ -1,2 +0,0 @@ -prints `x` to the output with `extra` appended, then returns `x` unchanged. -Non-destructive — safe to use in expression chains. diff --git a/doc/source/stdlib/detail/function-functional-enumerate-0x52790e63f0c13bd2.rst b/doc/source/stdlib/detail/function-functional-enumerate-0x52790e63f0c13bd2.rst deleted file mode 100644 index 9ca6cf92c7..0000000000 --- a/doc/source/stdlib/detail/function-functional-enumerate-0x52790e63f0c13bd2.rst +++ /dev/null @@ -1 +0,0 @@ -yields tuples of `(index, element)` for each element in `src` diff --git a/doc/source/stdlib/detail/function-functional-filter-0x27d6a5e69de6ba9.rst b/doc/source/stdlib/detail/function-functional-filter-0x27d6a5e69de6ba9.rst deleted file mode 100644 index 02e7a2cdc5..0000000000 --- a/doc/source/stdlib/detail/function-functional-filter-0x27d6a5e69de6ba9.rst +++ /dev/null @@ -1 +0,0 @@ -iterates over `src` and yields only those elements for which `blk` returns true diff --git a/doc/source/stdlib/detail/function-functional-filter-0xcb471139dfc6a1f7.rst b/doc/source/stdlib/detail/function-functional-filter-0xcb471139dfc6a1f7.rst deleted file mode 100644 index 02e7a2cdc5..0000000000 --- a/doc/source/stdlib/detail/function-functional-filter-0xcb471139dfc6a1f7.rst +++ /dev/null @@ -1 +0,0 @@ -iterates over `src` and yields only those elements for which `blk` returns true diff --git a/doc/source/stdlib/detail/function-functional-filter_any-0x465feacd65465dd5.rst b/doc/source/stdlib/detail/function-functional-filter_any-0x465feacd65465dd5.rst deleted file mode 100644 index 02e7a2cdc5..0000000000 --- a/doc/source/stdlib/detail/function-functional-filter_any-0x465feacd65465dd5.rst +++ /dev/null @@ -1 +0,0 @@ -iterates over `src` and yields only those elements for which `blk` returns true diff --git a/doc/source/stdlib/detail/function-functional-find-0x5bcbfa05b43bf44c.rst b/doc/source/stdlib/detail/function-functional-find-0x5bcbfa05b43bf44c.rst deleted file mode 100644 index bf273bf743..0000000000 --- a/doc/source/stdlib/detail/function-functional-find-0x5bcbfa05b43bf44c.rst +++ /dev/null @@ -1 +0,0 @@ -returns the first element for which `blk` returns true, or `default_value` (block version, `default_value` before block for `<|` syntax) diff --git a/doc/source/stdlib/detail/function-functional-find-0x850ace5f515a931c.rst b/doc/source/stdlib/detail/function-functional-find-0x850ace5f515a931c.rst deleted file mode 100644 index bdb992438d..0000000000 --- a/doc/source/stdlib/detail/function-functional-find-0x850ace5f515a931c.rst +++ /dev/null @@ -1 +0,0 @@ -returns the first element for which `blk` returns true, or `default_value` diff --git a/doc/source/stdlib/detail/function-functional-find-0xff00b740419d6a4.rst b/doc/source/stdlib/detail/function-functional-find-0xff00b740419d6a4.rst deleted file mode 100644 index bdb992438d..0000000000 --- a/doc/source/stdlib/detail/function-functional-find-0xff00b740419d6a4.rst +++ /dev/null @@ -1 +0,0 @@ -returns the first element for which `blk` returns true, or `default_value` diff --git a/doc/source/stdlib/detail/function-functional-find_any-0x5b86686e65c0c5e4.rst b/doc/source/stdlib/detail/function-functional-find_any-0x5b86686e65c0c5e4.rst deleted file mode 100644 index 32f01213cc..0000000000 --- a/doc/source/stdlib/detail/function-functional-find_any-0x5b86686e65c0c5e4.rst +++ /dev/null @@ -1 +0,0 @@ -returns the first element for which `predicate` returns true, or `default_value` diff --git a/doc/source/stdlib/detail/function-functional-find_index-0x8deeca9c029474b6.rst b/doc/source/stdlib/detail/function-functional-find_index-0x8deeca9c029474b6.rst deleted file mode 100644 index 6371c8cd9b..0000000000 --- a/doc/source/stdlib/detail/function-functional-find_index-0x8deeca9c029474b6.rst +++ /dev/null @@ -1 +0,0 @@ -returns the index of the first element for which `blk` returns true, or -1 diff --git a/doc/source/stdlib/detail/function-functional-find_index-0xe095e4aa8a70df82.rst b/doc/source/stdlib/detail/function-functional-find_index-0xe095e4aa8a70df82.rst deleted file mode 100644 index 6371c8cd9b..0000000000 --- a/doc/source/stdlib/detail/function-functional-find_index-0xe095e4aa8a70df82.rst +++ /dev/null @@ -1 +0,0 @@ -returns the index of the first element for which `blk` returns true, or -1 diff --git a/doc/source/stdlib/detail/function-functional-find_index-0xf5c877c44c681912.rst b/doc/source/stdlib/detail/function-functional-find_index-0xf5c877c44c681912.rst deleted file mode 100644 index 6371c8cd9b..0000000000 --- a/doc/source/stdlib/detail/function-functional-find_index-0xf5c877c44c681912.rst +++ /dev/null @@ -1 +0,0 @@ -returns the index of the first element for which `blk` returns true, or -1 diff --git a/doc/source/stdlib/detail/function-functional-find_index_any-0x98c8468d2a7ce836.rst b/doc/source/stdlib/detail/function-functional-find_index_any-0x98c8468d2a7ce836.rst deleted file mode 100644 index 674979747b..0000000000 --- a/doc/source/stdlib/detail/function-functional-find_index_any-0x98c8468d2a7ce836.rst +++ /dev/null @@ -1 +0,0 @@ -returns the index of the first element for which `predicate` returns true, or -1 diff --git a/doc/source/stdlib/detail/function-functional-flat_map-0x7ef81a4b5ea458a8.rst b/doc/source/stdlib/detail/function-functional-flat_map-0x7ef81a4b5ea458a8.rst deleted file mode 100644 index 3de0332778..0000000000 --- a/doc/source/stdlib/detail/function-functional-flat_map-0x7ef81a4b5ea458a8.rst +++ /dev/null @@ -1 +0,0 @@ -maps each element to an iterator, then flattens the results one level diff --git a/doc/source/stdlib/detail/function-functional-flat_map-0x94ba793241566722.rst b/doc/source/stdlib/detail/function-functional-flat_map-0x94ba793241566722.rst deleted file mode 100644 index 3de0332778..0000000000 --- a/doc/source/stdlib/detail/function-functional-flat_map-0x94ba793241566722.rst +++ /dev/null @@ -1 +0,0 @@ -maps each element to an iterator, then flattens the results one level diff --git a/doc/source/stdlib/detail/function-functional-flat_map_any-0x7b64c629bad07117.rst b/doc/source/stdlib/detail/function-functional-flat_map_any-0x7b64c629bad07117.rst deleted file mode 100644 index 3de0332778..0000000000 --- a/doc/source/stdlib/detail/function-functional-flat_map_any-0x7b64c629bad07117.rst +++ /dev/null @@ -1 +0,0 @@ -maps each element to an iterator, then flattens the results one level diff --git a/doc/source/stdlib/detail/function-functional-flatten-0x12a200d9add77cd0.rst b/doc/source/stdlib/detail/function-functional-flatten-0x12a200d9add77cd0.rst deleted file mode 100644 index 2744700cf3..0000000000 --- a/doc/source/stdlib/detail/function-functional-flatten-0x12a200d9add77cd0.rst +++ /dev/null @@ -1 +0,0 @@ -iterates over `it`, then iterates over each element of each element of `it` and yields it diff --git a/doc/source/stdlib/detail/function-functional-flatten_one-0x379454ba77edea72.rst b/doc/source/stdlib/detail/function-functional-flatten_one-0x379454ba77edea72.rst deleted file mode 100644 index 1efa12297b..0000000000 --- a/doc/source/stdlib/detail/function-functional-flatten_one-0x379454ba77edea72.rst +++ /dev/null @@ -1 +0,0 @@ -iterates over `src`, then iterates over each element of each element of `src` and yields it diff --git a/doc/source/stdlib/detail/function-functional-fold-0x1d8e5d92ed717203.rst b/doc/source/stdlib/detail/function-functional-fold-0x1d8e5d92ed717203.rst deleted file mode 100644 index 400b0ad375..0000000000 --- a/doc/source/stdlib/detail/function-functional-fold-0x1d8e5d92ed717203.rst +++ /dev/null @@ -1 +0,0 @@ -combines elements left-to-right starting from `seed` diff --git a/doc/source/stdlib/detail/function-functional-fold-0x69e2f3539db59840.rst b/doc/source/stdlib/detail/function-functional-fold-0x69e2f3539db59840.rst deleted file mode 100644 index 400b0ad375..0000000000 --- a/doc/source/stdlib/detail/function-functional-fold-0x69e2f3539db59840.rst +++ /dev/null @@ -1 +0,0 @@ -combines elements left-to-right starting from `seed` diff --git a/doc/source/stdlib/detail/function-functional-fold-0x74a1d2442bd1cdf5.rst b/doc/source/stdlib/detail/function-functional-fold-0x74a1d2442bd1cdf5.rst deleted file mode 100644 index 400b0ad375..0000000000 --- a/doc/source/stdlib/detail/function-functional-fold-0x74a1d2442bd1cdf5.rst +++ /dev/null @@ -1 +0,0 @@ -combines elements left-to-right starting from `seed` diff --git a/doc/source/stdlib/detail/function-functional-fold_any-0x5a50ca3a6838dbc6.rst b/doc/source/stdlib/detail/function-functional-fold_any-0x5a50ca3a6838dbc6.rst deleted file mode 100644 index 400b0ad375..0000000000 --- a/doc/source/stdlib/detail/function-functional-fold_any-0x5a50ca3a6838dbc6.rst +++ /dev/null @@ -1 +0,0 @@ -combines elements left-to-right starting from `seed` diff --git a/doc/source/stdlib/detail/function-functional-for_each-0x16645bd84a149c5e.rst b/doc/source/stdlib/detail/function-functional-for_each-0x16645bd84a149c5e.rst deleted file mode 100644 index 2624f776c1..0000000000 --- a/doc/source/stdlib/detail/function-functional-for_each-0x16645bd84a149c5e.rst +++ /dev/null @@ -1 +0,0 @@ -invokes `blk` on every element of `src` diff --git a/doc/source/stdlib/detail/function-functional-for_each-0xa1982631178a188.rst b/doc/source/stdlib/detail/function-functional-for_each-0xa1982631178a188.rst deleted file mode 100644 index 2624f776c1..0000000000 --- a/doc/source/stdlib/detail/function-functional-for_each-0xa1982631178a188.rst +++ /dev/null @@ -1 +0,0 @@ -invokes `blk` on every element of `src` diff --git a/doc/source/stdlib/detail/function-functional-for_each-0xdacbaaa39a3ea690.rst b/doc/source/stdlib/detail/function-functional-for_each-0xdacbaaa39a3ea690.rst deleted file mode 100644 index 2624f776c1..0000000000 --- a/doc/source/stdlib/detail/function-functional-for_each-0xdacbaaa39a3ea690.rst +++ /dev/null @@ -1 +0,0 @@ -invokes `blk` on every element of `src` diff --git a/doc/source/stdlib/detail/function-functional-for_each_any-0xe1f19f3d3dbd82d0.rst b/doc/source/stdlib/detail/function-functional-for_each_any-0xe1f19f3d3dbd82d0.rst deleted file mode 100644 index 2624f776c1..0000000000 --- a/doc/source/stdlib/detail/function-functional-for_each_any-0xe1f19f3d3dbd82d0.rst +++ /dev/null @@ -1 +0,0 @@ -invokes `blk` on every element of `src` diff --git a/doc/source/stdlib/detail/function-functional-is_equal-0x761e4b307544bbd3.rst b/doc/source/stdlib/detail/function-functional-is_equal-0x761e4b307544bbd3.rst deleted file mode 100644 index 650ce8b187..0000000000 --- a/doc/source/stdlib/detail/function-functional-is_equal-0x761e4b307544bbd3.rst +++ /dev/null @@ -1 +0,0 @@ -yields true if `a` and `b` are equal diff --git a/doc/source/stdlib/detail/function-functional-is_not_equal-0x7ab4a99753d7ff69.rst b/doc/source/stdlib/detail/function-functional-is_not_equal-0x7ab4a99753d7ff69.rst deleted file mode 100644 index 3c0b45eba8..0000000000 --- a/doc/source/stdlib/detail/function-functional-is_not_equal-0x7ab4a99753d7ff69.rst +++ /dev/null @@ -1 +0,0 @@ -yields true if `a` and `b` are not equal diff --git a/doc/source/stdlib/detail/function-functional-islice-0x9005b864bc94730f.rst b/doc/source/stdlib/detail/function-functional-islice-0x9005b864bc94730f.rst deleted file mode 100644 index f9dca42887..0000000000 --- a/doc/source/stdlib/detail/function-functional-islice-0x9005b864bc94730f.rst +++ /dev/null @@ -1 +0,0 @@ -iterates over `src` and yields only the elements in the range [start,stop) diff --git a/doc/source/stdlib/detail/function-functional-iterate-0x1d4d5c1e395c671c.rst b/doc/source/stdlib/detail/function-functional-iterate-0x1d4d5c1e395c671c.rst deleted file mode 100644 index 2805ba7741..0000000000 --- a/doc/source/stdlib/detail/function-functional-iterate-0x1d4d5c1e395c671c.rst +++ /dev/null @@ -1,2 +0,0 @@ -yields `seed`, `f(seed)`, `f(f(seed))`, ... infinitely. -Use with `islice` or `take` to limit output. diff --git a/doc/source/stdlib/detail/function-functional-iterate-0x93f1b1621c8553d9.rst b/doc/source/stdlib/detail/function-functional-iterate-0x93f1b1621c8553d9.rst deleted file mode 100644 index e123200b8b..0000000000 --- a/doc/source/stdlib/detail/function-functional-iterate-0x93f1b1621c8553d9.rst +++ /dev/null @@ -1 +0,0 @@ -yields `seed`, `f(seed)`, `f(f(seed))`, ... infinitely. diff --git a/doc/source/stdlib/detail/function-functional-map-0x5bb08f25f30d970.rst b/doc/source/stdlib/detail/function-functional-map-0x5bb08f25f30d970.rst deleted file mode 100644 index f6f2a67a50..0000000000 --- a/doc/source/stdlib/detail/function-functional-map-0x5bb08f25f30d970.rst +++ /dev/null @@ -1 +0,0 @@ -iterates over `src` and yields the result of `blk` for each element diff --git a/doc/source/stdlib/detail/function-functional-map-0x5c82c44ed6939d3d.rst b/doc/source/stdlib/detail/function-functional-map-0x5c82c44ed6939d3d.rst deleted file mode 100644 index f6f2a67a50..0000000000 --- a/doc/source/stdlib/detail/function-functional-map-0x5c82c44ed6939d3d.rst +++ /dev/null @@ -1 +0,0 @@ -iterates over `src` and yields the result of `blk` for each element diff --git a/doc/source/stdlib/detail/function-functional-map_any-0x65d000a2be15ff89.rst b/doc/source/stdlib/detail/function-functional-map_any-0x65d000a2be15ff89.rst deleted file mode 100644 index f6f2a67a50..0000000000 --- a/doc/source/stdlib/detail/function-functional-map_any-0x65d000a2be15ff89.rst +++ /dev/null @@ -1 +0,0 @@ -iterates over `src` and yields the result of `blk` for each element diff --git a/doc/source/stdlib/detail/function-functional-not-0xa447672188ab1063.rst b/doc/source/stdlib/detail/function-functional-not-0xa447672188ab1063.rst deleted file mode 100644 index 5dd5b57f26..0000000000 --- a/doc/source/stdlib/detail/function-functional-not-0xa447672188ab1063.rst +++ /dev/null @@ -1 +0,0 @@ -yields !x diff --git a/doc/source/stdlib/detail/function-functional-pairwise-0x783d32c5976c83f9.rst b/doc/source/stdlib/detail/function-functional-pairwise-0x783d32c5976c83f9.rst deleted file mode 100644 index 379671c60e..0000000000 --- a/doc/source/stdlib/detail/function-functional-pairwise-0x783d32c5976c83f9.rst +++ /dev/null @@ -1 +0,0 @@ -yields consecutive pairs: `(a,b)`, `(b,c)`, `(c,d)`, ... diff --git a/doc/source/stdlib/detail/function-functional-partition-0x1ec2f4aaec1ab548.rst b/doc/source/stdlib/detail/function-functional-partition-0x1ec2f4aaec1ab548.rst deleted file mode 100644 index e30d5ee32d..0000000000 --- a/doc/source/stdlib/detail/function-functional-partition-0x1ec2f4aaec1ab548.rst +++ /dev/null @@ -1 +0,0 @@ -splits elements into `(matching, non_matching)` arrays diff --git a/doc/source/stdlib/detail/function-functional-partition-0x570943bde6f41383.rst b/doc/source/stdlib/detail/function-functional-partition-0x570943bde6f41383.rst deleted file mode 100644 index e30d5ee32d..0000000000 --- a/doc/source/stdlib/detail/function-functional-partition-0x570943bde6f41383.rst +++ /dev/null @@ -1 +0,0 @@ -splits elements into `(matching, non_matching)` arrays diff --git a/doc/source/stdlib/detail/function-functional-partition-0x8247a313a7cc233b.rst b/doc/source/stdlib/detail/function-functional-partition-0x8247a313a7cc233b.rst deleted file mode 100644 index e30d5ee32d..0000000000 --- a/doc/source/stdlib/detail/function-functional-partition-0x8247a313a7cc233b.rst +++ /dev/null @@ -1 +0,0 @@ -splits elements into `(matching, non_matching)` arrays diff --git a/doc/source/stdlib/detail/function-functional-partition_any-0x445115ad9a331d37.rst b/doc/source/stdlib/detail/function-functional-partition_any-0x445115ad9a331d37.rst deleted file mode 100644 index e30d5ee32d..0000000000 --- a/doc/source/stdlib/detail/function-functional-partition_any-0x445115ad9a331d37.rst +++ /dev/null @@ -1 +0,0 @@ -splits elements into `(matching, non_matching)` arrays diff --git a/doc/source/stdlib/detail/function-functional-reduce-0xb38aa689c696736a.rst b/doc/source/stdlib/detail/function-functional-reduce-0xb38aa689c696736a.rst deleted file mode 100644 index 66755514b4..0000000000 --- a/doc/source/stdlib/detail/function-functional-reduce-0xb38aa689c696736a.rst +++ /dev/null @@ -1,2 +0,0 @@ -iterates over `it` and yields the reduced (combined) result of `blk` for each element -and previous reduction result diff --git a/doc/source/stdlib/detail/function-functional-reduce-0xd2707be9d4c617c0.rst b/doc/source/stdlib/detail/function-functional-reduce-0xd2707be9d4c617c0.rst deleted file mode 100644 index 66755514b4..0000000000 --- a/doc/source/stdlib/detail/function-functional-reduce-0xd2707be9d4c617c0.rst +++ /dev/null @@ -1,2 +0,0 @@ -iterates over `it` and yields the reduced (combined) result of `blk` for each element -and previous reduction result diff --git a/doc/source/stdlib/detail/function-functional-reduce-0xd490192be6966a38.rst b/doc/source/stdlib/detail/function-functional-reduce-0xd490192be6966a38.rst deleted file mode 100644 index 66755514b4..0000000000 --- a/doc/source/stdlib/detail/function-functional-reduce-0xd490192be6966a38.rst +++ /dev/null @@ -1,2 +0,0 @@ -iterates over `it` and yields the reduced (combined) result of `blk` for each element -and previous reduction result diff --git a/doc/source/stdlib/detail/function-functional-reduce_any-0xb50a71f8dc8de92b.rst b/doc/source/stdlib/detail/function-functional-reduce_any-0xb50a71f8dc8de92b.rst deleted file mode 100644 index 36e5fe65a3..0000000000 --- a/doc/source/stdlib/detail/function-functional-reduce_any-0xb50a71f8dc8de92b.rst +++ /dev/null @@ -1 +0,0 @@ -iterates over `it` and yields the reduced (combined) result of `functor` for each element diff --git a/doc/source/stdlib/detail/function-functional-reduce_or_default-0x1a581c961bb04900.rst b/doc/source/stdlib/detail/function-functional-reduce_or_default-0x1a581c961bb04900.rst deleted file mode 100644 index 5e3dbdac16..0000000000 --- a/doc/source/stdlib/detail/function-functional-reduce_or_default-0x1a581c961bb04900.rst +++ /dev/null @@ -1 +0,0 @@ -like reduce, but returns `default_value` on empty input diff --git a/doc/source/stdlib/detail/function-functional-reduce_or_default-0x1f4967e84613fa7d.rst b/doc/source/stdlib/detail/function-functional-reduce_or_default-0x1f4967e84613fa7d.rst deleted file mode 100644 index 6e75f9b2ac..0000000000 --- a/doc/source/stdlib/detail/function-functional-reduce_or_default-0x1f4967e84613fa7d.rst +++ /dev/null @@ -1 +0,0 @@ -like reduce, but returns `default_value` on empty input (block version, `default_value` before block for `<|` syntax) diff --git a/doc/source/stdlib/detail/function-functional-reduce_or_default-0xa048301fb4b815d5.rst b/doc/source/stdlib/detail/function-functional-reduce_or_default-0xa048301fb4b815d5.rst deleted file mode 100644 index 5e3dbdac16..0000000000 --- a/doc/source/stdlib/detail/function-functional-reduce_or_default-0xa048301fb4b815d5.rst +++ /dev/null @@ -1 +0,0 @@ -like reduce, but returns `default_value` on empty input diff --git a/doc/source/stdlib/detail/function-functional-reduce_or_default_any-0x14508417381aeb8a.rst b/doc/source/stdlib/detail/function-functional-reduce_or_default_any-0x14508417381aeb8a.rst deleted file mode 100644 index a0b09c4ba4..0000000000 --- a/doc/source/stdlib/detail/function-functional-reduce_or_default_any-0x14508417381aeb8a.rst +++ /dev/null @@ -1 +0,0 @@ -like reduce, but returns `default_value` instead of panicking on empty input diff --git a/doc/source/stdlib/detail/function-functional-repeat-0x468b456eb87dd47a.rst b/doc/source/stdlib/detail/function-functional-repeat-0x468b456eb87dd47a.rst deleted file mode 100644 index 28b726bc65..0000000000 --- a/doc/source/stdlib/detail/function-functional-repeat-0x468b456eb87dd47a.rst +++ /dev/null @@ -1 +0,0 @@ -yields `value` `count` times. If `count` is negative, repeats forever. diff --git a/doc/source/stdlib/detail/function-functional-repeat_ref-0xa8e3dda39f1de36e.rst b/doc/source/stdlib/detail/function-functional-repeat_ref-0xa8e3dda39f1de36e.rst deleted file mode 100644 index 3433cf2a04..0000000000 --- a/doc/source/stdlib/detail/function-functional-repeat_ref-0xa8e3dda39f1de36e.rst +++ /dev/null @@ -1 +0,0 @@ -yields `value` by reference `count` times diff --git a/doc/source/stdlib/detail/function-functional-scan-0x26f15fdcde2488be.rst b/doc/source/stdlib/detail/function-functional-scan-0x26f15fdcde2488be.rst deleted file mode 100644 index e1403c16cf..0000000000 --- a/doc/source/stdlib/detail/function-functional-scan-0x26f15fdcde2488be.rst +++ /dev/null @@ -1 +0,0 @@ -yields every intermediate accumulator value, starting from `seed` diff --git a/doc/source/stdlib/detail/function-functional-scan-0xa4f9facb69875e1.rst b/doc/source/stdlib/detail/function-functional-scan-0xa4f9facb69875e1.rst deleted file mode 100644 index e1403c16cf..0000000000 --- a/doc/source/stdlib/detail/function-functional-scan-0xa4f9facb69875e1.rst +++ /dev/null @@ -1 +0,0 @@ -yields every intermediate accumulator value, starting from `seed` diff --git a/doc/source/stdlib/detail/function-functional-scan_any-0xf2a1953cdebe9671.rst b/doc/source/stdlib/detail/function-functional-scan_any-0xf2a1953cdebe9671.rst deleted file mode 100644 index 30076b73d2..0000000000 --- a/doc/source/stdlib/detail/function-functional-scan_any-0xf2a1953cdebe9671.rst +++ /dev/null @@ -1 +0,0 @@ -like fold, but yields every intermediate accumulator value diff --git a/doc/source/stdlib/detail/function-functional-sorted-0x11943aafb645324.rst b/doc/source/stdlib/detail/function-functional-sorted-0x11943aafb645324.rst deleted file mode 100644 index 16ea47574f..0000000000 --- a/doc/source/stdlib/detail/function-functional-sorted-0x11943aafb645324.rst +++ /dev/null @@ -1 +0,0 @@ -iterates over input and returns it sorted version diff --git a/doc/source/stdlib/detail/function-functional-sorted-0xa52fedce698039e8.rst b/doc/source/stdlib/detail/function-functional-sorted-0xa52fedce698039e8.rst deleted file mode 100644 index 16ea47574f..0000000000 --- a/doc/source/stdlib/detail/function-functional-sorted-0xa52fedce698039e8.rst +++ /dev/null @@ -1 +0,0 @@ -iterates over input and returns it sorted version diff --git a/doc/source/stdlib/detail/function-functional-sum-0x61ae6cf104601d79.rst b/doc/source/stdlib/detail/function-functional-sum-0x61ae6cf104601d79.rst deleted file mode 100644 index 8b408cc35b..0000000000 --- a/doc/source/stdlib/detail/function-functional-sum-0x61ae6cf104601d79.rst +++ /dev/null @@ -1,2 +0,0 @@ -iterates over `it` and yields the sum of all elements -same as reduce(it, @(a,b) => a + b) diff --git a/doc/source/stdlib/detail/function-functional-tap-0x5a411de889ce071d.rst b/doc/source/stdlib/detail/function-functional-tap-0x5a411de889ce071d.rst deleted file mode 100644 index 81eb746185..0000000000 --- a/doc/source/stdlib/detail/function-functional-tap-0x5a411de889ce071d.rst +++ /dev/null @@ -1 +0,0 @@ -yields every element unchanged, calling `blk` on each as a side-effect diff --git a/doc/source/stdlib/detail/function-functional-tap-0x6a85047795767a06.rst b/doc/source/stdlib/detail/function-functional-tap-0x6a85047795767a06.rst deleted file mode 100644 index 81eb746185..0000000000 --- a/doc/source/stdlib/detail/function-functional-tap-0x6a85047795767a06.rst +++ /dev/null @@ -1 +0,0 @@ -yields every element unchanged, calling `blk` on each as a side-effect diff --git a/doc/source/stdlib/detail/function-functional-tap_any-0x59a670bc300e2722.rst b/doc/source/stdlib/detail/function-functional-tap_any-0x59a670bc300e2722.rst deleted file mode 100644 index 81eb746185..0000000000 --- a/doc/source/stdlib/detail/function-functional-tap_any-0x59a670bc300e2722.rst +++ /dev/null @@ -1 +0,0 @@ -yields every element unchanged, calling `blk` on each as a side-effect diff --git a/doc/source/stdlib/detail/function-fuzzer-fuzz-0x7e78e1feea01d9c3.rst b/doc/source/stdlib/detail/function-fuzzer-fuzz-0x7e78e1feea01d9c3.rst deleted file mode 100644 index bf6766ff68..0000000000 --- a/doc/source/stdlib/detail/function-fuzzer-fuzz-0x7e78e1feea01d9c3.rst +++ /dev/null @@ -1,2 +0,0 @@ -run block however many times -ignore panic, so that we can see that runtime crashes diff --git a/doc/source/stdlib/detail/function-fuzzer-fuzz-0xe850e69acd180fca.rst b/doc/source/stdlib/detail/function-fuzzer-fuzz-0xe850e69acd180fca.rst deleted file mode 100644 index bf6766ff68..0000000000 --- a/doc/source/stdlib/detail/function-fuzzer-fuzz-0xe850e69acd180fca.rst +++ /dev/null @@ -1,2 +0,0 @@ -run block however many times -ignore panic, so that we can see that runtime crashes diff --git a/doc/source/stdlib/detail/function-fuzzer-fuzz_all_ints_op1-0xd6b9aadda192d778.rst b/doc/source/stdlib/detail/function-fuzzer-fuzz_all_ints_op1-0xd6b9aadda192d778.rst deleted file mode 100644 index ef56d4a95b..0000000000 --- a/doc/source/stdlib/detail/function-fuzzer-fuzz_all_ints_op1-0xd6b9aadda192d778.rst +++ /dev/null @@ -1,2 +0,0 @@ -fuzzes generic function that takes single numeric or vector argument. -arguments are: int, uint, int64, uint64 diff --git a/doc/source/stdlib/detail/function-fuzzer-fuzz_all_unsigned_ints_op1-0x94345ac6d01a44fe.rst b/doc/source/stdlib/detail/function-fuzzer-fuzz_all_unsigned_ints_op1-0x94345ac6d01a44fe.rst deleted file mode 100644 index cb3cbc6c75..0000000000 --- a/doc/source/stdlib/detail/function-fuzzer-fuzz_all_unsigned_ints_op1-0x94345ac6d01a44fe.rst +++ /dev/null @@ -1,2 +0,0 @@ -fuzzes generic function that takes single numeric or vector argument. -arguments are: uint, uint64 diff --git a/doc/source/stdlib/detail/function-fuzzer-fuzz_compareable_op2-0x82b078479f3577c3.rst b/doc/source/stdlib/detail/function-fuzzer-fuzz_compareable_op2-0x82b078479f3577c3.rst deleted file mode 100644 index 2788cdb369..0000000000 --- a/doc/source/stdlib/detail/function-fuzzer-fuzz_compareable_op2-0x82b078479f3577c3.rst +++ /dev/null @@ -1,2 +0,0 @@ -fuzzes generic function that takes two numeric or vector arguments. -arguments are: int, uint, float, double, int64, uint64, string diff --git a/doc/source/stdlib/detail/function-fuzzer-fuzz_debug-0x152f244dd00d785d.rst b/doc/source/stdlib/detail/function-fuzzer-fuzz_debug-0x152f244dd00d785d.rst deleted file mode 100644 index 304b49a6f1..0000000000 --- a/doc/source/stdlib/detail/function-fuzzer-fuzz_debug-0x152f244dd00d785d.rst +++ /dev/null @@ -1,3 +0,0 @@ -run block however many times -do not ignore panic, so that we can see where the runtime fails -this is here so that `fuzz` can be easily replaced with `fuzz_debug` for the purpose of debugging diff --git a/doc/source/stdlib/detail/function-fuzzer-fuzz_debug-0x1bc89ae1e6d26990.rst b/doc/source/stdlib/detail/function-fuzzer-fuzz_debug-0x1bc89ae1e6d26990.rst deleted file mode 100644 index 304b49a6f1..0000000000 --- a/doc/source/stdlib/detail/function-fuzzer-fuzz_debug-0x1bc89ae1e6d26990.rst +++ /dev/null @@ -1,3 +0,0 @@ -run block however many times -do not ignore panic, so that we can see where the runtime fails -this is here so that `fuzz` can be easily replaced with `fuzz_debug` for the purpose of debugging diff --git a/doc/source/stdlib/detail/function-fuzzer-fuzz_eq_neq_op2-0xe7f33748c722f5af.rst b/doc/source/stdlib/detail/function-fuzzer-fuzz_eq_neq_op2-0xe7f33748c722f5af.rst deleted file mode 100644 index ae8f930844..0000000000 --- a/doc/source/stdlib/detail/function-fuzzer-fuzz_eq_neq_op2-0xe7f33748c722f5af.rst +++ /dev/null @@ -1,2 +0,0 @@ -fuzzes generic function that takes two numeric or vector arguments. -arguments are: int, uint, int64, uint64, float, double, string, int2, int3, int4, uint2, uint3, uint4, float2, float3, float4 diff --git a/doc/source/stdlib/detail/function-fuzzer-fuzz_float_double_or_float_vec_op1-0x893b059490fb4684.rst b/doc/source/stdlib/detail/function-fuzzer-fuzz_float_double_or_float_vec_op1-0x893b059490fb4684.rst deleted file mode 100644 index 1743a57db8..0000000000 --- a/doc/source/stdlib/detail/function-fuzzer-fuzz_float_double_or_float_vec_op1-0x893b059490fb4684.rst +++ /dev/null @@ -1,2 +0,0 @@ -fuzzes generic function that takes single numeric or vector argument. -arguments are: float, double, float2, float3, float4 diff --git a/doc/source/stdlib/detail/function-fuzzer-fuzz_float_double_or_float_vec_op2-0x57ff1aa693b41b84.rst b/doc/source/stdlib/detail/function-fuzzer-fuzz_float_double_or_float_vec_op2-0x57ff1aa693b41b84.rst deleted file mode 100644 index 6f6b1ca565..0000000000 --- a/doc/source/stdlib/detail/function-fuzzer-fuzz_float_double_or_float_vec_op2-0x57ff1aa693b41b84.rst +++ /dev/null @@ -1,2 +0,0 @@ -fuzzes generic function that takes two numeric or vector arguments. -arguments are: float, double, float2, float3, float4 diff --git a/doc/source/stdlib/detail/function-fuzzer-fuzz_float_double_or_float_vec_op3-0xfce03cbba592fc84.rst b/doc/source/stdlib/detail/function-fuzzer-fuzz_float_double_or_float_vec_op3-0xfce03cbba592fc84.rst deleted file mode 100644 index 9607696e4d..0000000000 --- a/doc/source/stdlib/detail/function-fuzzer-fuzz_float_double_or_float_vec_op3-0xfce03cbba592fc84.rst +++ /dev/null @@ -1,2 +0,0 @@ -fuzzes generic function that takes three numeric or vector arguments. -arguments are: float, double, float2, float3, float4 diff --git a/doc/source/stdlib/detail/function-fuzzer-fuzz_float_or_float_vec_op1-0x469aa8c9ea1903a.rst b/doc/source/stdlib/detail/function-fuzzer-fuzz_float_or_float_vec_op1-0x469aa8c9ea1903a.rst deleted file mode 100644 index c8580b8155..0000000000 --- a/doc/source/stdlib/detail/function-fuzzer-fuzz_float_or_float_vec_op1-0x469aa8c9ea1903a.rst +++ /dev/null @@ -1,2 +0,0 @@ -fuzzes generic function that takes single numeric or vector argument. -arguments are: float, float2, float3, float4 diff --git a/doc/source/stdlib/detail/function-fuzzer-fuzz_float_or_float_vec_op2-0xe6f7c20f30375551.rst b/doc/source/stdlib/detail/function-fuzzer-fuzz_float_or_float_vec_op2-0xe6f7c20f30375551.rst deleted file mode 100644 index 4c183ebfc8..0000000000 --- a/doc/source/stdlib/detail/function-fuzzer-fuzz_float_or_float_vec_op2-0xe6f7c20f30375551.rst +++ /dev/null @@ -1,2 +0,0 @@ -fuzzes generic function that takes two numeric or vector arguments. -arguments are: float, float2, float3, float4 diff --git a/doc/source/stdlib/detail/function-fuzzer-fuzz_int_vector_op2-0xe75e137fb3207f1d.rst b/doc/source/stdlib/detail/function-fuzzer-fuzz_int_vector_op2-0xe75e137fb3207f1d.rst deleted file mode 100644 index 0fda3ec995..0000000000 --- a/doc/source/stdlib/detail/function-fuzzer-fuzz_int_vector_op2-0xe75e137fb3207f1d.rst +++ /dev/null @@ -1,2 +0,0 @@ -fuzzes generic function that takes two numeric or vector arguments. -arguments are: int, uint, int2, int3, int4, uint2, uint3, uint4 diff --git a/doc/source/stdlib/detail/function-fuzzer-fuzz_numeric_and_storage_op1-0xb365f10d322033d5.rst b/doc/source/stdlib/detail/function-fuzzer-fuzz_numeric_and_storage_op1-0xb365f10d322033d5.rst deleted file mode 100644 index 3abc4f9b94..0000000000 --- a/doc/source/stdlib/detail/function-fuzzer-fuzz_numeric_and_storage_op1-0xb365f10d322033d5.rst +++ /dev/null @@ -1,2 +0,0 @@ -fuzzes generic function that takes single numeric or vector argument. -arguments are: int, uint, int8, uint8, int16, uint16, int64, uint64, float, double diff --git a/doc/source/stdlib/detail/function-fuzzer-fuzz_numeric_and_vector_op1-0xed8cbe7f55fde920.rst b/doc/source/stdlib/detail/function-fuzzer-fuzz_numeric_and_vector_op1-0xed8cbe7f55fde920.rst deleted file mode 100644 index b43e29e7be..0000000000 --- a/doc/source/stdlib/detail/function-fuzzer-fuzz_numeric_and_vector_op1-0xed8cbe7f55fde920.rst +++ /dev/null @@ -1,2 +0,0 @@ -fuzzes generic function that takes single numeric or vector argument. -arguments are: int, uint, float, double, string, int2, int3, int4, uint2, uint3, uint4, float2, float3, float4 diff --git a/doc/source/stdlib/detail/function-fuzzer-fuzz_numeric_and_vector_op2-0x37cc31a68dfcbe3b.rst b/doc/source/stdlib/detail/function-fuzzer-fuzz_numeric_and_vector_op2-0x37cc31a68dfcbe3b.rst deleted file mode 100644 index 888c0d3f36..0000000000 --- a/doc/source/stdlib/detail/function-fuzzer-fuzz_numeric_and_vector_op2-0x37cc31a68dfcbe3b.rst +++ /dev/null @@ -1,2 +0,0 @@ -fuzzes generic function that takes two numeric or vector arguments. -arguments are: int, uint, float, double, int2, int3, int4, uint2, uint3, uint4, float2, float3, float4 diff --git a/doc/source/stdlib/detail/function-fuzzer-fuzz_numeric_and_vector_op2_no_unint_vec-0x940a208283c386f2.rst b/doc/source/stdlib/detail/function-fuzzer-fuzz_numeric_and_vector_op2_no_unint_vec-0x940a208283c386f2.rst deleted file mode 100644 index 76d5c95da5..0000000000 --- a/doc/source/stdlib/detail/function-fuzzer-fuzz_numeric_and_vector_op2_no_unint_vec-0x940a208283c386f2.rst +++ /dev/null @@ -1,2 +0,0 @@ -fuzzes generic function that takes two numeric or vector arguments. -arguments are: int, uint, float, double, int2, int3, int4, float2, float3, float4 diff --git a/doc/source/stdlib/detail/function-fuzzer-fuzz_numeric_and_vector_signed_op1-0x480291e466071cb2.rst b/doc/source/stdlib/detail/function-fuzzer-fuzz_numeric_and_vector_signed_op1-0x480291e466071cb2.rst deleted file mode 100644 index b43e29e7be..0000000000 --- a/doc/source/stdlib/detail/function-fuzzer-fuzz_numeric_and_vector_signed_op1-0x480291e466071cb2.rst +++ /dev/null @@ -1,2 +0,0 @@ -fuzzes generic function that takes single numeric or vector argument. -arguments are: int, uint, float, double, string, int2, int3, int4, uint2, uint3, uint4, float2, float3, float4 diff --git a/doc/source/stdlib/detail/function-fuzzer-fuzz_numeric_op1-0x1b188580f06e400c.rst b/doc/source/stdlib/detail/function-fuzzer-fuzz_numeric_op1-0x1b188580f06e400c.rst deleted file mode 100644 index 8803afa3a1..0000000000 --- a/doc/source/stdlib/detail/function-fuzzer-fuzz_numeric_op1-0x1b188580f06e400c.rst +++ /dev/null @@ -1,2 +0,0 @@ -fuzzes generic function that takes single numeric or vector argument. -arguments are: int, uint, float, double diff --git a/doc/source/stdlib/detail/function-fuzzer-fuzz_numeric_op2-0x5c894957577f8b0c.rst b/doc/source/stdlib/detail/function-fuzzer-fuzz_numeric_op2-0x5c894957577f8b0c.rst deleted file mode 100644 index 613865e6ae..0000000000 --- a/doc/source/stdlib/detail/function-fuzzer-fuzz_numeric_op2-0x5c894957577f8b0c.rst +++ /dev/null @@ -1,2 +0,0 @@ -fuzzes generic function that takes two numeric or vector arguments. -arguments are: int, uint, float, double diff --git a/doc/source/stdlib/detail/function-fuzzer-fuzz_numeric_op3-0xc5ea315fa81e7a0c.rst b/doc/source/stdlib/detail/function-fuzzer-fuzz_numeric_op3-0xc5ea315fa81e7a0c.rst deleted file mode 100644 index 5ded7da83e..0000000000 --- a/doc/source/stdlib/detail/function-fuzzer-fuzz_numeric_op3-0xc5ea315fa81e7a0c.rst +++ /dev/null @@ -1,2 +0,0 @@ -fuzzes generic function that takes three numeric or vector arguments. -arguments are: int, uint, float, double diff --git a/doc/source/stdlib/detail/function-fuzzer-fuzz_numeric_op4-0x3d8dce7db004fd0c.rst b/doc/source/stdlib/detail/function-fuzzer-fuzz_numeric_op4-0x3d8dce7db004fd0c.rst deleted file mode 100644 index 04bcb61acd..0000000000 --- a/doc/source/stdlib/detail/function-fuzzer-fuzz_numeric_op4-0x3d8dce7db004fd0c.rst +++ /dev/null @@ -1,2 +0,0 @@ -fuzzes generic function that takes four numeric or vector arguments. -arguments are: int, uint, float, double diff --git a/doc/source/stdlib/detail/function-fuzzer-fuzz_numeric_scal_vec_op2-0x277f2a21851ff7f7.rst b/doc/source/stdlib/detail/function-fuzzer-fuzz_numeric_scal_vec_op2-0x277f2a21851ff7f7.rst deleted file mode 100644 index a9e2282263..0000000000 --- a/doc/source/stdlib/detail/function-fuzzer-fuzz_numeric_scal_vec_op2-0x277f2a21851ff7f7.rst +++ /dev/null @@ -1,2 +0,0 @@ -fuzzes generic function that takes vector and matching scalar on the left -arguments pairs are: int2,int; int3,int; uint2,uint; uint3,uint; uint4,uint; int4,int; float2,float; float3,float; float4,float diff --git a/doc/source/stdlib/detail/function-fuzzer-fuzz_numeric_vec_scal_op2-0xf65a9efea4b9f2ca.rst b/doc/source/stdlib/detail/function-fuzzer-fuzz_numeric_vec_scal_op2-0xf65a9efea4b9f2ca.rst deleted file mode 100644 index c8f5132bcd..0000000000 --- a/doc/source/stdlib/detail/function-fuzzer-fuzz_numeric_vec_scal_op2-0xf65a9efea4b9f2ca.rst +++ /dev/null @@ -1,2 +0,0 @@ -fuzzes generic function that takes vector and matching scalar on the right -arguments pairs are: int2,int; int3,int; uint2,uint; uint3,uint; uint4,uint; int4,int; float2,float; float3,float; float4,float diff --git a/doc/source/stdlib/detail/function-fuzzer-fuzz_rotate_op2-0x7ecfb0e5cc5a3bd8.rst b/doc/source/stdlib/detail/function-fuzzer-fuzz_rotate_op2-0x7ecfb0e5cc5a3bd8.rst deleted file mode 100644 index 85405ff008..0000000000 --- a/doc/source/stdlib/detail/function-fuzzer-fuzz_rotate_op2-0x7ecfb0e5cc5a3bd8.rst +++ /dev/null @@ -1,2 +0,0 @@ -fuzzes generic function that takes numeric or vector argument, with matching rotate type on the right. -arguments are: int, uint diff --git a/doc/source/stdlib/detail/function-fuzzer-fuzz_shift_op2-0x4b14beeb66a81c2b.rst b/doc/source/stdlib/detail/function-fuzzer-fuzz_shift_op2-0x4b14beeb66a81c2b.rst deleted file mode 100644 index 594f3ff3bc..0000000000 --- a/doc/source/stdlib/detail/function-fuzzer-fuzz_shift_op2-0x4b14beeb66a81c2b.rst +++ /dev/null @@ -1,2 +0,0 @@ -fuzzes generic function that takes numeric or vector argument, with matching shift type on the right. -arguments are: int, uint, int2, int3, int4, uint2, uint3, uint4 diff --git a/doc/source/stdlib/detail/function-fuzzer-fuzz_vec_mad_op3-0x2f52202f1264724a.rst b/doc/source/stdlib/detail/function-fuzzer-fuzz_vec_mad_op3-0x2f52202f1264724a.rst deleted file mode 100644 index eb53b39ed8..0000000000 --- a/doc/source/stdlib/detail/function-fuzzer-fuzz_vec_mad_op3-0x2f52202f1264724a.rst +++ /dev/null @@ -1,2 +0,0 @@ -fuzzes generic function that takes three numeric or vector arguments. -arguments are: float2, float3, float4, int2, int3, int4, uint2, uint3, uint4 second argument is float, int, uint accordingly diff --git a/doc/source/stdlib/detail/function-fuzzer-fuzz_vec_op3-0x37b3205384a73242.rst b/doc/source/stdlib/detail/function-fuzzer-fuzz_vec_op3-0x37b3205384a73242.rst deleted file mode 100644 index 62f51e5871..0000000000 --- a/doc/source/stdlib/detail/function-fuzzer-fuzz_vec_op3-0x37b3205384a73242.rst +++ /dev/null @@ -1,2 +0,0 @@ -fuzzes generic function that takes three numeric or vector arguments. -arguments are: float2, float3, float4, int2, int3, int4, uint2, uint3, uint4 diff --git a/doc/source/stdlib/detail/function-interfaces-is_const_interface-0x8b612a681be14916.rst b/doc/source/stdlib/detail/function-interfaces-is_const_interface-0x8b612a681be14916.rst deleted file mode 100644 index df9c816fa7..0000000000 --- a/doc/source/stdlib/detail/function-interfaces-is_const_interface-0x8b612a681be14916.rst +++ /dev/null @@ -1,2 +0,0 @@ -Returns ``true`` when every function field in the given [interface] struct -has a const ``self`` parameter (i.e. all methods are const). diff --git a/doc/source/stdlib/detail/function-interfaces-is_interface_struct-0x9cb459e86e8c6a29.rst b/doc/source/stdlib/detail/function-interfaces-is_interface_struct-0x9cb459e86e8c6a29.rst deleted file mode 100644 index d89690b03b..0000000000 --- a/doc/source/stdlib/detail/function-interfaces-is_interface_struct-0x9cb459e86e8c6a29.rst +++ /dev/null @@ -1 +0,0 @@ -Returns ``true`` when the structure carries the ``[interface]`` annotation. diff --git a/doc/source/stdlib/detail/function-is_local-is_local_expr-0x94b5cfb7470404f4.rst b/doc/source/stdlib/detail/function-is_local-is_local_expr-0x94b5cfb7470404f4.rst deleted file mode 100644 index 595e2c9ee7..0000000000 --- a/doc/source/stdlib/detail/function-is_local-is_local_expr-0x94b5cfb7470404f4.rst +++ /dev/null @@ -1 +0,0 @@ -Returns true if the expression is local to the current scope. diff --git a/doc/source/stdlib/detail/function-is_local-is_local_or_global_expr-0x73174f8f477a2ca8.rst b/doc/source/stdlib/detail/function-is_local-is_local_or_global_expr-0x73174f8f477a2ca8.rst deleted file mode 100644 index 01c26950fe..0000000000 --- a/doc/source/stdlib/detail/function-is_local-is_local_or_global_expr-0x73174f8f477a2ca8.rst +++ /dev/null @@ -1 +0,0 @@ -Returns true if expression is local to the current scope or global scope. diff --git a/doc/source/stdlib/detail/function-is_local-is_scope_expr-0x97e1d9f2e8c70125.rst b/doc/source/stdlib/detail/function-is_local-is_scope_expr-0x97e1d9f2e8c70125.rst deleted file mode 100644 index 69c981ad10..0000000000 --- a/doc/source/stdlib/detail/function-is_local-is_scope_expr-0x97e1d9f2e8c70125.rst +++ /dev/null @@ -1 +0,0 @@ -Returns true if the expression is a scoped expression, i.e. eventually points to a variable. diff --git a/doc/source/stdlib/detail/function-is_local-is_shared_expr-0x41435fe8697d898c.rst b/doc/source/stdlib/detail/function-is_local-is_shared_expr-0x41435fe8697d898c.rst deleted file mode 100644 index 450dba3e4e..0000000000 --- a/doc/source/stdlib/detail/function-is_local-is_shared_expr-0x41435fe8697d898c.rst +++ /dev/null @@ -1 +0,0 @@ -Returns true if the expression refers to a global shared variable. diff --git a/doc/source/stdlib/detail/function-is_local-is_temp_safe-0x310afc5cbc1a0407.rst b/doc/source/stdlib/detail/function-is_local-is_temp_safe-0x310afc5cbc1a0407.rst deleted file mode 100644 index 64f683e6f9..0000000000 --- a/doc/source/stdlib/detail/function-is_local-is_temp_safe-0x310afc5cbc1a0407.rst +++ /dev/null @@ -1,2 +0,0 @@ -Returns true if the expression had no calls, [] or table [] operators of any kind. -This is used to check expression can be safely casted to temp type. diff --git a/doc/source/stdlib/detail/function-jobque_boost-ChannelAndStatusCapture-captureExpression-0xe83167b97fd7106f.rst b/doc/source/stdlib/detail/function-jobque_boost-ChannelAndStatusCapture-captureExpression-0xe83167b97fd7106f.rst deleted file mode 100644 index 66b45ba96b..0000000000 --- a/doc/source/stdlib/detail/function-jobque_boost-ChannelAndStatusCapture-captureExpression-0xe83167b97fd7106f.rst +++ /dev/null @@ -1 +0,0 @@ -Implementation details for the capture macro. diff --git a/doc/source/stdlib/detail/function-jobque_boost-ChannelAndStatusCapture-captureFunction-0x5db4e97254d4b8c6.rst b/doc/source/stdlib/detail/function-jobque_boost-ChannelAndStatusCapture-captureFunction-0x5db4e97254d4b8c6.rst deleted file mode 100644 index 53f074ac2e..0000000000 --- a/doc/source/stdlib/detail/function-jobque_boost-ChannelAndStatusCapture-captureFunction-0x5db4e97254d4b8c6.rst +++ /dev/null @@ -1,5 +0,0 @@ -Implementation details for the capture macro. -Note: generators are skipped because their ``finally`` section is called on every -iteration, not just once at destruction. This means ``Channel``, ``JobStatus``, and -``LockBox`` captures inside generators do NOT get automatic release checks. -Users must manually call ``release`` on captured jobque objects inside generators. diff --git a/doc/source/stdlib/detail/function-jobque_boost-ChannelAndStatusCapture-make_capture_call-0xd752b9a20d2c707a.rst b/doc/source/stdlib/detail/function-jobque_boost-ChannelAndStatusCapture-make_capture_call-0xd752b9a20d2c707a.rst deleted file mode 100644 index 471e94b36c..0000000000 --- a/doc/source/stdlib/detail/function-jobque_boost-ChannelAndStatusCapture-make_capture_call-0xd752b9a20d2c707a.rst +++ /dev/null @@ -1 +0,0 @@ -Creates a call expression that captures (adds a reference to) a jobque object. diff --git a/doc/source/stdlib/detail/function-jobque_boost-ChannelAndStatusCapture-make_release_call-0x2e9d4317a8d4d0e.rst b/doc/source/stdlib/detail/function-jobque_boost-ChannelAndStatusCapture-make_release_call-0x2e9d4317a8d4d0e.rst deleted file mode 100644 index 22f04b9d9b..0000000000 --- a/doc/source/stdlib/detail/function-jobque_boost-ChannelAndStatusCapture-make_release_call-0x2e9d4317a8d4d0e.rst +++ /dev/null @@ -1 +0,0 @@ -Creates a call expression that releases (decrements the reference of) a captured jobque object. diff --git a/doc/source/stdlib/detail/function-jobque_boost-NewJobMacro-transform-0x206608fc3aa7b879.rst b/doc/source/stdlib/detail/function-jobque_boost-NewJobMacro-transform-0x206608fc3aa7b879.rst deleted file mode 100644 index a5c1e829df..0000000000 --- a/doc/source/stdlib/detail/function-jobque_boost-NewJobMacro-transform-0x206608fc3aa7b879.rst +++ /dev/null @@ -1 +0,0 @@ -Transforms the new_job or new_thread call by generating lambda cloning infrastructure. diff --git a/doc/source/stdlib/detail/function-jobque_boost-_parallel_for-0xff5a5b6ae503a21e.rst b/doc/source/stdlib/detail/function-jobque_boost-_parallel_for-0xff5a5b6ae503a21e.rst deleted file mode 100644 index 4ca5846b6c..0000000000 --- a/doc/source/stdlib/detail/function-jobque_boost-_parallel_for-0xff5a5b6ae503a21e.rst +++ /dev/null @@ -1,5 +0,0 @@ -Partitions ``[range_begin..range_end)`` into ``num_jobs`` chunks and invokes ``blk`` once per chunk -on the calling thread with ``(chunk_begin, chunk_end, wg)``. The block is expected to dispatch work -via ``new_job`` and call ``wg |> notify_and_release`` when each job finishes. -``parallel_for`` blocks until all notifications are received (via internal ``with_wait_group``). -Requires ``with_job_que`` context. diff --git a/doc/source/stdlib/detail/function-jobque_boost-_parallel_for_each-0xcd8bf9e626f88916.rst b/doc/source/stdlib/detail/function-jobque_boost-_parallel_for_each-0xcd8bf9e626f88916.rst deleted file mode 100644 index 3cf237a0dd..0000000000 --- a/doc/source/stdlib/detail/function-jobque_boost-_parallel_for_each-0xcd8bf9e626f88916.rst +++ /dev/null @@ -1,6 +0,0 @@ -Runtime implementation for ``parallel_for_each``. -Partitions array indices ``[0..length(arr))`` into ``num_jobs`` chunks and invokes ``blk`` -with ``(chunk_begin_idx, chunk_end_idx, wg)`` on the calling thread. -The block should dispatch ``new_job`` calls that process ``arr[i]`` for ``i`` in ``[chunk_begin_idx..chunk_end_idx)``, -then call ``wg |> notify_and_release``. -Blocks until all jobs finish. Requires ``with_job_que`` context. diff --git a/doc/source/stdlib/detail/function-jobque_boost-_parallel_map-0x316dff02d56e31de.rst b/doc/source/stdlib/detail/function-jobque_boost-_parallel_map-0x316dff02d56e31de.rst deleted file mode 100644 index 51fb9cf798..0000000000 --- a/doc/source/stdlib/detail/function-jobque_boost-_parallel_map-0x316dff02d56e31de.rst +++ /dev/null @@ -1,5 +0,0 @@ -Runtime implementation for ``parallel_map``. -Partitions array indices ``[0..length(arr))`` into ``num_jobs`` chunks and invokes ``blk`` -on the calling thread with ``(chunk_begin_idx, chunk_end_idx, results_channel, wg)``. -Blocks until all jobs finish. Results are available in ``results_channel`` after this call returns. -Requires ``with_job_que`` context. diff --git a/doc/source/stdlib/detail/function-jobque_boost-capture_jobque_channel-0xf60eecaef8f8120f.rst b/doc/source/stdlib/detail/function-jobque_boost-capture_jobque_channel-0xf60eecaef8f8120f.rst deleted file mode 100644 index f13871cb87..0000000000 --- a/doc/source/stdlib/detail/function-jobque_boost-capture_jobque_channel-0xf60eecaef8f8120f.rst +++ /dev/null @@ -1 +0,0 @@ -this function is used to capture a channel that is used by the jobque. diff --git a/doc/source/stdlib/detail/function-jobque_boost-capture_jobque_job_status-0x570dfa763bc5b95f.rst b/doc/source/stdlib/detail/function-jobque_boost-capture_jobque_job_status-0x570dfa763bc5b95f.rst deleted file mode 100644 index 7740b4ba6c..0000000000 --- a/doc/source/stdlib/detail/function-jobque_boost-capture_jobque_job_status-0x570dfa763bc5b95f.rst +++ /dev/null @@ -1 +0,0 @@ -this function is used to capture a job status that is used by the jobque. diff --git a/doc/source/stdlib/detail/function-jobque_boost-capture_jobque_lock_box-0x132699fe05afbee9.rst b/doc/source/stdlib/detail/function-jobque_boost-capture_jobque_lock_box-0x132699fe05afbee9.rst deleted file mode 100644 index 0bd0b9dd33..0000000000 --- a/doc/source/stdlib/detail/function-jobque_boost-capture_jobque_lock_box-0x132699fe05afbee9.rst +++ /dev/null @@ -1 +0,0 @@ -this function is used to capture a lock box that is used by the jobque. diff --git a/doc/source/stdlib/detail/function-jobque_boost-clear-0x2cd2369b940d5abe.rst b/doc/source/stdlib/detail/function-jobque_boost-clear-0x2cd2369b940d5abe.rst deleted file mode 100644 index 5adab8ab63..0000000000 --- a/doc/source/stdlib/detail/function-jobque_boost-clear-0x2cd2369b940d5abe.rst +++ /dev/null @@ -1 +0,0 @@ -clear value from the lock box diff --git a/doc/source/stdlib/detail/function-jobque_boost-done-0x961c8d7366d9915a.rst b/doc/source/stdlib/detail/function-jobque_boost-done-0x961c8d7366d9915a.rst deleted file mode 100644 index 805d4f570b..0000000000 --- a/doc/source/stdlib/detail/function-jobque_boost-done-0x961c8d7366d9915a.rst +++ /dev/null @@ -1,3 +0,0 @@ -Mark one unit of work as done in a wait group. -Alias for ``notify_and_release``. Decrements the notification counter and releases the reference. -Sets the pointer to null, preventing double-release. diff --git a/doc/source/stdlib/detail/function-jobque_boost-each-0x90e5d4a7ce065f6a.rst b/doc/source/stdlib/detail/function-jobque_boost-each-0x90e5d4a7ce065f6a.rst deleted file mode 100644 index 234396a579..0000000000 --- a/doc/source/stdlib/detail/function-jobque_boost-each-0x90e5d4a7ce065f6a.rst +++ /dev/null @@ -1,3 +0,0 @@ -this iterator is used to iterate over the channel in order it was pushed. -iterator stops once channel is depleted (internal entry counter is 0) -iteration can happen on multiple threads or jobs at the same time. diff --git a/doc/source/stdlib/detail/function-jobque_boost-each_clone-0xefb2f3881b19d5a7.rst b/doc/source/stdlib/detail/function-jobque_boost-each_clone-0xefb2f3881b19d5a7.rst deleted file mode 100644 index 234396a579..0000000000 --- a/doc/source/stdlib/detail/function-jobque_boost-each_clone-0xefb2f3881b19d5a7.rst +++ /dev/null @@ -1,3 +0,0 @@ -this iterator is used to iterate over the channel in order it was pushed. -iterator stops once channel is depleted (internal entry counter is 0) -iteration can happen on multiple threads or jobs at the same time. diff --git a/doc/source/stdlib/detail/function-jobque_boost-for_each-0x5e5388e94a4b7e67.rst b/doc/source/stdlib/detail/function-jobque_boost-for_each-0x5e5388e94a4b7e67.rst deleted file mode 100644 index 86866b926d..0000000000 --- a/doc/source/stdlib/detail/function-jobque_boost-for_each-0x5e5388e94a4b7e67.rst +++ /dev/null @@ -1,3 +0,0 @@ -reads input from the channel (in order it was pushed) and invokes the block on each input. -stops once channel is depleted (internal entry counter is 0) -this can happen on multiple threads or jobs at the same time. diff --git a/doc/source/stdlib/detail/function-jobque_boost-for_each_clone-0x57b98dc29e9027ae.rst b/doc/source/stdlib/detail/function-jobque_boost-for_each_clone-0x57b98dc29e9027ae.rst deleted file mode 100644 index 86866b926d..0000000000 --- a/doc/source/stdlib/detail/function-jobque_boost-for_each_clone-0x57b98dc29e9027ae.rst +++ /dev/null @@ -1,3 +0,0 @@ -reads input from the channel (in order it was pushed) and invokes the block on each input. -stops once channel is depleted (internal entry counter is 0) -this can happen on multiple threads or jobs at the same time. diff --git a/doc/source/stdlib/detail/function-jobque_boost-gather-0x82bbe06fcd2aff54.rst b/doc/source/stdlib/detail/function-jobque_boost-gather-0x82bbe06fcd2aff54.rst deleted file mode 100644 index 0a643054dc..0000000000 --- a/doc/source/stdlib/detail/function-jobque_boost-gather-0x82bbe06fcd2aff54.rst +++ /dev/null @@ -1,2 +0,0 @@ -reads input from the channel (in order it was pushed) and invokes the block on each input. -afterwards input is consumed diff --git a/doc/source/stdlib/detail/function-jobque_boost-gather_and_forward-0x5da52b4e664b2468.rst b/doc/source/stdlib/detail/function-jobque_boost-gather_and_forward-0x5da52b4e664b2468.rst deleted file mode 100644 index 0a643054dc..0000000000 --- a/doc/source/stdlib/detail/function-jobque_boost-gather_and_forward-0x5da52b4e664b2468.rst +++ /dev/null @@ -1,2 +0,0 @@ -reads input from the channel (in order it was pushed) and invokes the block on each input. -afterwards input is consumed diff --git a/doc/source/stdlib/detail/function-jobque_boost-gather_ex-0x1dba4144a1af3b8d.rst b/doc/source/stdlib/detail/function-jobque_boost-gather_ex-0x1dba4144a1af3b8d.rst deleted file mode 100644 index 0a643054dc..0000000000 --- a/doc/source/stdlib/detail/function-jobque_boost-gather_ex-0x1dba4144a1af3b8d.rst +++ /dev/null @@ -1,2 +0,0 @@ -reads input from the channel (in order it was pushed) and invokes the block on each input. -afterwards input is consumed diff --git a/doc/source/stdlib/detail/function-jobque_boost-get-0xd3804f3e2c7ab769.rst b/doc/source/stdlib/detail/function-jobque_boost-get-0xd3804f3e2c7ab769.rst deleted file mode 100644 index 2adfa998c2..0000000000 --- a/doc/source/stdlib/detail/function-jobque_boost-get-0xd3804f3e2c7ab769.rst +++ /dev/null @@ -1 +0,0 @@ -reads value from the lock box and invokes the block on it diff --git a/doc/source/stdlib/detail/function-jobque_boost-new_job-0x56cc781e95046fca.rst b/doc/source/stdlib/detail/function-jobque_boost-new_job-0x56cc781e95046fca.rst deleted file mode 100644 index f1da87d988..0000000000 --- a/doc/source/stdlib/detail/function-jobque_boost-new_job-0x56cc781e95046fca.rst +++ /dev/null @@ -1,5 +0,0 @@ -Create a new job. - * new context is cloned from the current context. - * lambda is cloned to the new context. - * new job is added to the job queue. - * once new job is invoked, lambda is invoked on the new context on the job thread. diff --git a/doc/source/stdlib/detail/function-jobque_boost-new_thread-0xb930078b8d91d7e0.rst b/doc/source/stdlib/detail/function-jobque_boost-new_thread-0xb930078b8d91d7e0.rst deleted file mode 100644 index 627cba2b3c..0000000000 --- a/doc/source/stdlib/detail/function-jobque_boost-new_thread-0xb930078b8d91d7e0.rst +++ /dev/null @@ -1,5 +0,0 @@ -Create a new thread - * new context is cloned from the current context. - * lambda is cloned to the new context. - * new thread is created. - * lambda is invoked on the new context on the new thread. diff --git a/doc/source/stdlib/detail/function-jobque_boost-parallel_for-0x1af87f018a11d982.rst b/doc/source/stdlib/detail/function-jobque_boost-parallel_for-0x1af87f018a11d982.rst deleted file mode 100644 index 223697ede5..0000000000 --- a/doc/source/stdlib/detail/function-jobque_boost-parallel_for-0x1af87f018a11d982.rst +++ /dev/null @@ -1 +0,0 @@ -this one is stub for _parallel_for diff --git a/doc/source/stdlib/detail/function-jobque_boost-parallel_for_each-0xf654fb260cc669e3.rst b/doc/source/stdlib/detail/function-jobque_boost-parallel_for_each-0xf654fb260cc669e3.rst deleted file mode 100644 index 7808608b41..0000000000 --- a/doc/source/stdlib/detail/function-jobque_boost-parallel_for_each-0xf654fb260cc669e3.rst +++ /dev/null @@ -1,4 +0,0 @@ -Convenience wrapper around ``parallel_for`` for arrays. -Partitions array indices ``[0..length(arr))`` into ``num_jobs`` chunks. -The block body is automatically wrapped in ``new_job``. -Blocks until all jobs finish. Requires ``with_job_que`` context. diff --git a/doc/source/stdlib/detail/function-jobque_boost-parallel_map-0x864f695cc6c364ea.rst b/doc/source/stdlib/detail/function-jobque_boost-parallel_map-0x864f695cc6c364ea.rst deleted file mode 100644 index 2bf2a98f70..0000000000 --- a/doc/source/stdlib/detail/function-jobque_boost-parallel_map-0x864f695cc6c364ea.rst +++ /dev/null @@ -1,4 +0,0 @@ -Partitions array indices ``[0..length(arr))`` into ``num_jobs`` chunks. -The block body is automatically wrapped in ``new_job``. -Blocks until all jobs finish. Results are available in ``results_channel`` after this call returns. -Requires ``with_job_que`` context. diff --git a/doc/source/stdlib/detail/function-jobque_boost-peek-0xed0ce7f3ed5ceaff.rst b/doc/source/stdlib/detail/function-jobque_boost-peek-0xed0ce7f3ed5ceaff.rst deleted file mode 100644 index b3fdb3e8c3..0000000000 --- a/doc/source/stdlib/detail/function-jobque_boost-peek-0xed0ce7f3ed5ceaff.rst +++ /dev/null @@ -1,2 +0,0 @@ -reads input from the channel (in order it was pushed) and invokes the block on each input. -afterwards input is not consumed diff --git a/doc/source/stdlib/detail/function-jobque_boost-pop_and_clone_one-0xfd4267c578b2642.rst b/doc/source/stdlib/detail/function-jobque_boost-pop_and_clone_one-0xfd4267c578b2642.rst deleted file mode 100644 index 4012779952..0000000000 --- a/doc/source/stdlib/detail/function-jobque_boost-pop_and_clone_one-0xfd4267c578b2642.rst +++ /dev/null @@ -1 +0,0 @@ -reads one command from channel diff --git a/doc/source/stdlib/detail/function-jobque_boost-pop_one-0x2faa1e6a0fa1884a.rst b/doc/source/stdlib/detail/function-jobque_boost-pop_one-0x2faa1e6a0fa1884a.rst deleted file mode 100644 index 4012779952..0000000000 --- a/doc/source/stdlib/detail/function-jobque_boost-pop_one-0x2faa1e6a0fa1884a.rst +++ /dev/null @@ -1 +0,0 @@ -reads one command from channel diff --git a/doc/source/stdlib/detail/function-jobque_boost-pop_with_timeout-0x54cf9dd1eddfefda.rst b/doc/source/stdlib/detail/function-jobque_boost-pop_with_timeout-0x54cf9dd1eddfefda.rst deleted file mode 100644 index 44cb8a9596..0000000000 --- a/doc/source/stdlib/detail/function-jobque_boost-pop_with_timeout-0x54cf9dd1eddfefda.rst +++ /dev/null @@ -1,2 +0,0 @@ -Pop from channel with timeout in milliseconds. -Returns true if an item was available within the timeout, false if timed out or channel exhausted. diff --git a/doc/source/stdlib/detail/function-jobque_boost-pop_with_timeout_clone-0xacedef555925e3cb.rst b/doc/source/stdlib/detail/function-jobque_boost-pop_with_timeout_clone-0xacedef555925e3cb.rst deleted file mode 100644 index 647c61c33f..0000000000 --- a/doc/source/stdlib/detail/function-jobque_boost-pop_with_timeout_clone-0xacedef555925e3cb.rst +++ /dev/null @@ -1,2 +0,0 @@ -Pop from channel with timeout and clone. Returns true if an item was available within the timeout. -The popped value is cloned to the current context before invoking the block. diff --git a/doc/source/stdlib/detail/function-jobque_boost-push-0xb4eb9e948dce6edc.rst b/doc/source/stdlib/detail/function-jobque_boost-push-0xb4eb9e948dce6edc.rst deleted file mode 100644 index 8bfe2b975f..0000000000 --- a/doc/source/stdlib/detail/function-jobque_boost-push-0xb4eb9e948dce6edc.rst +++ /dev/null @@ -1 +0,0 @@ -pushes value to the channel (at the end) diff --git a/doc/source/stdlib/detail/function-jobque_boost-push_batch-0xbd4162b10214a94b.rst b/doc/source/stdlib/detail/function-jobque_boost-push_batch-0xbd4162b10214a94b.rst deleted file mode 100644 index aee0d5568b..0000000000 --- a/doc/source/stdlib/detail/function-jobque_boost-push_batch-0xbd4162b10214a94b.rst +++ /dev/null @@ -1 +0,0 @@ -pushes values to the channel (at the end) diff --git a/doc/source/stdlib/detail/function-jobque_boost-push_batch_clone-0x51435a5abfa313d9.rst b/doc/source/stdlib/detail/function-jobque_boost-push_batch_clone-0x51435a5abfa313d9.rst deleted file mode 100644 index a02723aac7..0000000000 --- a/doc/source/stdlib/detail/function-jobque_boost-push_batch_clone-0x51435a5abfa313d9.rst +++ /dev/null @@ -1 +0,0 @@ -clones data and pushes values to the channel (at the end) diff --git a/doc/source/stdlib/detail/function-jobque_boost-push_clone-0x41659248cca91c60.rst b/doc/source/stdlib/detail/function-jobque_boost-push_clone-0x41659248cca91c60.rst deleted file mode 100644 index 985c87def1..0000000000 --- a/doc/source/stdlib/detail/function-jobque_boost-push_clone-0x41659248cca91c60.rst +++ /dev/null @@ -1 +0,0 @@ -clones data and pushes value to the channel (at the end) diff --git a/doc/source/stdlib/detail/function-jobque_boost-release_capture_jobque_channel-0xefe02f2964a7e347.rst b/doc/source/stdlib/detail/function-jobque_boost-release_capture_jobque_channel-0xefe02f2964a7e347.rst deleted file mode 100644 index a854af7a14..0000000000 --- a/doc/source/stdlib/detail/function-jobque_boost-release_capture_jobque_channel-0xefe02f2964a7e347.rst +++ /dev/null @@ -1 +0,0 @@ -this function is used to release a channel that is used by the jobque. diff --git a/doc/source/stdlib/detail/function-jobque_boost-release_capture_jobque_job_status-0xb076afb42ff597a4.rst b/doc/source/stdlib/detail/function-jobque_boost-release_capture_jobque_job_status-0xb076afb42ff597a4.rst deleted file mode 100644 index d77b8e7f30..0000000000 --- a/doc/source/stdlib/detail/function-jobque_boost-release_capture_jobque_job_status-0xb076afb42ff597a4.rst +++ /dev/null @@ -1 +0,0 @@ -this function is used to release a job status that is used by the jobque. diff --git a/doc/source/stdlib/detail/function-jobque_boost-release_capture_jobque_lock_box-0xe26ac0ed2e2fe514.rst b/doc/source/stdlib/detail/function-jobque_boost-release_capture_jobque_lock_box-0xe26ac0ed2e2fe514.rst deleted file mode 100644 index 156f272136..0000000000 --- a/doc/source/stdlib/detail/function-jobque_boost-release_capture_jobque_lock_box-0xe26ac0ed2e2fe514.rst +++ /dev/null @@ -1 +0,0 @@ -this function is used to release a lock box that is used by the jobque. diff --git a/doc/source/stdlib/detail/function-jobque_boost-set-0x37da2acafee8b53d.rst b/doc/source/stdlib/detail/function-jobque_boost-set-0x37da2acafee8b53d.rst deleted file mode 100644 index f85fb6242b..0000000000 --- a/doc/source/stdlib/detail/function-jobque_boost-set-0x37da2acafee8b53d.rst +++ /dev/null @@ -1 +0,0 @@ -clones data and sets value to the lock box diff --git a/doc/source/stdlib/detail/function-jobque_boost-set-0x6b1ce236d0132956.rst b/doc/source/stdlib/detail/function-jobque_boost-set-0x6b1ce236d0132956.rst deleted file mode 100644 index 0d94a81934..0000000000 --- a/doc/source/stdlib/detail/function-jobque_boost-set-0x6b1ce236d0132956.rst +++ /dev/null @@ -1 +0,0 @@ -sets value to the lock box diff --git a/doc/source/stdlib/detail/function-jobque_boost-try_pop-0x593ff254f51b03cb.rst b/doc/source/stdlib/detail/function-jobque_boost-try_pop-0x593ff254f51b03cb.rst deleted file mode 100644 index dadb39738c..0000000000 --- a/doc/source/stdlib/detail/function-jobque_boost-try_pop-0x593ff254f51b03cb.rst +++ /dev/null @@ -1,2 +0,0 @@ -Non-blocking pop from channel. Returns true if an item was available, false if channel was empty. -Does not wait for data — returns immediately. diff --git a/doc/source/stdlib/detail/function-jobque_boost-try_pop_clone-0x383edbbae27773ac.rst b/doc/source/stdlib/detail/function-jobque_boost-try_pop_clone-0x383edbbae27773ac.rst deleted file mode 100644 index 2d34b7bd14..0000000000 --- a/doc/source/stdlib/detail/function-jobque_boost-try_pop_clone-0x383edbbae27773ac.rst +++ /dev/null @@ -1,2 +0,0 @@ -Non-blocking pop with clone from channel. Returns true if an item was available, false if channel was empty. -The popped value is cloned to the current context before invoking the block. diff --git a/doc/source/stdlib/detail/function-jobque_boost-update-0x3f025cfaa2bd27ea.rst b/doc/source/stdlib/detail/function-jobque_boost-update-0x3f025cfaa2bd27ea.rst deleted file mode 100644 index 2c69c6a314..0000000000 --- a/doc/source/stdlib/detail/function-jobque_boost-update-0x3f025cfaa2bd27ea.rst +++ /dev/null @@ -1 +0,0 @@ -update value in the lock box and invokes the block on it diff --git a/doc/source/stdlib/detail/function-jobque_boost-with_wait_group-0x34f4640753ac7d1a.rst b/doc/source/stdlib/detail/function-jobque_boost-with_wait_group-0x34f4640753ac7d1a.rst deleted file mode 100644 index de628ccb90..0000000000 --- a/doc/source/stdlib/detail/function-jobque_boost-with_wait_group-0x34f4640753ac7d1a.rst +++ /dev/null @@ -1,3 +0,0 @@ -Creates a wait group starting at count 0 with auto-join. -Use ``append`` to dynamically add expected notifications before dispatching work. -The block returns only after all notifications have been received. diff --git a/doc/source/stdlib/detail/function-jobque_boost-with_wait_group-0xe687d066099976f9.rst b/doc/source/stdlib/detail/function-jobque_boost-with_wait_group-0xe687d066099976f9.rst deleted file mode 100644 index d2b36e44e9..0000000000 --- a/doc/source/stdlib/detail/function-jobque_boost-with_wait_group-0xe687d066099976f9.rst +++ /dev/null @@ -1,3 +0,0 @@ -Creates a wait group with the given notification count and auto-joins after the block. -Each unit of work should call ``notify_and_release`` (or ``done``) when complete. -The block returns only after all notifications have been received. diff --git a/doc/source/stdlib/detail/function-json-JV-0x16d1cc32f9c4f849.rst b/doc/source/stdlib/detail/function-json-JV-0x16d1cc32f9c4f849.rst deleted file mode 100644 index e888aa06fb..0000000000 --- a/doc/source/stdlib/detail/function-json-JV-0x16d1cc32f9c4f849.rst +++ /dev/null @@ -1 +0,0 @@ -Creates `JsonValue` out of uint16 value. diff --git a/doc/source/stdlib/detail/function-json-JV-0x16d3cd32f9c85ffc.rst b/doc/source/stdlib/detail/function-json-JV-0x16d3cd32f9c85ffc.rst deleted file mode 100644 index 722c759d0d..0000000000 --- a/doc/source/stdlib/detail/function-json-JV-0x16d3cd32f9c85ffc.rst +++ /dev/null @@ -1 +0,0 @@ -Creates `JsonValue` out of uint64 value. diff --git a/doc/source/stdlib/detail/function-json-JV-0x1707d332fa20c62e.rst b/doc/source/stdlib/detail/function-json-JV-0x1707d332fa20c62e.rst deleted file mode 100644 index a87c6952a6..0000000000 --- a/doc/source/stdlib/detail/function-json-JV-0x1707d332fa20c62e.rst +++ /dev/null @@ -1 +0,0 @@ -Creates `JsonValue` out of uint8 value. diff --git a/doc/source/stdlib/detail/function-json-JV-0x2009c03d3b2bebb2.rst b/doc/source/stdlib/detail/function-json-JV-0x2009c03d3b2bebb2.rst deleted file mode 100644 index 1f17402844..0000000000 --- a/doc/source/stdlib/detail/function-json-JV-0x2009c03d3b2bebb2.rst +++ /dev/null @@ -1 +0,0 @@ -Creates `JsonValue` out of double value. diff --git a/doc/source/stdlib/detail/function-json-JV-0x306bfbbf6a795f12.rst b/doc/source/stdlib/detail/function-json-JV-0x306bfbbf6a795f12.rst deleted file mode 100644 index df9defee5f..0000000000 --- a/doc/source/stdlib/detail/function-json-JV-0x306bfbbf6a795f12.rst +++ /dev/null @@ -1 +0,0 @@ -Creates `JsonValue` out of string value. diff --git a/doc/source/stdlib/detail/function-json-JV-0x36d6574e532463f4.rst b/doc/source/stdlib/detail/function-json-JV-0x36d6574e532463f4.rst deleted file mode 100644 index 7d7b5f1f31..0000000000 --- a/doc/source/stdlib/detail/function-json-JV-0x36d6574e532463f4.rst +++ /dev/null @@ -1 +0,0 @@ -Creates `JsonValue` out of bitfield16 value. diff --git a/doc/source/stdlib/detail/function-json-JV-0x57f12a4b472e2cfa.rst b/doc/source/stdlib/detail/function-json-JV-0x57f12a4b472e2cfa.rst deleted file mode 100644 index 11e1f90889..0000000000 --- a/doc/source/stdlib/detail/function-json-JV-0x57f12a4b472e2cfa.rst +++ /dev/null @@ -1 +0,0 @@ -Creates `JsonValue` out of float value. diff --git a/doc/source/stdlib/detail/function-json-JV-0x5b9d0ced1156751f.rst b/doc/source/stdlib/detail/function-json-JV-0x5b9d0ced1156751f.rst deleted file mode 100644 index 118c034a9b..0000000000 --- a/doc/source/stdlib/detail/function-json-JV-0x5b9d0ced1156751f.rst +++ /dev/null @@ -1 +0,0 @@ -Creates `JsonValue` out of bitfield8 value. diff --git a/doc/source/stdlib/detail/function-json-JV-0x7be002ea58db7a19.rst b/doc/source/stdlib/detail/function-json-JV-0x7be002ea58db7a19.rst deleted file mode 100644 index 577b741f90..0000000000 --- a/doc/source/stdlib/detail/function-json-JV-0x7be002ea58db7a19.rst +++ /dev/null @@ -1 +0,0 @@ -Creates `JsonValue` out of bitfield64 value. diff --git a/doc/source/stdlib/detail/function-json-JV-0x814552217927ee6f.rst b/doc/source/stdlib/detail/function-json-JV-0x814552217927ee6f.rst deleted file mode 100644 index 6bc71954ff..0000000000 --- a/doc/source/stdlib/detail/function-json-JV-0x814552217927ee6f.rst +++ /dev/null @@ -1 +0,0 @@ -Creates `JsonValue` out of object (table string->JsonValue?) value. diff --git a/doc/source/stdlib/detail/function-json-JV-0xb4a2c7406a99d564.rst b/doc/source/stdlib/detail/function-json-JV-0xb4a2c7406a99d564.rst deleted file mode 100644 index faea115586..0000000000 --- a/doc/source/stdlib/detail/function-json-JV-0xb4a2c7406a99d564.rst +++ /dev/null @@ -1 +0,0 @@ -Creates `JsonValue` out of int64 value. diff --git a/doc/source/stdlib/detail/function-json-JV-0xb808c9406d7d01ca.rst b/doc/source/stdlib/detail/function-json-JV-0xb808c9406d7d01ca.rst deleted file mode 100644 index 8d5c68113e..0000000000 --- a/doc/source/stdlib/detail/function-json-JV-0xb808c9406d7d01ca.rst +++ /dev/null @@ -1 +0,0 @@ -Creates `JsonValue` out of int16 value. diff --git a/doc/source/stdlib/detail/function-json-JV-0xc3ad058b3e188167.rst b/doc/source/stdlib/detail/function-json-JV-0xc3ad058b3e188167.rst deleted file mode 100644 index 6722fe84a1..0000000000 --- a/doc/source/stdlib/detail/function-json-JV-0xc3ad058b3e188167.rst +++ /dev/null @@ -1 +0,0 @@ -Creates `JsonValue` out of array of `JsonValue?` value. diff --git a/doc/source/stdlib/detail/function-json-JV-0xccada1ad234bfe22.rst b/doc/source/stdlib/detail/function-json-JV-0xccada1ad234bfe22.rst deleted file mode 100644 index 59053458f0..0000000000 --- a/doc/source/stdlib/detail/function-json-JV-0xccada1ad234bfe22.rst +++ /dev/null @@ -1 +0,0 @@ -Creates `JsonValue` out of uint value. diff --git a/doc/source/stdlib/detail/function-json-JV-0xd3c782ad29543cc6.rst b/doc/source/stdlib/detail/function-json-JV-0xd3c782ad29543cc6.rst deleted file mode 100644 index bc88d2a15e..0000000000 --- a/doc/source/stdlib/detail/function-json-JV-0xd3c782ad29543cc6.rst +++ /dev/null @@ -1 +0,0 @@ -Creates `JsonValue` out of boolean value. diff --git a/doc/source/stdlib/detail/function-json-JV-0xd67c97ad2b2a8938.rst b/doc/source/stdlib/detail/function-json-JV-0xd67c97ad2b2a8938.rst deleted file mode 100644 index 272e2fa0ba..0000000000 --- a/doc/source/stdlib/detail/function-json-JV-0xd67c97ad2b2a8938.rst +++ /dev/null @@ -1 +0,0 @@ -Creates `JsonValue` out of int8 value. diff --git a/doc/source/stdlib/detail/function-json-JV-0xd6b497ad2b89b138.rst b/doc/source/stdlib/detail/function-json-JV-0xd6b497ad2b89b138.rst deleted file mode 100644 index 23b2c55a67..0000000000 --- a/doc/source/stdlib/detail/function-json-JV-0xd6b497ad2b89b138.rst +++ /dev/null @@ -1 +0,0 @@ -Creates `JsonValue` out of int value. diff --git a/doc/source/stdlib/detail/function-json-JV-0xdc04f9425da5182e.rst b/doc/source/stdlib/detail/function-json-JV-0xdc04f9425da5182e.rst deleted file mode 100644 index 7d9f7fa594..0000000000 --- a/doc/source/stdlib/detail/function-json-JV-0xdc04f9425da5182e.rst +++ /dev/null @@ -1 +0,0 @@ -Creates `JsonValue` out of bitfield value. diff --git a/doc/source/stdlib/detail/function-json-JVNull-0x2ba681ad7411091f.rst b/doc/source/stdlib/detail/function-json-JVNull-0x2ba681ad7411091f.rst deleted file mode 100644 index 5b727c50a5..0000000000 --- a/doc/source/stdlib/detail/function-json-JVNull-0x2ba681ad7411091f.rst +++ /dev/null @@ -1 +0,0 @@ -Creates `JsonValue` representing `null`. diff --git a/doc/source/stdlib/detail/function-json-_lexer-0xc98329fd24e41e71.rst b/doc/source/stdlib/detail/function-json-_lexer-0xc98329fd24e41e71.rst deleted file mode 100644 index b670999447..0000000000 --- a/doc/source/stdlib/detail/function-json-_lexer-0xc98329fd24e41e71.rst +++ /dev/null @@ -1 +0,0 @@ -creates a lexer generator from the input `stext` string. diff --git a/doc/source/stdlib/detail/function-json-expect_symbol-0x4f2509f4c1e8f821.rst b/doc/source/stdlib/detail/function-json-expect_symbol-0x4f2509f4c1e8f821.rst deleted file mode 100644 index 5437bf0f93..0000000000 --- a/doc/source/stdlib/detail/function-json-expect_symbol-0x4f2509f4c1e8f821.rst +++ /dev/null @@ -1 +0,0 @@ -expects the next token to be symbol `sym`. diff --git a/doc/source/stdlib/detail/function-json-expect_token-0x8d587ff06a6f575b.rst b/doc/source/stdlib/detail/function-json-expect_token-0x8d587ff06a6f575b.rst deleted file mode 100644 index 0570f3c202..0000000000 --- a/doc/source/stdlib/detail/function-json-expect_token-0x8d587ff06a6f575b.rst +++ /dev/null @@ -1 +0,0 @@ -expects the next token to be of variant index `vindex`. diff --git a/doc/source/stdlib/detail/function-json-lexer-0x104ed47f33419b1d.rst b/doc/source/stdlib/detail/function-json-lexer-0x104ed47f33419b1d.rst deleted file mode 100644 index 5cefcb61af..0000000000 --- a/doc/source/stdlib/detail/function-json-lexer-0x104ed47f33419b1d.rst +++ /dev/null @@ -1 +0,0 @@ -creates a lexer generator from the input `text` array of uint8. diff --git a/doc/source/stdlib/detail/function-json-lexer-0xae0c38b7ed76ea2f.rst b/doc/source/stdlib/detail/function-json-lexer-0xae0c38b7ed76ea2f.rst deleted file mode 100644 index 23e98b21f9..0000000000 --- a/doc/source/stdlib/detail/function-json-lexer-0xae0c38b7ed76ea2f.rst +++ /dev/null @@ -1 +0,0 @@ -creates a lexer generator from the input `text` string. diff --git a/doc/source/stdlib/detail/function-json-next-0x537104d25e633766.rst b/doc/source/stdlib/detail/function-json-next-0x537104d25e633766.rst deleted file mode 100644 index 52985ce745..0000000000 --- a/doc/source/stdlib/detail/function-json-next-0x537104d25e633766.rst +++ /dev/null @@ -1 +0,0 @@ -advances the `text` iterator, updates `character`, `line` and `row`. diff --git a/doc/source/stdlib/detail/function-json-parse_value-0xbd76b135e6a2f9dc.rst b/doc/source/stdlib/detail/function-json-parse_value-0xbd76b135e6a2f9dc.rst deleted file mode 100644 index a05acdc353..0000000000 --- a/doc/source/stdlib/detail/function-json-parse_value-0xbd76b135e6a2f9dc.rst +++ /dev/null @@ -1 +0,0 @@ -parses a JSON value from the token iterator `itv`. diff --git a/doc/source/stdlib/detail/function-json-read_json-0x6d83402b7d1f307f.rst b/doc/source/stdlib/detail/function-json-read_json-0x6d83402b7d1f307f.rst deleted file mode 100644 index ce5528b10d..0000000000 --- a/doc/source/stdlib/detail/function-json-read_json-0x6d83402b7d1f307f.rst +++ /dev/null @@ -1,2 +0,0 @@ -reads JSON from the `text` string. -if `error` is not empty, it contains the parsing error message. diff --git a/doc/source/stdlib/detail/function-json-read_json-0xe5a7c0a3d9cc08bf.rst b/doc/source/stdlib/detail/function-json-read_json-0xe5a7c0a3d9cc08bf.rst deleted file mode 100644 index 14c34010f1..0000000000 --- a/doc/source/stdlib/detail/function-json-read_json-0xe5a7c0a3d9cc08bf.rst +++ /dev/null @@ -1,2 +0,0 @@ -reads JSON from the `text` array of uint8. -if `error` is not empty, it contains the parsing error message. diff --git a/doc/source/stdlib/detail/function-json-set_allow_duplicate_keys-0x5c01f78d6c78b0a2.rst b/doc/source/stdlib/detail/function-json-set_allow_duplicate_keys-0x5c01f78d6c78b0a2.rst deleted file mode 100644 index 19e3e3efc6..0000000000 --- a/doc/source/stdlib/detail/function-json-set_allow_duplicate_keys-0x5c01f78d6c78b0a2.rst +++ /dev/null @@ -1 +0,0 @@ -if `value` is true, then duplicate keys are allowed in objects. the later key overwrites the earlier one. diff --git a/doc/source/stdlib/detail/function-json-set_no_empty_arrays-0x85ec48b19ee422b6.rst b/doc/source/stdlib/detail/function-json-set_no_empty_arrays-0x85ec48b19ee422b6.rst deleted file mode 100644 index 87e403268c..0000000000 --- a/doc/source/stdlib/detail/function-json-set_no_empty_arrays-0x85ec48b19ee422b6.rst +++ /dev/null @@ -1 +0,0 @@ -if `value` is true, then empty arrays are not written at all diff --git a/doc/source/stdlib/detail/function-json-set_no_trailing_zeros-0x9878e831c84d7b42.rst b/doc/source/stdlib/detail/function-json-set_no_trailing_zeros-0x9878e831c84d7b42.rst deleted file mode 100644 index 06ce3126a9..0000000000 --- a/doc/source/stdlib/detail/function-json-set_no_trailing_zeros-0x9878e831c84d7b42.rst +++ /dev/null @@ -1 +0,0 @@ -if `value` is true, then numbers are written without trailing zeros. diff --git a/doc/source/stdlib/detail/function-json-try_fixing_broken_json-0x35034eb2a0e60dc2.rst b/doc/source/stdlib/detail/function-json-try_fixing_broken_json-0x35034eb2a0e60dc2.rst deleted file mode 100644 index e69e20982c..0000000000 --- a/doc/source/stdlib/detail/function-json-try_fixing_broken_json-0x35034eb2a0e60dc2.rst +++ /dev/null @@ -1,5 +0,0 @@ -fixes broken json. so far supported -1. "string" + "string" string concatenation -2. "text "nested text" text" nested quotes -3. extra , at the end of object or array -4. /uXXXXXX sequences in the middle of white space diff --git a/doc/source/stdlib/detail/function-json-write_json-0xb988fa7643390656.rst b/doc/source/stdlib/detail/function-json-write_json-0xb988fa7643390656.rst deleted file mode 100644 index c821dfb757..0000000000 --- a/doc/source/stdlib/detail/function-json-write_json-0xb988fa7643390656.rst +++ /dev/null @@ -1 +0,0 @@ -Overload accepting temporary type diff --git a/doc/source/stdlib/detail/function-json-write_json-0xf8efc74d5dba1971.rst b/doc/source/stdlib/detail/function-json-write_json-0xf8efc74d5dba1971.rst deleted file mode 100644 index f4651320cd..0000000000 --- a/doc/source/stdlib/detail/function-json-write_json-0xf8efc74d5dba1971.rst +++ /dev/null @@ -1 +0,0 @@ -returns JSON (textual) representation of JsonValue as a string. diff --git a/doc/source/stdlib/detail/function-json-write_value-0xfeec31630908fb44.rst b/doc/source/stdlib/detail/function-json-write_value-0xfeec31630908fb44.rst deleted file mode 100644 index 1e19629aff..0000000000 --- a/doc/source/stdlib/detail/function-json-write_value-0xfeec31630908fb44.rst +++ /dev/null @@ -1 +0,0 @@ -writes JSON value `jsv` into the `writer` at indentation `depth`. diff --git a/doc/source/stdlib/detail/function-json_boost-BetterJsonMacro-visitExprAsVariant-0x8b5a1e876b9cb8e8.rst b/doc/source/stdlib/detail/function-json_boost-BetterJsonMacro-visitExprAsVariant-0x8b5a1e876b9cb8e8.rst deleted file mode 100644 index f04043393b..0000000000 --- a/doc/source/stdlib/detail/function-json_boost-BetterJsonMacro-visitExprAsVariant-0x8b5a1e876b9cb8e8.rst +++ /dev/null @@ -1 +0,0 @@ -Visit ExprAsVariant node. diff --git a/doc/source/stdlib/detail/function-json_boost-BetterJsonMacro-visitExprIsVariant-0xa10537aa26ed18e8.rst b/doc/source/stdlib/detail/function-json_boost-BetterJsonMacro-visitExprIsVariant-0xa10537aa26ed18e8.rst deleted file mode 100644 index ff3bd5838b..0000000000 --- a/doc/source/stdlib/detail/function-json_boost-BetterJsonMacro-visitExprIsVariant-0xa10537aa26ed18e8.rst +++ /dev/null @@ -1 +0,0 @@ -Visit ExprIsVariant node. diff --git a/doc/source/stdlib/detail/function-json_boost-BetterJsonMacro-visitExprSafeAsVariant-0x65163b091b28e8a8.rst b/doc/source/stdlib/detail/function-json_boost-BetterJsonMacro-visitExprSafeAsVariant-0x65163b091b28e8a8.rst deleted file mode 100644 index 1596d0b5b3..0000000000 --- a/doc/source/stdlib/detail/function-json_boost-BetterJsonMacro-visitExprSafeAsVariant-0x65163b091b28e8a8.rst +++ /dev/null @@ -1 +0,0 @@ -Visit ExprSafeAsVariant node. diff --git a/doc/source/stdlib/detail/function-json_boost-JV-0x49047c6da3d7b76d.rst b/doc/source/stdlib/detail/function-json_boost-JV-0x49047c6da3d7b76d.rst deleted file mode 100644 index 4f8269579d..0000000000 --- a/doc/source/stdlib/detail/function-json_boost-JV-0x49047c6da3d7b76d.rst +++ /dev/null @@ -1 +0,0 @@ -Creates array of four JsonValues. diff --git a/doc/source/stdlib/detail/function-json_boost-JV-0x56600c00fe8e60fd.rst b/doc/source/stdlib/detail/function-json_boost-JV-0x56600c00fe8e60fd.rst deleted file mode 100644 index fea3df06ca..0000000000 --- a/doc/source/stdlib/detail/function-json_boost-JV-0x56600c00fe8e60fd.rst +++ /dev/null @@ -1 +0,0 @@ -Creates array of eight JsonValues. diff --git a/doc/source/stdlib/detail/function-json_boost-JV-0x5855138962357584.rst b/doc/source/stdlib/detail/function-json_boost-JV-0x5855138962357584.rst deleted file mode 100644 index af4063ad99..0000000000 --- a/doc/source/stdlib/detail/function-json_boost-JV-0x5855138962357584.rst +++ /dev/null @@ -1,2 +0,0 @@ -Creates `JsonValue` out of value. -This is the main dispatch function that handles various types. diff --git a/doc/source/stdlib/detail/function-json_boost-JV-0x5da5b1a5c07329e5.rst b/doc/source/stdlib/detail/function-json_boost-JV-0x5da5b1a5c07329e5.rst deleted file mode 100644 index c0c068aeaf..0000000000 --- a/doc/source/stdlib/detail/function-json_boost-JV-0x5da5b1a5c07329e5.rst +++ /dev/null @@ -1 +0,0 @@ -Creates array of ten JsonValues. diff --git a/doc/source/stdlib/detail/function-json_boost-JV-0x8adaa36fa917f3f8.rst b/doc/source/stdlib/detail/function-json_boost-JV-0x8adaa36fa917f3f8.rst deleted file mode 100644 index df67f73a47..0000000000 --- a/doc/source/stdlib/detail/function-json_boost-JV-0x8adaa36fa917f3f8.rst +++ /dev/null @@ -1 +0,0 @@ -Creates array of seven JsonValues. diff --git a/doc/source/stdlib/detail/function-json_boost-JV-0xc137e989bbb9f085.rst b/doc/source/stdlib/detail/function-json_boost-JV-0xc137e989bbb9f085.rst deleted file mode 100644 index 51a6cf927a..0000000000 --- a/doc/source/stdlib/detail/function-json_boost-JV-0xc137e989bbb9f085.rst +++ /dev/null @@ -1 +0,0 @@ -Creates array of two JsonValues. diff --git a/doc/source/stdlib/detail/function-json_boost-JV-0xd12086746bbd009.rst b/doc/source/stdlib/detail/function-json_boost-JV-0xd12086746bbd009.rst deleted file mode 100644 index 7086876f5a..0000000000 --- a/doc/source/stdlib/detail/function-json_boost-JV-0xd12086746bbd009.rst +++ /dev/null @@ -1 +0,0 @@ -Creates `JsonValue` out of value. diff --git a/doc/source/stdlib/detail/function-json_boost-JV-0xd68c83f79eecdfc8.rst b/doc/source/stdlib/detail/function-json_boost-JV-0xd68c83f79eecdfc8.rst deleted file mode 100644 index 29fd05992e..0000000000 --- a/doc/source/stdlib/detail/function-json_boost-JV-0xd68c83f79eecdfc8.rst +++ /dev/null @@ -1 +0,0 @@ -Creates array of three JsonValues. diff --git a/doc/source/stdlib/detail/function-json_boost-JV-0xddcc842ba1ee4855.rst b/doc/source/stdlib/detail/function-json_boost-JV-0xddcc842ba1ee4855.rst deleted file mode 100644 index ce8bef9c65..0000000000 --- a/doc/source/stdlib/detail/function-json_boost-JV-0xddcc842ba1ee4855.rst +++ /dev/null @@ -1 +0,0 @@ -Creates array of six JsonValues. diff --git a/doc/source/stdlib/detail/function-json_boost-JV-0xe277e18712e40a30.rst b/doc/source/stdlib/detail/function-json_boost-JV-0xe277e18712e40a30.rst deleted file mode 100644 index 5f3e573473..0000000000 --- a/doc/source/stdlib/detail/function-json_boost-JV-0xe277e18712e40a30.rst +++ /dev/null @@ -1 +0,0 @@ -Creates array of five JsonValues. diff --git a/doc/source/stdlib/detail/function-json_boost-JV-0xf5983efced57f820.rst b/doc/source/stdlib/detail/function-json_boost-JV-0xf5983efced57f820.rst deleted file mode 100644 index 09f990d1a9..0000000000 --- a/doc/source/stdlib/detail/function-json_boost-JV-0xf5983efced57f820.rst +++ /dev/null @@ -1 +0,0 @@ -Creates array of nine JsonValues. diff --git a/doc/source/stdlib/detail/function-json_boost-JsonReader-accept-0x9aa01b6e3742a3b7.rst b/doc/source/stdlib/detail/function-json_boost-JsonReader-accept-0x9aa01b6e3742a3b7.rst deleted file mode 100644 index f7fadeb45e..0000000000 --- a/doc/source/stdlib/detail/function-json_boost-JsonReader-accept-0x9aa01b6e3742a3b7.rst +++ /dev/null @@ -1 +0,0 @@ -Implement the accept method to read until '%%' is found. diff --git a/doc/source/stdlib/detail/function-json_boost-JsonReader-visit-0xb28aae7be0f4edca.rst b/doc/source/stdlib/detail/function-json_boost-JsonReader-visit-0xb28aae7be0f4edca.rst deleted file mode 100644 index b74c562578..0000000000 --- a/doc/source/stdlib/detail/function-json_boost-JsonReader-visit-0xb28aae7be0f4edca.rst +++ /dev/null @@ -1 +0,0 @@ -Visit the ExprReader node and parse the JSON content. diff --git a/doc/source/stdlib/detail/function-json_boost-_q__dot_-0x232eb70b35fb3c80.rst b/doc/source/stdlib/detail/function-json_boost-_q__dot_-0x232eb70b35fb3c80.rst deleted file mode 100644 index cf765ac59b..0000000000 --- a/doc/source/stdlib/detail/function-json_boost-_q__dot_-0x232eb70b35fb3c80.rst +++ /dev/null @@ -1 +0,0 @@ -Returns the value of the key in the JSON object, if it exists. diff --git a/doc/source/stdlib/detail/function-json_boost-_q__dot_-0xe57eecb71d6e9129.rst b/doc/source/stdlib/detail/function-json_boost-_q__dot_-0xe57eecb71d6e9129.rst deleted file mode 100644 index cf765ac59b..0000000000 --- a/doc/source/stdlib/detail/function-json_boost-_q__dot_-0xe57eecb71d6e9129.rst +++ /dev/null @@ -1 +0,0 @@ -Returns the value of the key in the JSON object, if it exists. diff --git a/doc/source/stdlib/detail/function-json_boost-_q__dot__rq_value-0x7a48f00c1fca9161.rst b/doc/source/stdlib/detail/function-json_boost-_q__dot__rq_value-0x7a48f00c1fca9161.rst deleted file mode 100644 index 11087636e3..0000000000 --- a/doc/source/stdlib/detail/function-json_boost-_q__dot__rq_value-0x7a48f00c1fca9161.rst +++ /dev/null @@ -1 +0,0 @@ -Returns the value of the JSON object, if it exists. diff --git a/doc/source/stdlib/detail/function-json_boost-_q__dot__rq_value-0xf586322bfd859eb6.rst b/doc/source/stdlib/detail/function-json_boost-_q__dot__rq_value-0xf586322bfd859eb6.rst deleted file mode 100644 index 11087636e3..0000000000 --- a/doc/source/stdlib/detail/function-json_boost-_q__dot__rq_value-0xf586322bfd859eb6.rst +++ /dev/null @@ -1 +0,0 @@ -Returns the value of the JSON object, if it exists. diff --git a/doc/source/stdlib/detail/function-json_boost-_q__lb__rb_-0x487e3f7b5510eb72.rst b/doc/source/stdlib/detail/function-json_boost-_q__lb__rb_-0x487e3f7b5510eb72.rst deleted file mode 100644 index cf765ac59b..0000000000 --- a/doc/source/stdlib/detail/function-json_boost-_q__lb__rb_-0x487e3f7b5510eb72.rst +++ /dev/null @@ -1 +0,0 @@ -Returns the value of the key in the JSON object, if it exists. diff --git a/doc/source/stdlib/detail/function-json_boost-_q__lb__rb_-0x6ca90821734efda1.rst b/doc/source/stdlib/detail/function-json_boost-_q__lb__rb_-0x6ca90821734efda1.rst deleted file mode 100644 index cf765ac59b..0000000000 --- a/doc/source/stdlib/detail/function-json_boost-_q__lb__rb_-0x6ca90821734efda1.rst +++ /dev/null @@ -1 +0,0 @@ -Returns the value of the key in the JSON object, if it exists. diff --git a/doc/source/stdlib/detail/function-json_boost-_q__lb__rb_-0x768d1081ecc46fef.rst b/doc/source/stdlib/detail/function-json_boost-_q__lb__rb_-0x768d1081ecc46fef.rst deleted file mode 100644 index 2803a378d4..0000000000 --- a/doc/source/stdlib/detail/function-json_boost-_q__lb__rb_-0x768d1081ecc46fef.rst +++ /dev/null @@ -1 +0,0 @@ -Returns the value of the index in the JSON array, if it exists. diff --git a/doc/source/stdlib/detail/function-json_boost-_q__lb__rb_-0xdf85f043c3231c94.rst b/doc/source/stdlib/detail/function-json_boost-_q__lb__rb_-0xdf85f043c3231c94.rst deleted file mode 100644 index 2803a378d4..0000000000 --- a/doc/source/stdlib/detail/function-json_boost-_q__lb__rb_-0xdf85f043c3231c94.rst +++ /dev/null @@ -1 +0,0 @@ -Returns the value of the index in the JSON array, if it exists. diff --git a/doc/source/stdlib/detail/function-json_boost-_q__q_-0x2ebbe0acef30a96.rst b/doc/source/stdlib/detail/function-json_boost-_q__q_-0x2ebbe0acef30a96.rst deleted file mode 100644 index 5ef2cc9bdd..0000000000 --- a/doc/source/stdlib/detail/function-json_boost-_q__q_-0x2ebbe0acef30a96.rst +++ /dev/null @@ -1 +0,0 @@ -Returns the value of the JSON object, if it exists, otherwise returns the default value. diff --git a/doc/source/stdlib/detail/function-json_boost-_q__q_-0x3079881905b92efd.rst b/doc/source/stdlib/detail/function-json_boost-_q__q_-0x3079881905b92efd.rst deleted file mode 100644 index 5ef2cc9bdd..0000000000 --- a/doc/source/stdlib/detail/function-json_boost-_q__q_-0x3079881905b92efd.rst +++ /dev/null @@ -1 +0,0 @@ -Returns the value of the JSON object, if it exists, otherwise returns the default value. diff --git a/doc/source/stdlib/detail/function-json_boost-_q__q_-0x307b811905bc8918.rst b/doc/source/stdlib/detail/function-json_boost-_q__q_-0x307b811905bc8918.rst deleted file mode 100644 index 5ef2cc9bdd..0000000000 --- a/doc/source/stdlib/detail/function-json_boost-_q__q_-0x307b811905bc8918.rst +++ /dev/null @@ -1 +0,0 @@ -Returns the value of the JSON object, if it exists, otherwise returns the default value. diff --git a/doc/source/stdlib/detail/function-json_boost-_q__q_-0x30877f1905d0e9b2.rst b/doc/source/stdlib/detail/function-json_boost-_q__q_-0x30877f1905d0e9b2.rst deleted file mode 100644 index 5ef2cc9bdd..0000000000 --- a/doc/source/stdlib/detail/function-json_boost-_q__q_-0x30877f1905d0e9b2.rst +++ /dev/null @@ -1 +0,0 @@ -Returns the value of the JSON object, if it exists, otherwise returns the default value. diff --git a/doc/source/stdlib/detail/function-json_boost-_q__q_-0xa3d157823d060f3e.rst b/doc/source/stdlib/detail/function-json_boost-_q__q_-0xa3d157823d060f3e.rst deleted file mode 100644 index 5ef2cc9bdd..0000000000 --- a/doc/source/stdlib/detail/function-json_boost-_q__q_-0xa3d157823d060f3e.rst +++ /dev/null @@ -1 +0,0 @@ -Returns the value of the JSON object, if it exists, otherwise returns the default value. diff --git a/doc/source/stdlib/detail/function-json_boost-_q__q_-0xc483146791c3a00a.rst b/doc/source/stdlib/detail/function-json_boost-_q__q_-0xc483146791c3a00a.rst deleted file mode 100644 index 5ef2cc9bdd..0000000000 --- a/doc/source/stdlib/detail/function-json_boost-_q__q_-0xc483146791c3a00a.rst +++ /dev/null @@ -1 +0,0 @@ -Returns the value of the JSON object, if it exists, otherwise returns the default value. diff --git a/doc/source/stdlib/detail/function-json_boost-_q__q_-0xc76883fcbfe0626e.rst b/doc/source/stdlib/detail/function-json_boost-_q__q_-0xc76883fcbfe0626e.rst deleted file mode 100644 index 5ef2cc9bdd..0000000000 --- a/doc/source/stdlib/detail/function-json_boost-_q__q_-0xc76883fcbfe0626e.rst +++ /dev/null @@ -1 +0,0 @@ -Returns the value of the JSON object, if it exists, otherwise returns the default value. diff --git a/doc/source/stdlib/detail/function-json_boost-_q__q_-0xc7af19679464064c.rst b/doc/source/stdlib/detail/function-json_boost-_q__q_-0xc7af19679464064c.rst deleted file mode 100644 index 5ef2cc9bdd..0000000000 --- a/doc/source/stdlib/detail/function-json_boost-_q__q_-0xc7af19679464064c.rst +++ /dev/null @@ -1 +0,0 @@ -Returns the value of the JSON object, if it exists, otherwise returns the default value. diff --git a/doc/source/stdlib/detail/function-json_boost-_q__q_-0xc7e7196794c32e4c.rst b/doc/source/stdlib/detail/function-json_boost-_q__q_-0xc7e7196794c32e4c.rst deleted file mode 100644 index 5ef2cc9bdd..0000000000 --- a/doc/source/stdlib/detail/function-json_boost-_q__q_-0xc7e7196794c32e4c.rst +++ /dev/null @@ -1 +0,0 @@ -Returns the value of the JSON object, if it exists, otherwise returns the default value. diff --git a/doc/source/stdlib/detail/function-json_boost-_q__q_-0xd124a5013ff3724e.rst b/doc/source/stdlib/detail/function-json_boost-_q__q_-0xd124a5013ff3724e.rst deleted file mode 100644 index 5ef2cc9bdd..0000000000 --- a/doc/source/stdlib/detail/function-json_boost-_q__q_-0xd124a5013ff3724e.rst +++ /dev/null @@ -1 +0,0 @@ -Returns the value of the JSON object, if it exists, otherwise returns the default value. diff --git a/doc/source/stdlib/detail/function-json_boost-_q__q_-0xd48aa30142d697e8.rst b/doc/source/stdlib/detail/function-json_boost-_q__q_-0xd48aa30142d697e8.rst deleted file mode 100644 index 5ef2cc9bdd..0000000000 --- a/doc/source/stdlib/detail/function-json_boost-_q__q_-0xd48aa30142d697e8.rst +++ /dev/null @@ -1 +0,0 @@ -Returns the value of the JSON object, if it exists, otherwise returns the default value. diff --git a/doc/source/stdlib/detail/function-json_boost-_q__q_-0xd86c1367a270e2be.rst b/doc/source/stdlib/detail/function-json_boost-_q__q_-0xd86c1367a270e2be.rst deleted file mode 100644 index 5ef2cc9bdd..0000000000 --- a/doc/source/stdlib/detail/function-json_boost-_q__q_-0xd86c1367a270e2be.rst +++ /dev/null @@ -1 +0,0 @@ -Returns the value of the JSON object, if it exists, otherwise returns the default value. diff --git a/doc/source/stdlib/detail/function-json_boost-from_JV-0x1080523b9338903f.rst b/doc/source/stdlib/detail/function-json_boost-from_JV-0x1080523b9338903f.rst deleted file mode 100644 index b9b7c49471..0000000000 --- a/doc/source/stdlib/detail/function-json_boost-from_JV-0x1080523b9338903f.rst +++ /dev/null @@ -1 +0,0 @@ -Parse a JSON value and return the corresponding native value. diff --git a/doc/source/stdlib/detail/function-json_boost-from_JV-0x251ba19f3ccefc47.rst b/doc/source/stdlib/detail/function-json_boost-from_JV-0x251ba19f3ccefc47.rst deleted file mode 100644 index b9b7c49471..0000000000 --- a/doc/source/stdlib/detail/function-json_boost-from_JV-0x251ba19f3ccefc47.rst +++ /dev/null @@ -1 +0,0 @@ -Parse a JSON value and return the corresponding native value. diff --git a/doc/source/stdlib/detail/function-json_boost-from_JV-0x32209a3562d4a879.rst b/doc/source/stdlib/detail/function-json_boost-from_JV-0x32209a3562d4a879.rst deleted file mode 100644 index b9b7c49471..0000000000 --- a/doc/source/stdlib/detail/function-json_boost-from_JV-0x32209a3562d4a879.rst +++ /dev/null @@ -1 +0,0 @@ -Parse a JSON value and return the corresponding native value. diff --git a/doc/source/stdlib/detail/function-json_boost-from_JV-0x407181960b848fc2.rst b/doc/source/stdlib/detail/function-json_boost-from_JV-0x407181960b848fc2.rst deleted file mode 100644 index b9b7c49471..0000000000 --- a/doc/source/stdlib/detail/function-json_boost-from_JV-0x407181960b848fc2.rst +++ /dev/null @@ -1 +0,0 @@ -Parse a JSON value and return the corresponding native value. diff --git a/doc/source/stdlib/detail/function-json_boost-from_JV-0x50ad119df7c0f518.rst b/doc/source/stdlib/detail/function-json_boost-from_JV-0x50ad119df7c0f518.rst deleted file mode 100644 index 99aaaffc3b..0000000000 --- a/doc/source/stdlib/detail/function-json_boost-from_JV-0x50ad119df7c0f518.rst +++ /dev/null @@ -1,2 +0,0 @@ -Parse a JSON value and return the corresponding value of any type. -This is the main dispatch function that handles various types. diff --git a/doc/source/stdlib/detail/function-json_boost-from_JV-0x654fbc7070f320ab.rst b/doc/source/stdlib/detail/function-json_boost-from_JV-0x654fbc7070f320ab.rst deleted file mode 100644 index b9b7c49471..0000000000 --- a/doc/source/stdlib/detail/function-json_boost-from_JV-0x654fbc7070f320ab.rst +++ /dev/null @@ -1 +0,0 @@ -Parse a JSON value and return the corresponding native value. diff --git a/doc/source/stdlib/detail/function-json_boost-from_JV-0x67cf2f8d54cc7543.rst b/doc/source/stdlib/detail/function-json_boost-from_JV-0x67cf2f8d54cc7543.rst deleted file mode 100644 index b9b7c49471..0000000000 --- a/doc/source/stdlib/detail/function-json_boost-from_JV-0x67cf2f8d54cc7543.rst +++ /dev/null @@ -1 +0,0 @@ -Parse a JSON value and return the corresponding native value. diff --git a/doc/source/stdlib/detail/function-json_boost-from_JV-0x705f5bf3bf91a125.rst b/doc/source/stdlib/detail/function-json_boost-from_JV-0x705f5bf3bf91a125.rst deleted file mode 100644 index b9b7c49471..0000000000 --- a/doc/source/stdlib/detail/function-json_boost-from_JV-0x705f5bf3bf91a125.rst +++ /dev/null @@ -1 +0,0 @@ -Parse a JSON value and return the corresponding native value. diff --git a/doc/source/stdlib/detail/function-json_boost-from_JV-0x89431295255aba0d.rst b/doc/source/stdlib/detail/function-json_boost-from_JV-0x89431295255aba0d.rst deleted file mode 100644 index b9b7c49471..0000000000 --- a/doc/source/stdlib/detail/function-json_boost-from_JV-0x89431295255aba0d.rst +++ /dev/null @@ -1 +0,0 @@ -Parse a JSON value and return the corresponding native value. diff --git a/doc/source/stdlib/detail/function-json_boost-from_JV-0x938da3ecfbb9e88b.rst b/doc/source/stdlib/detail/function-json_boost-from_JV-0x938da3ecfbb9e88b.rst deleted file mode 100644 index 3e4948b477..0000000000 --- a/doc/source/stdlib/detail/function-json_boost-from_JV-0x938da3ecfbb9e88b.rst +++ /dev/null @@ -1 +0,0 @@ -Parse a JSON value and return the corresponding table value. diff --git a/doc/source/stdlib/detail/function-json_boost-from_JV-0xaa5560b71f74ce17.rst b/doc/source/stdlib/detail/function-json_boost-from_JV-0xaa5560b71f74ce17.rst deleted file mode 100644 index b9b7c49471..0000000000 --- a/doc/source/stdlib/detail/function-json_boost-from_JV-0xaa5560b71f74ce17.rst +++ /dev/null @@ -1 +0,0 @@ -Parse a JSON value and return the corresponding native value. diff --git a/doc/source/stdlib/detail/function-json_boost-from_JV-0xb4bffee811fcc1a1.rst b/doc/source/stdlib/detail/function-json_boost-from_JV-0xb4bffee811fcc1a1.rst deleted file mode 100644 index b9b7c49471..0000000000 --- a/doc/source/stdlib/detail/function-json_boost-from_JV-0xb4bffee811fcc1a1.rst +++ /dev/null @@ -1 +0,0 @@ -Parse a JSON value and return the corresponding native value. diff --git a/doc/source/stdlib/detail/function-json_boost-from_JV-0xc821a9b21ad126d5.rst b/doc/source/stdlib/detail/function-json_boost-from_JV-0xc821a9b21ad126d5.rst deleted file mode 100644 index b9b7c49471..0000000000 --- a/doc/source/stdlib/detail/function-json_boost-from_JV-0xc821a9b21ad126d5.rst +++ /dev/null @@ -1 +0,0 @@ -Parse a JSON value and return the corresponding native value. diff --git a/doc/source/stdlib/detail/function-json_boost-from_JV-0xced8a824ebb881b3.rst b/doc/source/stdlib/detail/function-json_boost-from_JV-0xced8a824ebb881b3.rst deleted file mode 100644 index b9b7c49471..0000000000 --- a/doc/source/stdlib/detail/function-json_boost-from_JV-0xced8a824ebb881b3.rst +++ /dev/null @@ -1 +0,0 @@ -Parse a JSON value and return the corresponding native value. diff --git a/doc/source/stdlib/detail/function-json_boost-from_JV-0xd0144f1be44eabbb.rst b/doc/source/stdlib/detail/function-json_boost-from_JV-0xd0144f1be44eabbb.rst deleted file mode 100644 index b9b7c49471..0000000000 --- a/doc/source/stdlib/detail/function-json_boost-from_JV-0xd0144f1be44eabbb.rst +++ /dev/null @@ -1 +0,0 @@ -Parse a JSON value and return the corresponding native value. diff --git a/doc/source/stdlib/detail/function-json_boost-from_JV-0xdbba02e7ee9b416b.rst b/doc/source/stdlib/detail/function-json_boost-from_JV-0xdbba02e7ee9b416b.rst deleted file mode 100644 index b9b7c49471..0000000000 --- a/doc/source/stdlib/detail/function-json_boost-from_JV-0xdbba02e7ee9b416b.rst +++ /dev/null @@ -1 +0,0 @@ -Parse a JSON value and return the corresponding native value. diff --git a/doc/source/stdlib/detail/function-json_boost-from_JV-0xe9527bea44c4873b.rst b/doc/source/stdlib/detail/function-json_boost-from_JV-0xe9527bea44c4873b.rst deleted file mode 100644 index b9b7c49471..0000000000 --- a/doc/source/stdlib/detail/function-json_boost-from_JV-0xe9527bea44c4873b.rst +++ /dev/null @@ -1 +0,0 @@ -Parse a JSON value and return the corresponding native value. diff --git a/doc/source/stdlib/detail/function-json_boost-from_JV-0xea5fb9f58444c1c6.rst b/doc/source/stdlib/detail/function-json_boost-from_JV-0xea5fb9f58444c1c6.rst deleted file mode 100644 index b9b7c49471..0000000000 --- a/doc/source/stdlib/detail/function-json_boost-from_JV-0xea5fb9f58444c1c6.rst +++ /dev/null @@ -1 +0,0 @@ -Parse a JSON value and return the corresponding native value. diff --git a/doc/source/stdlib/detail/function-json_boost-from_JV-0xedbc1a3ae2c98f22.rst b/doc/source/stdlib/detail/function-json_boost-from_JV-0xedbc1a3ae2c98f22.rst deleted file mode 100644 index 4b1fc3a998..0000000000 --- a/doc/source/stdlib/detail/function-json_boost-from_JV-0xedbc1a3ae2c98f22.rst +++ /dev/null @@ -1 +0,0 @@ -Parse a JSON value and return the corresponding vector value. diff --git a/doc/source/stdlib/detail/function-json_boost-from_JV-0xfef2d967849d024f.rst b/doc/source/stdlib/detail/function-json_boost-from_JV-0xfef2d967849d024f.rst deleted file mode 100644 index b9b7c49471..0000000000 --- a/doc/source/stdlib/detail/function-json_boost-from_JV-0xfef2d967849d024f.rst +++ /dev/null @@ -1 +0,0 @@ -Parse a JSON value and return the corresponding native value. diff --git a/doc/source/stdlib/detail/function-json_boost-is_json_ptr_value-0x140320176a92e364.rst b/doc/source/stdlib/detail/function-json_boost-is_json_ptr_value-0x140320176a92e364.rst deleted file mode 100644 index 2b4727cac7..0000000000 --- a/doc/source/stdlib/detail/function-json_boost-is_json_ptr_value-0x140320176a92e364.rst +++ /dev/null @@ -1 +0,0 @@ -Checks if the type is a pointer to json::JsonValue diff --git a/doc/source/stdlib/detail/function-json_boost-null_coalescing-0xc9c3065c54123917.rst b/doc/source/stdlib/detail/function-json_boost-null_coalescing-0xc9c3065c54123917.rst deleted file mode 100644 index 5ef2cc9bdd..0000000000 --- a/doc/source/stdlib/detail/function-json_boost-null_coalescing-0xc9c3065c54123917.rst +++ /dev/null @@ -1 +0,0 @@ -Returns the value of the JSON object, if it exists, otherwise returns the default value. diff --git a/doc/source/stdlib/detail/function-json_boost-null_coalescing_with_string-0x819eb22a6bbbdbab.rst b/doc/source/stdlib/detail/function-json_boost-null_coalescing_with_string-0x819eb22a6bbbdbab.rst deleted file mode 100644 index 5ef2cc9bdd..0000000000 --- a/doc/source/stdlib/detail/function-json_boost-null_coalescing_with_string-0x819eb22a6bbbdbab.rst +++ /dev/null @@ -1 +0,0 @@ -Returns the value of the JSON object, if it exists, otherwise returns the default value. diff --git a/doc/source/stdlib/detail/function-json_boost-parse_json_annotation-0x104e176c5c060230.rst b/doc/source/stdlib/detail/function-json_boost-parse_json_annotation-0x104e176c5c060230.rst deleted file mode 100644 index 1afb34600f..0000000000 --- a/doc/source/stdlib/detail/function-json_boost-parse_json_annotation-0x104e176c5c060230.rst +++ /dev/null @@ -1 +0,0 @@ -Parse JSON field annotations and return the corresponding JsonFieldState. diff --git a/doc/source/stdlib/detail/function-linq-aggregate-0x6cd30c7bb0143df7.rst b/doc/source/stdlib/detail/function-linq-aggregate-0x6cd30c7bb0143df7.rst deleted file mode 100644 index 3e34140eab..0000000000 --- a/doc/source/stdlib/detail/function-linq-aggregate-0x6cd30c7bb0143df7.rst +++ /dev/null @@ -1 +0,0 @@ -Aggregates elements in an array using a seed and a function diff --git a/doc/source/stdlib/detail/function-linq-aggregate-0xac6b97d8bb9d37b4.rst b/doc/source/stdlib/detail/function-linq-aggregate-0xac6b97d8bb9d37b4.rst deleted file mode 100644 index 7df1ac0c54..0000000000 --- a/doc/source/stdlib/detail/function-linq-aggregate-0xac6b97d8bb9d37b4.rst +++ /dev/null @@ -1 +0,0 @@ -Aggregates elements in an iterator using a seed and a function diff --git a/doc/source/stdlib/detail/function-linq-all-0x7862c1d8bf02f85d.rst b/doc/source/stdlib/detail/function-linq-all-0x7862c1d8bf02f85d.rst deleted file mode 100644 index cab22b77ad..0000000000 --- a/doc/source/stdlib/detail/function-linq-all-0x7862c1d8bf02f85d.rst +++ /dev/null @@ -1 +0,0 @@ -Returns true if all elements in the array satisfy the predicate diff --git a/doc/source/stdlib/detail/function-linq-all-0xf112c95a8899fa1.rst b/doc/source/stdlib/detail/function-linq-all-0xf112c95a8899fa1.rst deleted file mode 100644 index 4545f28b6a..0000000000 --- a/doc/source/stdlib/detail/function-linq-all-0xf112c95a8899fa1.rst +++ /dev/null @@ -1 +0,0 @@ -Returns true if all elements in the iterator satisfy the predicate diff --git a/doc/source/stdlib/detail/function-linq-any-0x1c49917f31a90230.rst b/doc/source/stdlib/detail/function-linq-any-0x1c49917f31a90230.rst deleted file mode 100644 index b28afb6e18..0000000000 --- a/doc/source/stdlib/detail/function-linq-any-0x1c49917f31a90230.rst +++ /dev/null @@ -1 +0,0 @@ -Returns true if any element in the array satisfies the predicate diff --git a/doc/source/stdlib/detail/function-linq-any-0x50d1a2a9baf5e213.rst b/doc/source/stdlib/detail/function-linq-any-0x50d1a2a9baf5e213.rst deleted file mode 100644 index 77d49fd747..0000000000 --- a/doc/source/stdlib/detail/function-linq-any-0x50d1a2a9baf5e213.rst +++ /dev/null @@ -1 +0,0 @@ -Returns true if the iterator has at least one element diff --git a/doc/source/stdlib/detail/function-linq-any-0x76afbb83db9c9f0d.rst b/doc/source/stdlib/detail/function-linq-any-0x76afbb83db9c9f0d.rst deleted file mode 100644 index a5f8db7fec..0000000000 --- a/doc/source/stdlib/detail/function-linq-any-0x76afbb83db9c9f0d.rst +++ /dev/null @@ -1 +0,0 @@ -Returns true if the array has at least one element diff --git a/doc/source/stdlib/detail/function-linq-any-0xbb1b7114d31501c.rst b/doc/source/stdlib/detail/function-linq-any-0xbb1b7114d31501c.rst deleted file mode 100644 index 13aa91403b..0000000000 --- a/doc/source/stdlib/detail/function-linq-any-0xbb1b7114d31501c.rst +++ /dev/null @@ -1 +0,0 @@ -Returns true if any element in the iterator satisfies the predicate diff --git a/doc/source/stdlib/detail/function-linq-append-0x90010ee06119ac89.rst b/doc/source/stdlib/detail/function-linq-append-0x90010ee06119ac89.rst deleted file mode 100644 index e2298271b0..0000000000 --- a/doc/source/stdlib/detail/function-linq-append-0x90010ee06119ac89.rst +++ /dev/null @@ -1 +0,0 @@ -Appends a value to the end of an iterator diff --git a/doc/source/stdlib/detail/function-linq-append-0x93f7751460a8c03f.rst b/doc/source/stdlib/detail/function-linq-append-0x93f7751460a8c03f.rst deleted file mode 100644 index 6a726c1c64..0000000000 --- a/doc/source/stdlib/detail/function-linq-append-0x93f7751460a8c03f.rst +++ /dev/null @@ -1 +0,0 @@ -Appends a value to the end of an array diff --git a/doc/source/stdlib/detail/function-linq-append_impl-0x105ede5ece338d7e.rst b/doc/source/stdlib/detail/function-linq-append_impl-0x105ede5ece338d7e.rst deleted file mode 100644 index 6a726c1c64..0000000000 --- a/doc/source/stdlib/detail/function-linq-append_impl-0x105ede5ece338d7e.rst +++ /dev/null @@ -1 +0,0 @@ -Appends a value to the end of an array diff --git a/doc/source/stdlib/detail/function-linq-append_inplace-0xdff98aba4461217.rst b/doc/source/stdlib/detail/function-linq-append_inplace-0xdff98aba4461217.rst deleted file mode 100644 index 27e041b690..0000000000 --- a/doc/source/stdlib/detail/function-linq-append_inplace-0xdff98aba4461217.rst +++ /dev/null @@ -1 +0,0 @@ -Appends a value to the end of an array in place diff --git a/doc/source/stdlib/detail/function-linq-append_to_array-0xc15f407e802f6fd8.rst b/doc/source/stdlib/detail/function-linq-append_to_array-0xc15f407e802f6fd8.rst deleted file mode 100644 index b0f1e2f0a1..0000000000 --- a/doc/source/stdlib/detail/function-linq-append_to_array-0xc15f407e802f6fd8.rst +++ /dev/null @@ -1 +0,0 @@ -Appends a value to the end of an iterator and returns an array diff --git a/doc/source/stdlib/detail/function-linq-average-0x2acfbb6e1ac21903.rst b/doc/source/stdlib/detail/function-linq-average-0x2acfbb6e1ac21903.rst deleted file mode 100644 index 66a78ee23e..0000000000 --- a/doc/source/stdlib/detail/function-linq-average-0x2acfbb6e1ac21903.rst +++ /dev/null @@ -1 +0,0 @@ -Averages elements in an array diff --git a/doc/source/stdlib/detail/function-linq-average-0x5ea2918818fc39cd.rst b/doc/source/stdlib/detail/function-linq-average-0x5ea2918818fc39cd.rst deleted file mode 100644 index a6dd1c9854..0000000000 --- a/doc/source/stdlib/detail/function-linq-average-0x5ea2918818fc39cd.rst +++ /dev/null @@ -1 +0,0 @@ -Averages elements in an iterator diff --git a/doc/source/stdlib/detail/function-linq-chunk-0x22f7ef2e5a565eb6.rst b/doc/source/stdlib/detail/function-linq-chunk-0x22f7ef2e5a565eb6.rst deleted file mode 100644 index 234d2e1b0a..0000000000 --- a/doc/source/stdlib/detail/function-linq-chunk-0x22f7ef2e5a565eb6.rst +++ /dev/null @@ -1 +0,0 @@ -Splits an iterator into chunks of a specified size diff --git a/doc/source/stdlib/detail/function-linq-chunk-0x6ad3f81c5326c3ab.rst b/doc/source/stdlib/detail/function-linq-chunk-0x6ad3f81c5326c3ab.rst deleted file mode 100644 index e3d41f638b..0000000000 --- a/doc/source/stdlib/detail/function-linq-chunk-0x6ad3f81c5326c3ab.rst +++ /dev/null @@ -1 +0,0 @@ -Splits an array into chunks of a specified size diff --git a/doc/source/stdlib/detail/function-linq-chunk_impl-0xb4911d139028187e.rst b/doc/source/stdlib/detail/function-linq-chunk_impl-0xb4911d139028187e.rst deleted file mode 100644 index e3d41f638b..0000000000 --- a/doc/source/stdlib/detail/function-linq-chunk_impl-0xb4911d139028187e.rst +++ /dev/null @@ -1 +0,0 @@ -Splits an array into chunks of a specified size diff --git a/doc/source/stdlib/detail/function-linq-chunk_to_array-0xd9477f6705cdded6.rst b/doc/source/stdlib/detail/function-linq-chunk_to_array-0xd9477f6705cdded6.rst deleted file mode 100644 index 4272de3dc4..0000000000 --- a/doc/source/stdlib/detail/function-linq-chunk_to_array-0xd9477f6705cdded6.rst +++ /dev/null @@ -1 +0,0 @@ -Splits an iterator into chunks of a specified size and returns an array diff --git a/doc/source/stdlib/detail/function-linq-concat-0xc9541b7c6b4e70ad.rst b/doc/source/stdlib/detail/function-linq-concat-0xc9541b7c6b4e70ad.rst deleted file mode 100644 index 63b195ad8d..0000000000 --- a/doc/source/stdlib/detail/function-linq-concat-0xc9541b7c6b4e70ad.rst +++ /dev/null @@ -1 +0,0 @@ -Concatenates two iterators diff --git a/doc/source/stdlib/detail/function-linq-concat-0xd10b448bfaa36cc.rst b/doc/source/stdlib/detail/function-linq-concat-0xd10b448bfaa36cc.rst deleted file mode 100644 index 68456391d2..0000000000 --- a/doc/source/stdlib/detail/function-linq-concat-0xd10b448bfaa36cc.rst +++ /dev/null @@ -1 +0,0 @@ -Concatenates two arrays diff --git a/doc/source/stdlib/detail/function-linq-concat_impl-0x317d8e1701434c3c.rst b/doc/source/stdlib/detail/function-linq-concat_impl-0x317d8e1701434c3c.rst deleted file mode 100644 index 597f2f10cb..0000000000 --- a/doc/source/stdlib/detail/function-linq-concat_impl-0x317d8e1701434c3c.rst +++ /dev/null @@ -1 +0,0 @@ -Concatenates two arrays or iterators diff --git a/doc/source/stdlib/detail/function-linq-concat_inplace-0x92f6632fd8e5c2a4.rst b/doc/source/stdlib/detail/function-linq-concat_inplace-0x92f6632fd8e5c2a4.rst deleted file mode 100644 index 3ee0dd5be5..0000000000 --- a/doc/source/stdlib/detail/function-linq-concat_inplace-0x92f6632fd8e5c2a4.rst +++ /dev/null @@ -1 +0,0 @@ -Concatenates two arrays in place diff --git a/doc/source/stdlib/detail/function-linq-concat_to_array-0x335d8aff0743f249.rst b/doc/source/stdlib/detail/function-linq-concat_to_array-0x335d8aff0743f249.rst deleted file mode 100644 index 04d0616126..0000000000 --- a/doc/source/stdlib/detail/function-linq-concat_to_array-0x335d8aff0743f249.rst +++ /dev/null @@ -1 +0,0 @@ -Concatenates two iterators and returns an array diff --git a/doc/source/stdlib/detail/function-linq-contains-0xaf207b929d6dc014.rst b/doc/source/stdlib/detail/function-linq-contains-0xaf207b929d6dc014.rst deleted file mode 100644 index 2e937318bf..0000000000 --- a/doc/source/stdlib/detail/function-linq-contains-0xaf207b929d6dc014.rst +++ /dev/null @@ -1 +0,0 @@ -Returns true if the element is present in the array diff --git a/doc/source/stdlib/detail/function-linq-contains-0xef9a5e02776e3a68.rst b/doc/source/stdlib/detail/function-linq-contains-0xef9a5e02776e3a68.rst deleted file mode 100644 index f39a43b14d..0000000000 --- a/doc/source/stdlib/detail/function-linq-contains-0xef9a5e02776e3a68.rst +++ /dev/null @@ -1 +0,0 @@ -Returns true if the element is present in the iterator diff --git a/doc/source/stdlib/detail/function-linq-count-0x4472390f4d7f6497.rst b/doc/source/stdlib/detail/function-linq-count-0x4472390f4d7f6497.rst deleted file mode 100644 index 19fb34d3f5..0000000000 --- a/doc/source/stdlib/detail/function-linq-count-0x4472390f4d7f6497.rst +++ /dev/null @@ -1 +0,0 @@ -Counts elements in an iterator diff --git a/doc/source/stdlib/detail/function-linq-count-0x5bbe567de4c1a22c.rst b/doc/source/stdlib/detail/function-linq-count-0x5bbe567de4c1a22c.rst deleted file mode 100644 index 11c6dbc86f..0000000000 --- a/doc/source/stdlib/detail/function-linq-count-0x5bbe567de4c1a22c.rst +++ /dev/null @@ -1 +0,0 @@ -Counts elements in an array that satisfy a predicate diff --git a/doc/source/stdlib/detail/function-linq-count-0xa3efbfd88e199809.rst b/doc/source/stdlib/detail/function-linq-count-0xa3efbfd88e199809.rst deleted file mode 100644 index 563a3d4b2f..0000000000 --- a/doc/source/stdlib/detail/function-linq-count-0xa3efbfd88e199809.rst +++ /dev/null @@ -1 +0,0 @@ -Counts elements in an array diff --git a/doc/source/stdlib/detail/function-linq-count-0xdcc3492c68a0fa40.rst b/doc/source/stdlib/detail/function-linq-count-0xdcc3492c68a0fa40.rst deleted file mode 100644 index 8ef83d8983..0000000000 --- a/doc/source/stdlib/detail/function-linq-count-0xdcc3492c68a0fa40.rst +++ /dev/null @@ -1 +0,0 @@ -Counts elements in an iterator that satisfy a predicate diff --git a/doc/source/stdlib/detail/function-linq-default_empty-0x9daa4edd16ec7e00.rst b/doc/source/stdlib/detail/function-linq-default_empty-0x9daa4edd16ec7e00.rst deleted file mode 100644 index 04e74a2642..0000000000 --- a/doc/source/stdlib/detail/function-linq-default_empty-0x9daa4edd16ec7e00.rst +++ /dev/null @@ -1 +0,0 @@ -Returns the elements of the iterator, or a default value if the iterator is empty diff --git a/doc/source/stdlib/detail/function-linq-distinct-0x76b0db9c958bd383.rst b/doc/source/stdlib/detail/function-linq-distinct-0x76b0db9c958bd383.rst deleted file mode 100644 index 2b04804f42..0000000000 --- a/doc/source/stdlib/detail/function-linq-distinct-0x76b0db9c958bd383.rst +++ /dev/null @@ -1 +0,0 @@ -Returns distinct elements from an array diff --git a/doc/source/stdlib/detail/function-linq-distinct-0xe303b2e3cb317d7d.rst b/doc/source/stdlib/detail/function-linq-distinct-0xe303b2e3cb317d7d.rst deleted file mode 100644 index 517a16fb30..0000000000 --- a/doc/source/stdlib/detail/function-linq-distinct-0xe303b2e3cb317d7d.rst +++ /dev/null @@ -1 +0,0 @@ -Returns distinct elements from an iterator diff --git a/doc/source/stdlib/detail/function-linq-distinct_by-0x20f527b989b1e247.rst b/doc/source/stdlib/detail/function-linq-distinct_by-0x20f527b989b1e247.rst deleted file mode 100644 index d3775caa7d..0000000000 --- a/doc/source/stdlib/detail/function-linq-distinct_by-0x20f527b989b1e247.rst +++ /dev/null @@ -1 +0,0 @@ -Returns distinct elements from an iterator based on a key diff --git a/doc/source/stdlib/detail/function-linq-distinct_by-0x719ba58eb7ef0e26.rst b/doc/source/stdlib/detail/function-linq-distinct_by-0x719ba58eb7ef0e26.rst deleted file mode 100644 index 1e57271257..0000000000 --- a/doc/source/stdlib/detail/function-linq-distinct_by-0x719ba58eb7ef0e26.rst +++ /dev/null @@ -1 +0,0 @@ -Returns distinct elements from an array based on a key diff --git a/doc/source/stdlib/detail/function-linq-distinct_by_impl-0x5a9ed79a87c9f107.rst b/doc/source/stdlib/detail/function-linq-distinct_by_impl-0x5a9ed79a87c9f107.rst deleted file mode 100644 index d3775caa7d..0000000000 --- a/doc/source/stdlib/detail/function-linq-distinct_by_impl-0x5a9ed79a87c9f107.rst +++ /dev/null @@ -1 +0,0 @@ -Returns distinct elements from an iterator based on a key diff --git a/doc/source/stdlib/detail/function-linq-distinct_by_inplace-0xd8d68dc1c5e59864.rst b/doc/source/stdlib/detail/function-linq-distinct_by_inplace-0xd8d68dc1c5e59864.rst deleted file mode 100644 index 5ed7d380e2..0000000000 --- a/doc/source/stdlib/detail/function-linq-distinct_by_inplace-0xd8d68dc1c5e59864.rst +++ /dev/null @@ -1 +0,0 @@ -Returns distinct elements from an array based on a key in place diff --git a/doc/source/stdlib/detail/function-linq-distinct_by_to_array-0x12fc13c2a06dbb3b.rst b/doc/source/stdlib/detail/function-linq-distinct_by_to_array-0x12fc13c2a06dbb3b.rst deleted file mode 100644 index eed43cc498..0000000000 --- a/doc/source/stdlib/detail/function-linq-distinct_by_to_array-0x12fc13c2a06dbb3b.rst +++ /dev/null @@ -1 +0,0 @@ -Returns distinct elements from an iterator based on a key and returns an array diff --git a/doc/source/stdlib/detail/function-linq-distinct_impl-0x115a67bb8576d6be.rst b/doc/source/stdlib/detail/function-linq-distinct_impl-0x115a67bb8576d6be.rst deleted file mode 100644 index 517a16fb30..0000000000 --- a/doc/source/stdlib/detail/function-linq-distinct_impl-0x115a67bb8576d6be.rst +++ /dev/null @@ -1 +0,0 @@ -Returns distinct elements from an iterator diff --git a/doc/source/stdlib/detail/function-linq-distinct_inplace-0xa835342f0e538927.rst b/doc/source/stdlib/detail/function-linq-distinct_inplace-0xa835342f0e538927.rst deleted file mode 100644 index e1f2b7aa59..0000000000 --- a/doc/source/stdlib/detail/function-linq-distinct_inplace-0xa835342f0e538927.rst +++ /dev/null @@ -1 +0,0 @@ -Returns distinct elements from an array in place diff --git a/doc/source/stdlib/detail/function-linq-distinct_to_array-0xb825be3028a4fc66.rst b/doc/source/stdlib/detail/function-linq-distinct_to_array-0xb825be3028a4fc66.rst deleted file mode 100644 index f6e8cf6b38..0000000000 --- a/doc/source/stdlib/detail/function-linq-distinct_to_array-0xb825be3028a4fc66.rst +++ /dev/null @@ -1 +0,0 @@ -Returns distinct elements from an iterator and returns an array diff --git a/doc/source/stdlib/detail/function-linq-element_at-0x78c9e2664aadf9a4.rst b/doc/source/stdlib/detail/function-linq-element_at-0x78c9e2664aadf9a4.rst deleted file mode 100644 index 4d76989280..0000000000 --- a/doc/source/stdlib/detail/function-linq-element_at-0x78c9e2664aadf9a4.rst +++ /dev/null @@ -1 +0,0 @@ -Returns the element at the specified index diff --git a/doc/source/stdlib/detail/function-linq-element_at-0xb3b6281f8ea1ec1f.rst b/doc/source/stdlib/detail/function-linq-element_at-0xb3b6281f8ea1ec1f.rst deleted file mode 100644 index 4d76989280..0000000000 --- a/doc/source/stdlib/detail/function-linq-element_at-0xb3b6281f8ea1ec1f.rst +++ /dev/null @@ -1 +0,0 @@ -Returns the element at the specified index diff --git a/doc/source/stdlib/detail/function-linq-element_at_or_default-0x3cbaf562dacca5c3.rst b/doc/source/stdlib/detail/function-linq-element_at_or_default-0x3cbaf562dacca5c3.rst deleted file mode 100644 index bcc94a19b7..0000000000 --- a/doc/source/stdlib/detail/function-linq-element_at_or_default-0x3cbaf562dacca5c3.rst +++ /dev/null @@ -1 +0,0 @@ -Returns the element at the specified index, or a default value if the index is out of range diff --git a/doc/source/stdlib/detail/function-linq-element_at_or_default-0xb02257a27d559824.rst b/doc/source/stdlib/detail/function-linq-element_at_or_default-0xb02257a27d559824.rst deleted file mode 100644 index bcc94a19b7..0000000000 --- a/doc/source/stdlib/detail/function-linq-element_at_or_default-0xb02257a27d559824.rst +++ /dev/null @@ -1 +0,0 @@ -Returns the element at the specified index, or a default value if the index is out of range diff --git a/doc/source/stdlib/detail/function-linq-empty-0x14986504b0e43f3d.rst b/doc/source/stdlib/detail/function-linq-empty-0x14986504b0e43f3d.rst deleted file mode 100644 index 2ae401720d..0000000000 --- a/doc/source/stdlib/detail/function-linq-empty-0x14986504b0e43f3d.rst +++ /dev/null @@ -1 +0,0 @@ -Returns an empty iterator of the specified type diff --git a/doc/source/stdlib/detail/function-linq-except-0x2540297810f34d9.rst b/doc/source/stdlib/detail/function-linq-except-0x2540297810f34d9.rst deleted file mode 100644 index 858cf075b2..0000000000 --- a/doc/source/stdlib/detail/function-linq-except-0x2540297810f34d9.rst +++ /dev/null @@ -1 +0,0 @@ -Returns elements from the first iterator that are not in the second iterator diff --git a/doc/source/stdlib/detail/function-linq-except-0x35bb1876eb2413a8.rst b/doc/source/stdlib/detail/function-linq-except-0x35bb1876eb2413a8.rst deleted file mode 100644 index 5a74537958..0000000000 --- a/doc/source/stdlib/detail/function-linq-except-0x35bb1876eb2413a8.rst +++ /dev/null @@ -1 +0,0 @@ -Returns elements from the first array that are not in the second array diff --git a/doc/source/stdlib/detail/function-linq-except_by-0x44b63c1cbc127682.rst b/doc/source/stdlib/detail/function-linq-except_by-0x44b63c1cbc127682.rst deleted file mode 100644 index a255a0a518..0000000000 --- a/doc/source/stdlib/detail/function-linq-except_by-0x44b63c1cbc127682.rst +++ /dev/null @@ -1 +0,0 @@ -Returns elements from the first iterator that are not in the second iterator by key diff --git a/doc/source/stdlib/detail/function-linq-except_by-0xa5fd96eca2e1a5fb.rst b/doc/source/stdlib/detail/function-linq-except_by-0xa5fd96eca2e1a5fb.rst deleted file mode 100644 index b702fab2fa..0000000000 --- a/doc/source/stdlib/detail/function-linq-except_by-0xa5fd96eca2e1a5fb.rst +++ /dev/null @@ -1 +0,0 @@ -Returns elements from the first array that are not in the second array by key diff --git a/doc/source/stdlib/detail/function-linq-except_by_impl-0xacd4997f2b92929.rst b/doc/source/stdlib/detail/function-linq-except_by_impl-0xacd4997f2b92929.rst deleted file mode 100644 index 3870d43ca3..0000000000 --- a/doc/source/stdlib/detail/function-linq-except_by_impl-0xacd4997f2b92929.rst +++ /dev/null @@ -1 +0,0 @@ -Returns distinct elements from the first iterator that are not in the second iterator by key diff --git a/doc/source/stdlib/detail/function-linq-except_by_to_array-0x55cd3a13e631f2db.rst b/doc/source/stdlib/detail/function-linq-except_by_to_array-0x55cd3a13e631f2db.rst deleted file mode 100644 index d942385d88..0000000000 --- a/doc/source/stdlib/detail/function-linq-except_by_to_array-0x55cd3a13e631f2db.rst +++ /dev/null @@ -1 +0,0 @@ -Returns elements from the first iterator that are not in the second iterator by key and returns an array diff --git a/doc/source/stdlib/detail/function-linq-except_impl-0x31e30eccf601ba8e.rst b/doc/source/stdlib/detail/function-linq-except_impl-0x31e30eccf601ba8e.rst deleted file mode 100644 index 2b2be56a11..0000000000 --- a/doc/source/stdlib/detail/function-linq-except_impl-0x31e30eccf601ba8e.rst +++ /dev/null @@ -1 +0,0 @@ -Returns distinct elements from the first iterator that are not in the second iterator diff --git a/doc/source/stdlib/detail/function-linq-except_to_array-0x973dd630110b87fd.rst b/doc/source/stdlib/detail/function-linq-except_to_array-0x973dd630110b87fd.rst deleted file mode 100644 index 3de19b98b1..0000000000 --- a/doc/source/stdlib/detail/function-linq-except_to_array-0x973dd630110b87fd.rst +++ /dev/null @@ -1 +0,0 @@ -Returns elements from the first iterator that are not in the second iterator and returns an array diff --git a/doc/source/stdlib/detail/function-linq-first-0xd315dd03be94a063.rst b/doc/source/stdlib/detail/function-linq-first-0xd315dd03be94a063.rst deleted file mode 100644 index 7935ee69a2..0000000000 --- a/doc/source/stdlib/detail/function-linq-first-0xd315dd03be94a063.rst +++ /dev/null @@ -1 +0,0 @@ -Returns the first element of an iterator diff --git a/doc/source/stdlib/detail/function-linq-first-0xe39c475b0765a07d.rst b/doc/source/stdlib/detail/function-linq-first-0xe39c475b0765a07d.rst deleted file mode 100644 index c1ae7e2ced..0000000000 --- a/doc/source/stdlib/detail/function-linq-first-0xe39c475b0765a07d.rst +++ /dev/null @@ -1 +0,0 @@ -Returns the first element of an array diff --git a/doc/source/stdlib/detail/function-linq-first_or_default-0x4be527b8bdc7c15a.rst b/doc/source/stdlib/detail/function-linq-first_or_default-0x4be527b8bdc7c15a.rst deleted file mode 100644 index adfd8081ed..0000000000 --- a/doc/source/stdlib/detail/function-linq-first_or_default-0x4be527b8bdc7c15a.rst +++ /dev/null @@ -1 +0,0 @@ -Returns the first element of an iterator, or a default value if the iterator is empty diff --git a/doc/source/stdlib/detail/function-linq-first_or_default-0x86638fc39eb488a.rst b/doc/source/stdlib/detail/function-linq-first_or_default-0x86638fc39eb488a.rst deleted file mode 100644 index 35efa225ee..0000000000 --- a/doc/source/stdlib/detail/function-linq-first_or_default-0x86638fc39eb488a.rst +++ /dev/null @@ -1 +0,0 @@ -Returns the first element of an array, or a default value if the array is empty diff --git a/doc/source/stdlib/detail/function-linq-group_by-0x6697eb7f24f364fb.rst b/doc/source/stdlib/detail/function-linq-group_by-0x6697eb7f24f364fb.rst deleted file mode 100644 index 8748eb24d9..0000000000 --- a/doc/source/stdlib/detail/function-linq-group_by-0x6697eb7f24f364fb.rst +++ /dev/null @@ -1 +0,0 @@ -Groups the elements of an iterator according to a specified key selector function diff --git a/doc/source/stdlib/detail/function-linq-group_by-0x8c37440f0f46234a.rst b/doc/source/stdlib/detail/function-linq-group_by-0x8c37440f0f46234a.rst deleted file mode 100644 index b6ca79289d..0000000000 --- a/doc/source/stdlib/detail/function-linq-group_by-0x8c37440f0f46234a.rst +++ /dev/null @@ -1 +0,0 @@ -Groups the elements of an array according to a specified key selector function diff --git a/doc/source/stdlib/detail/function-linq-group_by_to_array-0x839fb51a9620ab.rst b/doc/source/stdlib/detail/function-linq-group_by_to_array-0x839fb51a9620ab.rst deleted file mode 100644 index fcda90a74c..0000000000 --- a/doc/source/stdlib/detail/function-linq-group_by_to_array-0x839fb51a9620ab.rst +++ /dev/null @@ -1 +0,0 @@ -Groups the elements of an iterator according to a specified key selector function and returns an array diff --git a/doc/source/stdlib/detail/function-linq-group_join-0x34676dea6590e5a7.rst b/doc/source/stdlib/detail/function-linq-group_join-0x34676dea6590e5a7.rst deleted file mode 100644 index f4ca071aee..0000000000 --- a/doc/source/stdlib/detail/function-linq-group_join-0x34676dea6590e5a7.rst +++ /dev/null @@ -1 +0,0 @@ -we pass TA, and sequence of TB to 'result' diff --git a/doc/source/stdlib/detail/function-linq-group_join-0x42970773d6927e13.rst b/doc/source/stdlib/detail/function-linq-group_join-0x42970773d6927e13.rst deleted file mode 100644 index f4ca071aee..0000000000 --- a/doc/source/stdlib/detail/function-linq-group_join-0x42970773d6927e13.rst +++ /dev/null @@ -1 +0,0 @@ -we pass TA, and sequence of TB to 'result' diff --git a/doc/source/stdlib/detail/function-linq-group_join_to_array-0x8ffa2a33c4e503f5.rst b/doc/source/stdlib/detail/function-linq-group_join_to_array-0x8ffa2a33c4e503f5.rst deleted file mode 100644 index f4ca071aee..0000000000 --- a/doc/source/stdlib/detail/function-linq-group_join_to_array-0x8ffa2a33c4e503f5.rst +++ /dev/null @@ -1 +0,0 @@ -we pass TA, and sequence of TB to 'result' diff --git a/doc/source/stdlib/detail/function-linq-intersect-0x5b5759b55716808f.rst b/doc/source/stdlib/detail/function-linq-intersect-0x5b5759b55716808f.rst deleted file mode 100644 index ad43ec9c3e..0000000000 --- a/doc/source/stdlib/detail/function-linq-intersect-0x5b5759b55716808f.rst +++ /dev/null @@ -1 +0,0 @@ -Returns elements that are present in both iterators diff --git a/doc/source/stdlib/detail/function-linq-intersect-0x7a6ae9544d58eb8a.rst b/doc/source/stdlib/detail/function-linq-intersect-0x7a6ae9544d58eb8a.rst deleted file mode 100644 index f12d119081..0000000000 --- a/doc/source/stdlib/detail/function-linq-intersect-0x7a6ae9544d58eb8a.rst +++ /dev/null @@ -1 +0,0 @@ -Returns elements that are present in both arrays diff --git a/doc/source/stdlib/detail/function-linq-intersect_by-0x64a3c448dacddb9f.rst b/doc/source/stdlib/detail/function-linq-intersect_by-0x64a3c448dacddb9f.rst deleted file mode 100644 index 50b18aee08..0000000000 --- a/doc/source/stdlib/detail/function-linq-intersect_by-0x64a3c448dacddb9f.rst +++ /dev/null @@ -1 +0,0 @@ -Returns elements that are present in both iterators by key diff --git a/doc/source/stdlib/detail/function-linq-intersect_by-0xde9c8c4b55c61ace.rst b/doc/source/stdlib/detail/function-linq-intersect_by-0xde9c8c4b55c61ace.rst deleted file mode 100644 index dc880f55c0..0000000000 --- a/doc/source/stdlib/detail/function-linq-intersect_by-0xde9c8c4b55c61ace.rst +++ /dev/null @@ -1 +0,0 @@ -Returns elements that are present in both arrays by key diff --git a/doc/source/stdlib/detail/function-linq-intersect_by_impl-0xeb08bc9a38156cb3.rst b/doc/source/stdlib/detail/function-linq-intersect_by_impl-0xeb08bc9a38156cb3.rst deleted file mode 100644 index 50b18aee08..0000000000 --- a/doc/source/stdlib/detail/function-linq-intersect_by_impl-0xeb08bc9a38156cb3.rst +++ /dev/null @@ -1 +0,0 @@ -Returns elements that are present in both iterators by key diff --git a/doc/source/stdlib/detail/function-linq-intersect_by_to_array-0xb78d4474456a9a80.rst b/doc/source/stdlib/detail/function-linq-intersect_by_to_array-0xb78d4474456a9a80.rst deleted file mode 100644 index ad5994099e..0000000000 --- a/doc/source/stdlib/detail/function-linq-intersect_by_to_array-0xb78d4474456a9a80.rst +++ /dev/null @@ -1 +0,0 @@ -Returns elements that are present in both iterators by key and returns an array diff --git a/doc/source/stdlib/detail/function-linq-intersect_impl-0xabeb1b54798807d3.rst b/doc/source/stdlib/detail/function-linq-intersect_impl-0xabeb1b54798807d3.rst deleted file mode 100644 index ad43ec9c3e..0000000000 --- a/doc/source/stdlib/detail/function-linq-intersect_impl-0xabeb1b54798807d3.rst +++ /dev/null @@ -1 +0,0 @@ -Returns elements that are present in both iterators diff --git a/doc/source/stdlib/detail/function-linq-intersect_to_array-0xa46d449bc0a5f161.rst b/doc/source/stdlib/detail/function-linq-intersect_to_array-0xa46d449bc0a5f161.rst deleted file mode 100644 index 19b12d5ea0..0000000000 --- a/doc/source/stdlib/detail/function-linq-intersect_to_array-0xa46d449bc0a5f161.rst +++ /dev/null @@ -1 +0,0 @@ -Returns elements that are present in both iterators and returns an array diff --git a/doc/source/stdlib/detail/function-linq-iter_type-0x346ecf2550e318b8.rst b/doc/source/stdlib/detail/function-linq-iter_type-0x346ecf2550e318b8.rst deleted file mode 100644 index 47af74f7b5..0000000000 --- a/doc/source/stdlib/detail/function-linq-iter_type-0x346ecf2550e318b8.rst +++ /dev/null @@ -1 +0,0 @@ -this type trait is used to extract the type of elements in an iterator diff --git a/doc/source/stdlib/detail/function-linq-iter_type-0x4ed7d0a76ad9478a.rst b/doc/source/stdlib/detail/function-linq-iter_type-0x4ed7d0a76ad9478a.rst deleted file mode 100644 index 47af74f7b5..0000000000 --- a/doc/source/stdlib/detail/function-linq-iter_type-0x4ed7d0a76ad9478a.rst +++ /dev/null @@ -1 +0,0 @@ -this type trait is used to extract the type of elements in an iterator diff --git a/doc/source/stdlib/detail/function-linq-join-0x778b4bf4a135f1d3.rst b/doc/source/stdlib/detail/function-linq-join-0x778b4bf4a135f1d3.rst deleted file mode 100644 index 575fb6a7ab..0000000000 --- a/doc/source/stdlib/detail/function-linq-join-0x778b4bf4a135f1d3.rst +++ /dev/null @@ -1 +0,0 @@ -Joins two iterators based on matching keys (inner join) diff --git a/doc/source/stdlib/detail/function-linq-join-0xe4bb5a87ca7160a7.rst b/doc/source/stdlib/detail/function-linq-join-0xe4bb5a87ca7160a7.rst deleted file mode 100644 index a0a229bdbb..0000000000 --- a/doc/source/stdlib/detail/function-linq-join-0xe4bb5a87ca7160a7.rst +++ /dev/null @@ -1 +0,0 @@ -Joins two arrays based on matching keys (inner join) diff --git a/doc/source/stdlib/detail/function-linq-join_impl-0x9e12f8ca275d4bd4.rst b/doc/source/stdlib/detail/function-linq-join_impl-0x9e12f8ca275d4bd4.rst deleted file mode 100644 index 575fb6a7ab..0000000000 --- a/doc/source/stdlib/detail/function-linq-join_impl-0x9e12f8ca275d4bd4.rst +++ /dev/null @@ -1 +0,0 @@ -Joins two iterators based on matching keys (inner join) diff --git a/doc/source/stdlib/detail/function-linq-join_to_array-0xd85c27015d87edd1.rst b/doc/source/stdlib/detail/function-linq-join_to_array-0xd85c27015d87edd1.rst deleted file mode 100644 index db938d46c4..0000000000 --- a/doc/source/stdlib/detail/function-linq-join_to_array-0xd85c27015d87edd1.rst +++ /dev/null @@ -1 +0,0 @@ -Joins two iterators based on matching keys (inner join) and returns an array diff --git a/doc/source/stdlib/detail/function-linq-last-0x726c6421266d6273.rst b/doc/source/stdlib/detail/function-linq-last-0x726c6421266d6273.rst deleted file mode 100644 index 5107c01621..0000000000 --- a/doc/source/stdlib/detail/function-linq-last-0x726c6421266d6273.rst +++ /dev/null @@ -1 +0,0 @@ -Returns the last element of an array diff --git a/doc/source/stdlib/detail/function-linq-last-0xbe7678569a87f18d.rst b/doc/source/stdlib/detail/function-linq-last-0xbe7678569a87f18d.rst deleted file mode 100644 index df6223bb72..0000000000 --- a/doc/source/stdlib/detail/function-linq-last-0xbe7678569a87f18d.rst +++ /dev/null @@ -1 +0,0 @@ -Returns the last element of an iterator diff --git a/doc/source/stdlib/detail/function-linq-last_or_default-0x655b77452c699292.rst b/doc/source/stdlib/detail/function-linq-last_or_default-0x655b77452c699292.rst deleted file mode 100644 index c5d6e10217..0000000000 --- a/doc/source/stdlib/detail/function-linq-last_or_default-0x655b77452c699292.rst +++ /dev/null @@ -1 +0,0 @@ -Returns the last element of an array, or a default value if the array is empty diff --git a/doc/source/stdlib/detail/function-linq-last_or_default-0xd58c08dad67ca32c.rst b/doc/source/stdlib/detail/function-linq-last_or_default-0xd58c08dad67ca32c.rst deleted file mode 100644 index ccb418f748..0000000000 --- a/doc/source/stdlib/detail/function-linq-last_or_default-0xd58c08dad67ca32c.rst +++ /dev/null @@ -1 +0,0 @@ -Returns the last element of an iterator, or a default value if the iterator is empty diff --git a/doc/source/stdlib/detail/function-linq-less-0x4cfa105558b450c6.rst b/doc/source/stdlib/detail/function-linq-less-0x4cfa105558b450c6.rst deleted file mode 100644 index 5346a4e554..0000000000 --- a/doc/source/stdlib/detail/function-linq-less-0x4cfa105558b450c6.rst +++ /dev/null @@ -1 +0,0 @@ -Compares two tuples, returns true if first is less than second diff --git a/doc/source/stdlib/detail/function-linq-less-0x4d3b15e68a3eab8.rst b/doc/source/stdlib/detail/function-linq-less-0x4d3b15e68a3eab8.rst deleted file mode 100644 index 5346a4e554..0000000000 --- a/doc/source/stdlib/detail/function-linq-less-0x4d3b15e68a3eab8.rst +++ /dev/null @@ -1 +0,0 @@ -Compares two tuples, returns true if first is less than second diff --git a/doc/source/stdlib/detail/function-linq-less-0x80e56abb03856e5a.rst b/doc/source/stdlib/detail/function-linq-less-0x80e56abb03856e5a.rst deleted file mode 100644 index 5346a4e554..0000000000 --- a/doc/source/stdlib/detail/function-linq-less-0x80e56abb03856e5a.rst +++ /dev/null @@ -1 +0,0 @@ -Compares two tuples, returns true if first is less than second diff --git a/doc/source/stdlib/detail/function-linq-less-0xd106bf9828992150.rst b/doc/source/stdlib/detail/function-linq-less-0xd106bf9828992150.rst deleted file mode 100644 index 6caffd43e0..0000000000 --- a/doc/source/stdlib/detail/function-linq-less-0xd106bf9828992150.rst +++ /dev/null @@ -1 +0,0 @@ -Compares two values, returns true if first is less than second diff --git a/doc/source/stdlib/detail/function-linq-less-0xe30d5c3fecb69a70.rst b/doc/source/stdlib/detail/function-linq-less-0xe30d5c3fecb69a70.rst deleted file mode 100644 index 5346a4e554..0000000000 --- a/doc/source/stdlib/detail/function-linq-less-0xe30d5c3fecb69a70.rst +++ /dev/null @@ -1 +0,0 @@ -Compares two tuples, returns true if first is less than second diff --git a/doc/source/stdlib/detail/function-linq-long_count-0x767ea0b2f620206.rst b/doc/source/stdlib/detail/function-linq-long_count-0x767ea0b2f620206.rst deleted file mode 100644 index bbd4b4c12a..0000000000 --- a/doc/source/stdlib/detail/function-linq-long_count-0x767ea0b2f620206.rst +++ /dev/null @@ -1 +0,0 @@ -Counts elements in an array, using a long integer diff --git a/doc/source/stdlib/detail/function-linq-long_count-0xa7df97be221f08be.rst b/doc/source/stdlib/detail/function-linq-long_count-0xa7df97be221f08be.rst deleted file mode 100644 index da94ab2b4a..0000000000 --- a/doc/source/stdlib/detail/function-linq-long_count-0xa7df97be221f08be.rst +++ /dev/null @@ -1 +0,0 @@ -Counts elements in an iterator, using a long integer diff --git a/doc/source/stdlib/detail/function-linq-max-0x28adc8ff291e5498.rst b/doc/source/stdlib/detail/function-linq-max-0x28adc8ff291e5498.rst deleted file mode 100644 index f2d6a5dbec..0000000000 --- a/doc/source/stdlib/detail/function-linq-max-0x28adc8ff291e5498.rst +++ /dev/null @@ -1 +0,0 @@ -Finds the maximum element in an array diff --git a/doc/source/stdlib/detail/function-linq-max-0x7f0c5f92dd1baeea.rst b/doc/source/stdlib/detail/function-linq-max-0x7f0c5f92dd1baeea.rst deleted file mode 100644 index e36d90a5f5..0000000000 --- a/doc/source/stdlib/detail/function-linq-max-0x7f0c5f92dd1baeea.rst +++ /dev/null @@ -1 +0,0 @@ -Finds the maximum element in an iterator diff --git a/doc/source/stdlib/detail/function-linq-max_by-0x4453964cb3fd10d1.rst b/doc/source/stdlib/detail/function-linq-max_by-0x4453964cb3fd10d1.rst deleted file mode 100644 index ad7d2d72dd..0000000000 --- a/doc/source/stdlib/detail/function-linq-max_by-0x4453964cb3fd10d1.rst +++ /dev/null @@ -1 +0,0 @@ -Finds the maximum element in an array by key diff --git a/doc/source/stdlib/detail/function-linq-max_by-0x91c07a917f96912a.rst b/doc/source/stdlib/detail/function-linq-max_by-0x91c07a917f96912a.rst deleted file mode 100644 index 13ffe67a00..0000000000 --- a/doc/source/stdlib/detail/function-linq-max_by-0x91c07a917f96912a.rst +++ /dev/null @@ -1 +0,0 @@ -Finds the maximum element in an iterator by key diff --git a/doc/source/stdlib/detail/function-linq-min-0x38fb5f92eb93e1a4.rst b/doc/source/stdlib/detail/function-linq-min-0x38fb5f92eb93e1a4.rst deleted file mode 100644 index 1ebba7248e..0000000000 --- a/doc/source/stdlib/detail/function-linq-min-0x38fb5f92eb93e1a4.rst +++ /dev/null @@ -1 +0,0 @@ -Finds the minimum element in an iterator diff --git a/doc/source/stdlib/detail/function-linq-min-0xa8c9a9152e42b91e.rst b/doc/source/stdlib/detail/function-linq-min-0xa8c9a9152e42b91e.rst deleted file mode 100644 index e90ee90640..0000000000 --- a/doc/source/stdlib/detail/function-linq-min-0xa8c9a9152e42b91e.rst +++ /dev/null @@ -1 +0,0 @@ -Finds the minimum element in an array diff --git a/doc/source/stdlib/detail/function-linq-min_by-0x544c3024dc955f7f.rst b/doc/source/stdlib/detail/function-linq-min_by-0x544c3024dc955f7f.rst deleted file mode 100644 index af093459eb..0000000000 --- a/doc/source/stdlib/detail/function-linq-min_by-0x544c3024dc955f7f.rst +++ /dev/null @@ -1 +0,0 @@ -Finds the minimum element in an array by key diff --git a/doc/source/stdlib/detail/function-linq-min_by-0xaddfb995ed0bfcc8.rst b/doc/source/stdlib/detail/function-linq-min_by-0xaddfb995ed0bfcc8.rst deleted file mode 100644 index ba20f48797..0000000000 --- a/doc/source/stdlib/detail/function-linq-min_by-0xaddfb995ed0bfcc8.rst +++ /dev/null @@ -1 +0,0 @@ -Finds the minimum element in an iterator by key diff --git a/doc/source/stdlib/detail/function-linq-min_max-0x41be6191f347e53d.rst b/doc/source/stdlib/detail/function-linq-min_max-0x41be6191f347e53d.rst deleted file mode 100644 index 3171deaa23..0000000000 --- a/doc/source/stdlib/detail/function-linq-min_max-0x41be6191f347e53d.rst +++ /dev/null @@ -1 +0,0 @@ -Finds the minimum and maximum elements in an array diff --git a/doc/source/stdlib/detail/function-linq-min_max-0x6bd6e3e847f555a3.rst b/doc/source/stdlib/detail/function-linq-min_max-0x6bd6e3e847f555a3.rst deleted file mode 100644 index f800169f0e..0000000000 --- a/doc/source/stdlib/detail/function-linq-min_max-0x6bd6e3e847f555a3.rst +++ /dev/null @@ -1 +0,0 @@ -Finds the minimum and maximum elements in an iterator diff --git a/doc/source/stdlib/detail/function-linq-min_max_average-0x8b38aee663dfa4d9.rst b/doc/source/stdlib/detail/function-linq-min_max_average-0x8b38aee663dfa4d9.rst deleted file mode 100644 index f30d1066dc..0000000000 --- a/doc/source/stdlib/detail/function-linq-min_max_average-0x8b38aee663dfa4d9.rst +++ /dev/null @@ -1 +0,0 @@ -Finds the minimum, maximum, and average elements in an array diff --git a/doc/source/stdlib/detail/function-linq-min_max_average-0xad8abadaf7e62787.rst b/doc/source/stdlib/detail/function-linq-min_max_average-0xad8abadaf7e62787.rst deleted file mode 100644 index 56df96c025..0000000000 --- a/doc/source/stdlib/detail/function-linq-min_max_average-0xad8abadaf7e62787.rst +++ /dev/null @@ -1 +0,0 @@ -Finds the minimum, maximum, and average elements in an iterator diff --git a/doc/source/stdlib/detail/function-linq-min_max_average_by-0x44cca715ee4ee4c8.rst b/doc/source/stdlib/detail/function-linq-min_max_average_by-0x44cca715ee4ee4c8.rst deleted file mode 100644 index cff062e3b9..0000000000 --- a/doc/source/stdlib/detail/function-linq-min_max_average_by-0x44cca715ee4ee4c8.rst +++ /dev/null @@ -1 +0,0 @@ -Finds the minimum, maximum, and average elements in an array by key diff --git a/doc/source/stdlib/detail/function-linq-min_max_average_by-0xd458364ba6337709.rst b/doc/source/stdlib/detail/function-linq-min_max_average_by-0xd458364ba6337709.rst deleted file mode 100644 index 8e9bb0dd23..0000000000 --- a/doc/source/stdlib/detail/function-linq-min_max_average_by-0xd458364ba6337709.rst +++ /dev/null @@ -1 +0,0 @@ -Finds the minimum, maximum, and average elements in an iterator by key diff --git a/doc/source/stdlib/detail/function-linq-min_max_by-0xa1d636aaedb9bf24.rst b/doc/source/stdlib/detail/function-linq-min_max_by-0xa1d636aaedb9bf24.rst deleted file mode 100644 index e073efcaab..0000000000 --- a/doc/source/stdlib/detail/function-linq-min_max_by-0xa1d636aaedb9bf24.rst +++ /dev/null @@ -1 +0,0 @@ -Finds the minimum and maximum elements in an array by key diff --git a/doc/source/stdlib/detail/function-linq-min_max_by-0xf745b1a20866a45.rst b/doc/source/stdlib/detail/function-linq-min_max_by-0xf745b1a20866a45.rst deleted file mode 100644 index 89a0eb53b6..0000000000 --- a/doc/source/stdlib/detail/function-linq-min_max_by-0xf745b1a20866a45.rst +++ /dev/null @@ -1 +0,0 @@ -Finds the minimum and maximum elements in an iterator by key diff --git a/doc/source/stdlib/detail/function-linq-order-0x4124e96b668d8872.rst b/doc/source/stdlib/detail/function-linq-order-0x4124e96b668d8872.rst deleted file mode 100644 index e8c5f39625..0000000000 --- a/doc/source/stdlib/detail/function-linq-order-0x4124e96b668d8872.rst +++ /dev/null @@ -1 +0,0 @@ -Sorts an iterator diff --git a/doc/source/stdlib/detail/function-linq-order-0x7dafa817aff55136.rst b/doc/source/stdlib/detail/function-linq-order-0x7dafa817aff55136.rst deleted file mode 100644 index 71b442a335..0000000000 --- a/doc/source/stdlib/detail/function-linq-order-0x7dafa817aff55136.rst +++ /dev/null @@ -1 +0,0 @@ -Sorts an array diff --git a/doc/source/stdlib/detail/function-linq-order-0xa54ba3df576f85ae.rst b/doc/source/stdlib/detail/function-linq-order-0xa54ba3df576f85ae.rst deleted file mode 100644 index e8c5f39625..0000000000 --- a/doc/source/stdlib/detail/function-linq-order-0xa54ba3df576f85ae.rst +++ /dev/null @@ -1 +0,0 @@ -Sorts an iterator diff --git a/doc/source/stdlib/detail/function-linq-order-0xce716d9619e2cb44.rst b/doc/source/stdlib/detail/function-linq-order-0xce716d9619e2cb44.rst deleted file mode 100644 index 71b442a335..0000000000 --- a/doc/source/stdlib/detail/function-linq-order-0xce716d9619e2cb44.rst +++ /dev/null @@ -1 +0,0 @@ -Sorts an array diff --git a/doc/source/stdlib/detail/function-linq-order_by-0x57ff79d988edebe.rst b/doc/source/stdlib/detail/function-linq-order_by-0x57ff79d988edebe.rst deleted file mode 100644 index e8c5f39625..0000000000 --- a/doc/source/stdlib/detail/function-linq-order_by-0x57ff79d988edebe.rst +++ /dev/null @@ -1 +0,0 @@ -Sorts an iterator diff --git a/doc/source/stdlib/detail/function-linq-order_by-0x5d21e6b450b04705.rst b/doc/source/stdlib/detail/function-linq-order_by-0x5d21e6b450b04705.rst deleted file mode 100644 index 71b442a335..0000000000 --- a/doc/source/stdlib/detail/function-linq-order_by-0x5d21e6b450b04705.rst +++ /dev/null @@ -1 +0,0 @@ -Sorts an array diff --git a/doc/source/stdlib/detail/function-linq-order_by_descending-0x26063ddbb8b34223.rst b/doc/source/stdlib/detail/function-linq-order_by_descending-0x26063ddbb8b34223.rst deleted file mode 100644 index 6b048604af..0000000000 --- a/doc/source/stdlib/detail/function-linq-order_by_descending-0x26063ddbb8b34223.rst +++ /dev/null @@ -1 +0,0 @@ -Sorts an iterator in descending order diff --git a/doc/source/stdlib/detail/function-linq-order_by_descending-0x5c2169b50fa5289c.rst b/doc/source/stdlib/detail/function-linq-order_by_descending-0x5c2169b50fa5289c.rst deleted file mode 100644 index 8f5c5eae99..0000000000 --- a/doc/source/stdlib/detail/function-linq-order_by_descending-0x5c2169b50fa5289c.rst +++ /dev/null @@ -1 +0,0 @@ -Sorts an array in descending order diff --git a/doc/source/stdlib/detail/function-linq-order_by_descending_inplace-0x9741400ac8bbade2.rst b/doc/source/stdlib/detail/function-linq-order_by_descending_inplace-0x9741400ac8bbade2.rst deleted file mode 100644 index 0c1405910f..0000000000 --- a/doc/source/stdlib/detail/function-linq-order_by_descending_inplace-0x9741400ac8bbade2.rst +++ /dev/null @@ -1 +0,0 @@ -Sorts an array in descending order in place diff --git a/doc/source/stdlib/detail/function-linq-order_by_descending_to_array-0xb6df799a8253b765.rst b/doc/source/stdlib/detail/function-linq-order_by_descending_to_array-0xb6df799a8253b765.rst deleted file mode 100644 index 8a31472f9b..0000000000 --- a/doc/source/stdlib/detail/function-linq-order_by_descending_to_array-0xb6df799a8253b765.rst +++ /dev/null @@ -1 +0,0 @@ -Sorts an iterator in descending order and returns an array diff --git a/doc/source/stdlib/detail/function-linq-order_by_inplace-0xd214f655f97134bd.rst b/doc/source/stdlib/detail/function-linq-order_by_inplace-0xd214f655f97134bd.rst deleted file mode 100644 index 8ab67e346a..0000000000 --- a/doc/source/stdlib/detail/function-linq-order_by_inplace-0xd214f655f97134bd.rst +++ /dev/null @@ -1 +0,0 @@ -Sorts an array in place diff --git a/doc/source/stdlib/detail/function-linq-order_by_to_array-0x43dc4807a2901258.rst b/doc/source/stdlib/detail/function-linq-order_by_to_array-0x43dc4807a2901258.rst deleted file mode 100644 index f1aa22adf4..0000000000 --- a/doc/source/stdlib/detail/function-linq-order_by_to_array-0x43dc4807a2901258.rst +++ /dev/null @@ -1 +0,0 @@ -Sorts an iterator and returns an array diff --git a/doc/source/stdlib/detail/function-linq-order_descending-0x2a1f896443cd6af1.rst b/doc/source/stdlib/detail/function-linq-order_descending-0x2a1f896443cd6af1.rst deleted file mode 100644 index 8f5c5eae99..0000000000 --- a/doc/source/stdlib/detail/function-linq-order_descending-0x2a1f896443cd6af1.rst +++ /dev/null @@ -1 +0,0 @@ -Sorts an array in descending order diff --git a/doc/source/stdlib/detail/function-linq-order_descending-0x9283d6477d5864d5.rst b/doc/source/stdlib/detail/function-linq-order_descending-0x9283d6477d5864d5.rst deleted file mode 100644 index 8f5c5eae99..0000000000 --- a/doc/source/stdlib/detail/function-linq-order_descending-0x9283d6477d5864d5.rst +++ /dev/null @@ -1 +0,0 @@ -Sorts an array in descending order diff --git a/doc/source/stdlib/detail/function-linq-order_descending-0xe2128bc66f944c63.rst b/doc/source/stdlib/detail/function-linq-order_descending-0xe2128bc66f944c63.rst deleted file mode 100644 index 6b048604af..0000000000 --- a/doc/source/stdlib/detail/function-linq-order_descending-0xe2128bc66f944c63.rst +++ /dev/null @@ -1 +0,0 @@ -Sorts an iterator in descending order diff --git a/doc/source/stdlib/detail/function-linq-order_descending-0xf2834d82ce1d31b.rst b/doc/source/stdlib/detail/function-linq-order_descending-0xf2834d82ce1d31b.rst deleted file mode 100644 index 6b048604af..0000000000 --- a/doc/source/stdlib/detail/function-linq-order_descending-0xf2834d82ce1d31b.rst +++ /dev/null @@ -1 +0,0 @@ -Sorts an iterator in descending order diff --git a/doc/source/stdlib/detail/function-linq-order_descending_inplace-0x10add0628ad1d4cd.rst b/doc/source/stdlib/detail/function-linq-order_descending_inplace-0x10add0628ad1d4cd.rst deleted file mode 100644 index 0c1405910f..0000000000 --- a/doc/source/stdlib/detail/function-linq-order_descending_inplace-0x10add0628ad1d4cd.rst +++ /dev/null @@ -1 +0,0 @@ -Sorts an array in descending order in place diff --git a/doc/source/stdlib/detail/function-linq-order_descending_inplace-0x30e1c50a6384ad39.rst b/doc/source/stdlib/detail/function-linq-order_descending_inplace-0x30e1c50a6384ad39.rst deleted file mode 100644 index 0c1405910f..0000000000 --- a/doc/source/stdlib/detail/function-linq-order_descending_inplace-0x30e1c50a6384ad39.rst +++ /dev/null @@ -1 +0,0 @@ -Sorts an array in descending order in place diff --git a/doc/source/stdlib/detail/function-linq-order_descending_to_array-0x361bb31c72cabbf0.rst b/doc/source/stdlib/detail/function-linq-order_descending_to_array-0x361bb31c72cabbf0.rst deleted file mode 100644 index 8a31472f9b..0000000000 --- a/doc/source/stdlib/detail/function-linq-order_descending_to_array-0x361bb31c72cabbf0.rst +++ /dev/null @@ -1 +0,0 @@ -Sorts an iterator in descending order and returns an array diff --git a/doc/source/stdlib/detail/function-linq-order_descending_to_array-0xef52b6e3dcafdaa0.rst b/doc/source/stdlib/detail/function-linq-order_descending_to_array-0xef52b6e3dcafdaa0.rst deleted file mode 100644 index 8a31472f9b..0000000000 --- a/doc/source/stdlib/detail/function-linq-order_descending_to_array-0xef52b6e3dcafdaa0.rst +++ /dev/null @@ -1 +0,0 @@ -Sorts an iterator in descending order and returns an array diff --git a/doc/source/stdlib/detail/function-linq-order_inplace-0x19349e7ecdfa171c.rst b/doc/source/stdlib/detail/function-linq-order_inplace-0x19349e7ecdfa171c.rst deleted file mode 100644 index 8ab67e346a..0000000000 --- a/doc/source/stdlib/detail/function-linq-order_inplace-0x19349e7ecdfa171c.rst +++ /dev/null @@ -1 +0,0 @@ -Sorts an array in place diff --git a/doc/source/stdlib/detail/function-linq-order_inplace-0x728422974e63a0a6.rst b/doc/source/stdlib/detail/function-linq-order_inplace-0x728422974e63a0a6.rst deleted file mode 100644 index 8ab67e346a..0000000000 --- a/doc/source/stdlib/detail/function-linq-order_inplace-0x728422974e63a0a6.rst +++ /dev/null @@ -1 +0,0 @@ -Sorts an array in place diff --git a/doc/source/stdlib/detail/function-linq-order_to_array-0xf1df31203a846ccd.rst b/doc/source/stdlib/detail/function-linq-order_to_array-0xf1df31203a846ccd.rst deleted file mode 100644 index f1aa22adf4..0000000000 --- a/doc/source/stdlib/detail/function-linq-order_to_array-0xf1df31203a846ccd.rst +++ /dev/null @@ -1 +0,0 @@ -Sorts an iterator and returns an array diff --git a/doc/source/stdlib/detail/function-linq-order_to_array-0xfbbe468c5d618619.rst b/doc/source/stdlib/detail/function-linq-order_to_array-0xfbbe468c5d618619.rst deleted file mode 100644 index f1aa22adf4..0000000000 --- a/doc/source/stdlib/detail/function-linq-order_to_array-0xfbbe468c5d618619.rst +++ /dev/null @@ -1 +0,0 @@ -Sorts an iterator and returns an array diff --git a/doc/source/stdlib/detail/function-linq-order_unique_folded-0xe1b26845c089b7c2.rst b/doc/source/stdlib/detail/function-linq-order_unique_folded-0xe1b26845c089b7c2.rst deleted file mode 100644 index 72fb0a99e6..0000000000 --- a/doc/source/stdlib/detail/function-linq-order_unique_folded-0xe1b26845c089b7c2.rst +++ /dev/null @@ -1 +0,0 @@ -sort and remove duplicate elements from an array diff --git a/doc/source/stdlib/detail/function-linq-order_unique_folded-0xee5822766c19e3f3.rst b/doc/source/stdlib/detail/function-linq-order_unique_folded-0xee5822766c19e3f3.rst deleted file mode 100644 index f0ca174b97..0000000000 --- a/doc/source/stdlib/detail/function-linq-order_unique_folded-0xee5822766c19e3f3.rst +++ /dev/null @@ -1 +0,0 @@ -sort and remove duplicate elements from an iterator diff --git a/doc/source/stdlib/detail/function-linq-order_unique_folded_inplace-0xf06708dee64dbdeb.rst b/doc/source/stdlib/detail/function-linq-order_unique_folded_inplace-0xf06708dee64dbdeb.rst deleted file mode 100644 index 72fb0a99e6..0000000000 --- a/doc/source/stdlib/detail/function-linq-order_unique_folded_inplace-0xf06708dee64dbdeb.rst +++ /dev/null @@ -1 +0,0 @@ -sort and remove duplicate elements from an array diff --git a/doc/source/stdlib/detail/function-linq-prepend-0x14f3130905868a8b.rst b/doc/source/stdlib/detail/function-linq-prepend-0x14f3130905868a8b.rst deleted file mode 100644 index 6b7ff29227..0000000000 --- a/doc/source/stdlib/detail/function-linq-prepend-0x14f3130905868a8b.rst +++ /dev/null @@ -1 +0,0 @@ -Prepends a value to the beginning of an array diff --git a/doc/source/stdlib/detail/function-linq-prepend-0x68a198a228d555.rst b/doc/source/stdlib/detail/function-linq-prepend-0x68a198a228d555.rst deleted file mode 100644 index 22377ef226..0000000000 --- a/doc/source/stdlib/detail/function-linq-prepend-0x68a198a228d555.rst +++ /dev/null @@ -1 +0,0 @@ -Prepends a value to the beginning of an iterator diff --git a/doc/source/stdlib/detail/function-linq-prepend_impl-0xe446016d5c324489.rst b/doc/source/stdlib/detail/function-linq-prepend_impl-0xe446016d5c324489.rst deleted file mode 100644 index 6b7ff29227..0000000000 --- a/doc/source/stdlib/detail/function-linq-prepend_impl-0xe446016d5c324489.rst +++ /dev/null @@ -1 +0,0 @@ -Prepends a value to the beginning of an array diff --git a/doc/source/stdlib/detail/function-linq-prepend_inplace-0xb4436099664a621d.rst b/doc/source/stdlib/detail/function-linq-prepend_inplace-0xb4436099664a621d.rst deleted file mode 100644 index 934c3491f5..0000000000 --- a/doc/source/stdlib/detail/function-linq-prepend_inplace-0xb4436099664a621d.rst +++ /dev/null @@ -1 +0,0 @@ -Prepends a value to the beginning of an array in place diff --git a/doc/source/stdlib/detail/function-linq-prepend_to_array-0x1091af2c18fa9690.rst b/doc/source/stdlib/detail/function-linq-prepend_to_array-0x1091af2c18fa9690.rst deleted file mode 100644 index 5e4d3403d8..0000000000 --- a/doc/source/stdlib/detail/function-linq-prepend_to_array-0x1091af2c18fa9690.rst +++ /dev/null @@ -1 +0,0 @@ -Prepends a value to the beginning of an iterator and returns an array diff --git a/doc/source/stdlib/detail/function-linq-range_sequence-0x73064bc23375a5f9.rst b/doc/source/stdlib/detail/function-linq-range_sequence-0x73064bc23375a5f9.rst deleted file mode 100644 index 27cd9fbaa4..0000000000 --- a/doc/source/stdlib/detail/function-linq-range_sequence-0x73064bc23375a5f9.rst +++ /dev/null @@ -1 +0,0 @@ -Generates a sequence of integers within a specified range diff --git a/doc/source/stdlib/detail/function-linq-repeat-0x21a634806c94f6fe.rst b/doc/source/stdlib/detail/function-linq-repeat-0x21a634806c94f6fe.rst deleted file mode 100644 index 2656fc324e..0000000000 --- a/doc/source/stdlib/detail/function-linq-repeat-0x21a634806c94f6fe.rst +++ /dev/null @@ -1 +0,0 @@ -Generates a sequence that contains one repeated value diff --git a/doc/source/stdlib/detail/function-linq-reverse-0x75b033bac1fdd00c.rst b/doc/source/stdlib/detail/function-linq-reverse-0x75b033bac1fdd00c.rst deleted file mode 100644 index 6e534583ea..0000000000 --- a/doc/source/stdlib/detail/function-linq-reverse-0x75b033bac1fdd00c.rst +++ /dev/null @@ -1 +0,0 @@ -Reverses an array diff --git a/doc/source/stdlib/detail/function-linq-reverse-0x848d4e53c7202d66.rst b/doc/source/stdlib/detail/function-linq-reverse-0x848d4e53c7202d66.rst deleted file mode 100644 index 70b1aa7d89..0000000000 --- a/doc/source/stdlib/detail/function-linq-reverse-0x848d4e53c7202d66.rst +++ /dev/null @@ -1 +0,0 @@ -Reverses an iterator diff --git a/doc/source/stdlib/detail/function-linq-reverse_inplace-0x43930ed87d96ae9e.rst b/doc/source/stdlib/detail/function-linq-reverse_inplace-0x43930ed87d96ae9e.rst deleted file mode 100644 index d29a4b34f0..0000000000 --- a/doc/source/stdlib/detail/function-linq-reverse_inplace-0x43930ed87d96ae9e.rst +++ /dev/null @@ -1 +0,0 @@ -Reverses an array in place diff --git a/doc/source/stdlib/detail/function-linq-reverse_to_array-0x7e3cf554e2a57591.rst b/doc/source/stdlib/detail/function-linq-reverse_to_array-0x7e3cf554e2a57591.rst deleted file mode 100644 index 8bb8b25629..0000000000 --- a/doc/source/stdlib/detail/function-linq-reverse_to_array-0x7e3cf554e2a57591.rst +++ /dev/null @@ -1 +0,0 @@ -Reverses an iterator and returns an array diff --git a/doc/source/stdlib/detail/function-linq-select-0x76bdd8700d1f6a24.rst b/doc/source/stdlib/detail/function-linq-select-0x76bdd8700d1f6a24.rst deleted file mode 100644 index ddaaf54bb1..0000000000 --- a/doc/source/stdlib/detail/function-linq-select-0x76bdd8700d1f6a24.rst +++ /dev/null @@ -1 +0,0 @@ -Projects each element of an iterator into a new form diff --git a/doc/source/stdlib/detail/function-linq-select-0x82f2c51ee30dc0b0.rst b/doc/source/stdlib/detail/function-linq-select-0x82f2c51ee30dc0b0.rst deleted file mode 100644 index 2ad8316f19..0000000000 --- a/doc/source/stdlib/detail/function-linq-select-0x82f2c51ee30dc0b0.rst +++ /dev/null @@ -1 +0,0 @@ -Projects each element of an array into a new form diff --git a/doc/source/stdlib/detail/function-linq-select-0xd0a2a9d2f1895671.rst b/doc/source/stdlib/detail/function-linq-select-0xd0a2a9d2f1895671.rst deleted file mode 100644 index e66666b37e..0000000000 --- a/doc/source/stdlib/detail/function-linq-select-0xd0a2a9d2f1895671.rst +++ /dev/null @@ -1 +0,0 @@ -Projects each element of an iterator into a new form using a selector function diff --git a/doc/source/stdlib/detail/function-linq-select-0xda1a4c3feab4ea70.rst b/doc/source/stdlib/detail/function-linq-select-0xda1a4c3feab4ea70.rst deleted file mode 100644 index 56d69014e0..0000000000 --- a/doc/source/stdlib/detail/function-linq-select-0xda1a4c3feab4ea70.rst +++ /dev/null @@ -1 +0,0 @@ -Projects each element of an array into a new form using a selector function diff --git a/doc/source/stdlib/detail/function-linq-select_impl-0x3a8c7475f4fcad23.rst b/doc/source/stdlib/detail/function-linq-select_impl-0x3a8c7475f4fcad23.rst deleted file mode 100644 index c7dbd48253..0000000000 --- a/doc/source/stdlib/detail/function-linq-select_impl-0x3a8c7475f4fcad23.rst +++ /dev/null @@ -1 +0,0 @@ -Projects each element of an iterator into a new form with its index diff --git a/doc/source/stdlib/detail/function-linq-select_impl-0x76d7881799638ec2.rst b/doc/source/stdlib/detail/function-linq-select_impl-0x76d7881799638ec2.rst deleted file mode 100644 index e66666b37e..0000000000 --- a/doc/source/stdlib/detail/function-linq-select_impl-0x76d7881799638ec2.rst +++ /dev/null @@ -1 +0,0 @@ -Projects each element of an iterator into a new form using a selector function diff --git a/doc/source/stdlib/detail/function-linq-select_many-0x13e1456268e35586.rst b/doc/source/stdlib/detail/function-linq-select_many-0x13e1456268e35586.rst deleted file mode 100644 index ab8aee4fad..0000000000 --- a/doc/source/stdlib/detail/function-linq-select_many-0x13e1456268e35586.rst +++ /dev/null @@ -1 +0,0 @@ -Projects each element of an array to an iterator and flattens the resulting iterators into one array diff --git a/doc/source/stdlib/detail/function-linq-select_many-0x9829a4b341403f3.rst b/doc/source/stdlib/detail/function-linq-select_many-0x9829a4b341403f3.rst deleted file mode 100644 index ab8aee4fad..0000000000 --- a/doc/source/stdlib/detail/function-linq-select_many-0x9829a4b341403f3.rst +++ /dev/null @@ -1 +0,0 @@ -Projects each element of an array to an iterator and flattens the resulting iterators into one array diff --git a/doc/source/stdlib/detail/function-linq-select_many-0xab174554757fc3dc.rst b/doc/source/stdlib/detail/function-linq-select_many-0xab174554757fc3dc.rst deleted file mode 100644 index f48107ca10..0000000000 --- a/doc/source/stdlib/detail/function-linq-select_many-0xab174554757fc3dc.rst +++ /dev/null @@ -1 +0,0 @@ -Projects each element of an iterator to an iterator and flattens the resulting iterators into one iterator diff --git a/doc/source/stdlib/detail/function-linq-select_many-0xeef05957f4f7128c.rst b/doc/source/stdlib/detail/function-linq-select_many-0xeef05957f4f7128c.rst deleted file mode 100644 index f48107ca10..0000000000 --- a/doc/source/stdlib/detail/function-linq-select_many-0xeef05957f4f7128c.rst +++ /dev/null @@ -1 +0,0 @@ -Projects each element of an iterator to an iterator and flattens the resulting iterators into one iterator diff --git a/doc/source/stdlib/detail/function-linq-select_many_impl-0x170558ef07436b63.rst b/doc/source/stdlib/detail/function-linq-select_many_impl-0x170558ef07436b63.rst deleted file mode 100644 index 64afb0c00d..0000000000 --- a/doc/source/stdlib/detail/function-linq-select_many_impl-0x170558ef07436b63.rst +++ /dev/null @@ -1 +0,0 @@ -Projects each element of an iterator to an iterator and flattens the resulting iterators into one array diff --git a/doc/source/stdlib/detail/function-linq-select_many_impl-0x2d3701f4c4528a66.rst b/doc/source/stdlib/detail/function-linq-select_many_impl-0x2d3701f4c4528a66.rst deleted file mode 100644 index 64afb0c00d..0000000000 --- a/doc/source/stdlib/detail/function-linq-select_many_impl-0x2d3701f4c4528a66.rst +++ /dev/null @@ -1 +0,0 @@ -Projects each element of an iterator to an iterator and flattens the resulting iterators into one array diff --git a/doc/source/stdlib/detail/function-linq-select_many_to_array-0xa0f88c3d3f45e1ee.rst b/doc/source/stdlib/detail/function-linq-select_many_to_array-0xa0f88c3d3f45e1ee.rst deleted file mode 100644 index 64afb0c00d..0000000000 --- a/doc/source/stdlib/detail/function-linq-select_many_to_array-0xa0f88c3d3f45e1ee.rst +++ /dev/null @@ -1 +0,0 @@ -Projects each element of an iterator to an iterator and flattens the resulting iterators into one array diff --git a/doc/source/stdlib/detail/function-linq-select_many_to_array-0xbb13c974fd439bcb.rst b/doc/source/stdlib/detail/function-linq-select_many_to_array-0xbb13c974fd439bcb.rst deleted file mode 100644 index 64afb0c00d..0000000000 --- a/doc/source/stdlib/detail/function-linq-select_many_to_array-0xbb13c974fd439bcb.rst +++ /dev/null @@ -1 +0,0 @@ -Projects each element of an iterator to an iterator and flattens the resulting iterators into one array diff --git a/doc/source/stdlib/detail/function-linq-select_to_array-0x5bb08e0954cb82b1.rst b/doc/source/stdlib/detail/function-linq-select_to_array-0x5bb08e0954cb82b1.rst deleted file mode 100644 index 44857d548f..0000000000 --- a/doc/source/stdlib/detail/function-linq-select_to_array-0x5bb08e0954cb82b1.rst +++ /dev/null @@ -1 +0,0 @@ -Projects each element of an iterator into a new form and returns an array diff --git a/doc/source/stdlib/detail/function-linq-select_to_array-0xc1151dad61194839.rst b/doc/source/stdlib/detail/function-linq-select_to_array-0xc1151dad61194839.rst deleted file mode 100644 index d6a43da0ae..0000000000 --- a/doc/source/stdlib/detail/function-linq-select_to_array-0xc1151dad61194839.rst +++ /dev/null @@ -1 +0,0 @@ -Projects each element of an iterator into a new form using a selector function and returns an array diff --git a/doc/source/stdlib/detail/function-linq-sequence_equal-0x5adbad9a2b984a0e.rst b/doc/source/stdlib/detail/function-linq-sequence_equal-0x5adbad9a2b984a0e.rst deleted file mode 100644 index 9524280582..0000000000 --- a/doc/source/stdlib/detail/function-linq-sequence_equal-0x5adbad9a2b984a0e.rst +++ /dev/null @@ -1 +0,0 @@ -Checks if two sequences are equal diff --git a/doc/source/stdlib/detail/function-linq-sequence_equal-0xbe2e6bc0c19de495.rst b/doc/source/stdlib/detail/function-linq-sequence_equal-0xbe2e6bc0c19de495.rst deleted file mode 100644 index a0568ef9fd..0000000000 --- a/doc/source/stdlib/detail/function-linq-sequence_equal-0xbe2e6bc0c19de495.rst +++ /dev/null @@ -1 +0,0 @@ -Checks if two arrays are equal diff --git a/doc/source/stdlib/detail/function-linq-sequence_equal_by-0xc5a161e207493599.rst b/doc/source/stdlib/detail/function-linq-sequence_equal_by-0xc5a161e207493599.rst deleted file mode 100644 index 8cf833444c..0000000000 --- a/doc/source/stdlib/detail/function-linq-sequence_equal_by-0xc5a161e207493599.rst +++ /dev/null @@ -1 +0,0 @@ -Checks if two sequences are equal by key diff --git a/doc/source/stdlib/detail/function-linq-sequence_equal_by-0xcccdfd1fbbad2b26.rst b/doc/source/stdlib/detail/function-linq-sequence_equal_by-0xcccdfd1fbbad2b26.rst deleted file mode 100644 index 006c997d2c..0000000000 --- a/doc/source/stdlib/detail/function-linq-sequence_equal_by-0xcccdfd1fbbad2b26.rst +++ /dev/null @@ -1 +0,0 @@ -Checks if two arrays are equal by key diff --git a/doc/source/stdlib/detail/function-linq-single-0x6bb321b451d5c23d.rst b/doc/source/stdlib/detail/function-linq-single-0x6bb321b451d5c23d.rst deleted file mode 100644 index ebb4234381..0000000000 --- a/doc/source/stdlib/detail/function-linq-single-0x6bb321b451d5c23d.rst +++ /dev/null @@ -1 +0,0 @@ -Returns the only element of an iterator, and throws if there is not exactly one element diff --git a/doc/source/stdlib/detail/function-linq-single-0xcfdec7c23de99743.rst b/doc/source/stdlib/detail/function-linq-single-0xcfdec7c23de99743.rst deleted file mode 100644 index cc7a90ffa0..0000000000 --- a/doc/source/stdlib/detail/function-linq-single-0xcfdec7c23de99743.rst +++ /dev/null @@ -1 +0,0 @@ -Returns the only element of an array, and throws if there is not exactly one element diff --git a/doc/source/stdlib/detail/function-linq-single_or_default-0x6ddd75009f3aa0e2.rst b/doc/source/stdlib/detail/function-linq-single_or_default-0x6ddd75009f3aa0e2.rst deleted file mode 100644 index bad7a55653..0000000000 --- a/doc/source/stdlib/detail/function-linq-single_or_default-0x6ddd75009f3aa0e2.rst +++ /dev/null @@ -1 +0,0 @@ -Returns the only element of an array, or a default value if there is not exactly one element diff --git a/doc/source/stdlib/detail/function-linq-single_or_default-0x9e4a6da2289bf41c.rst b/doc/source/stdlib/detail/function-linq-single_or_default-0x9e4a6da2289bf41c.rst deleted file mode 100644 index 4b4927a515..0000000000 --- a/doc/source/stdlib/detail/function-linq-single_or_default-0x9e4a6da2289bf41c.rst +++ /dev/null @@ -1 +0,0 @@ -Returns the only element of an iterator, or a default value if there is not exactly one element diff --git a/doc/source/stdlib/detail/function-linq-skip-0xb231caa113373f6b.rst b/doc/source/stdlib/detail/function-linq-skip-0xb231caa113373f6b.rst deleted file mode 100644 index 998d82f253..0000000000 --- a/doc/source/stdlib/detail/function-linq-skip-0xb231caa113373f6b.rst +++ /dev/null @@ -1 +0,0 @@ -Yields all but the first `total` elements diff --git a/doc/source/stdlib/detail/function-linq-skip-0xfc0714136ca8707b.rst b/doc/source/stdlib/detail/function-linq-skip-0xfc0714136ca8707b.rst deleted file mode 100644 index 998d82f253..0000000000 --- a/doc/source/stdlib/detail/function-linq-skip-0xfc0714136ca8707b.rst +++ /dev/null @@ -1 +0,0 @@ -Yields all but the first `total` elements diff --git a/doc/source/stdlib/detail/function-linq-skip_impl-0x24271e87dd9ae67a.rst b/doc/source/stdlib/detail/function-linq-skip_impl-0x24271e87dd9ae67a.rst deleted file mode 100644 index 998d82f253..0000000000 --- a/doc/source/stdlib/detail/function-linq-skip_impl-0x24271e87dd9ae67a.rst +++ /dev/null @@ -1 +0,0 @@ -Yields all but the first `total` elements diff --git a/doc/source/stdlib/detail/function-linq-skip_inplace-0x1760fdb2000fde4f.rst b/doc/source/stdlib/detail/function-linq-skip_inplace-0x1760fdb2000fde4f.rst deleted file mode 100644 index bd1be8a53c..0000000000 --- a/doc/source/stdlib/detail/function-linq-skip_inplace-0x1760fdb2000fde4f.rst +++ /dev/null @@ -1 +0,0 @@ -Removes the first `total` elements from an array in place diff --git a/doc/source/stdlib/detail/function-linq-skip_last-0x561daf1bf4c2f58c.rst b/doc/source/stdlib/detail/function-linq-skip_last-0x561daf1bf4c2f58c.rst deleted file mode 100644 index 14183424f5..0000000000 --- a/doc/source/stdlib/detail/function-linq-skip_last-0x561daf1bf4c2f58c.rst +++ /dev/null @@ -1 +0,0 @@ -Yields all but the last `total` elements from an array diff --git a/doc/source/stdlib/detail/function-linq-skip_last-0x8db12484b1fd4c34.rst b/doc/source/stdlib/detail/function-linq-skip_last-0x8db12484b1fd4c34.rst deleted file mode 100644 index c187b2afaa..0000000000 --- a/doc/source/stdlib/detail/function-linq-skip_last-0x8db12484b1fd4c34.rst +++ /dev/null @@ -1 +0,0 @@ -Yields all but the last `total` elements from an iterator diff --git a/doc/source/stdlib/detail/function-linq-skip_last_inplace-0xabf9836d15c380c2.rst b/doc/source/stdlib/detail/function-linq-skip_last_inplace-0xabf9836d15c380c2.rst deleted file mode 100644 index c21ce2188b..0000000000 --- a/doc/source/stdlib/detail/function-linq-skip_last_inplace-0xabf9836d15c380c2.rst +++ /dev/null @@ -1 +0,0 @@ -Removes the last `total` elements from an array in place diff --git a/doc/source/stdlib/detail/function-linq-skip_last_to_array-0x98a389287337fab1.rst b/doc/source/stdlib/detail/function-linq-skip_last_to_array-0x98a389287337fab1.rst deleted file mode 100644 index ed773138aa..0000000000 --- a/doc/source/stdlib/detail/function-linq-skip_last_to_array-0x98a389287337fab1.rst +++ /dev/null @@ -1 +0,0 @@ -Yields all but the last `total` elements from an iterator and returns an array diff --git a/doc/source/stdlib/detail/function-linq-skip_to_array-0x6f8c448dad50e148.rst b/doc/source/stdlib/detail/function-linq-skip_to_array-0x6f8c448dad50e148.rst deleted file mode 100644 index c927e978a3..0000000000 --- a/doc/source/stdlib/detail/function-linq-skip_to_array-0x6f8c448dad50e148.rst +++ /dev/null @@ -1 +0,0 @@ -Yields all but the first `total` elements and returns an array diff --git a/doc/source/stdlib/detail/function-linq-skip_while-0x28fc927fe7edf6ae.rst b/doc/source/stdlib/detail/function-linq-skip_while-0x28fc927fe7edf6ae.rst deleted file mode 100644 index e386a97083..0000000000 --- a/doc/source/stdlib/detail/function-linq-skip_while-0x28fc927fe7edf6ae.rst +++ /dev/null @@ -1 +0,0 @@ -Skips all elements of an iterator while the predicate is true diff --git a/doc/source/stdlib/detail/function-linq-skip_while-0x56a0bdf324d6567e.rst b/doc/source/stdlib/detail/function-linq-skip_while-0x56a0bdf324d6567e.rst deleted file mode 100644 index a7cdaa35c3..0000000000 --- a/doc/source/stdlib/detail/function-linq-skip_while-0x56a0bdf324d6567e.rst +++ /dev/null @@ -1 +0,0 @@ -Skips all elements of an array while the predicate is true diff --git a/doc/source/stdlib/detail/function-linq-skip_while_impl-0xe23be8a640070987.rst b/doc/source/stdlib/detail/function-linq-skip_while_impl-0xe23be8a640070987.rst deleted file mode 100644 index e386a97083..0000000000 --- a/doc/source/stdlib/detail/function-linq-skip_while_impl-0xe23be8a640070987.rst +++ /dev/null @@ -1 +0,0 @@ -Skips all elements of an iterator while the predicate is true diff --git a/doc/source/stdlib/detail/function-linq-skip_while_to_array-0x7c9b739a4958008f.rst b/doc/source/stdlib/detail/function-linq-skip_while_to_array-0x7c9b739a4958008f.rst deleted file mode 100644 index 57e7c3ea7a..0000000000 --- a/doc/source/stdlib/detail/function-linq-skip_while_to_array-0x7c9b739a4958008f.rst +++ /dev/null @@ -1 +0,0 @@ -Skips all elements of an iterator while the predicate is true and returns an array diff --git a/doc/source/stdlib/detail/function-linq-sum-0x61ae6cf104601d79.rst b/doc/source/stdlib/detail/function-linq-sum-0x61ae6cf104601d79.rst deleted file mode 100644 index 5e6d806f6d..0000000000 --- a/doc/source/stdlib/detail/function-linq-sum-0x61ae6cf104601d79.rst +++ /dev/null @@ -1 +0,0 @@ -Sums elements in an iterator diff --git a/doc/source/stdlib/detail/function-linq-sum-0xa7d1cb2e2ebd5ac7.rst b/doc/source/stdlib/detail/function-linq-sum-0xa7d1cb2e2ebd5ac7.rst deleted file mode 100644 index 5371c407e6..0000000000 --- a/doc/source/stdlib/detail/function-linq-sum-0xa7d1cb2e2ebd5ac7.rst +++ /dev/null @@ -1 +0,0 @@ -Sums elements in an array diff --git a/doc/source/stdlib/detail/function-linq-take-0x5191807be166b1ac.rst b/doc/source/stdlib/detail/function-linq-take-0x5191807be166b1ac.rst deleted file mode 100644 index 7cef2a35d8..0000000000 --- a/doc/source/stdlib/detail/function-linq-take-0x5191807be166b1ac.rst +++ /dev/null @@ -1 +0,0 @@ -Yields only the first `total` elements diff --git a/doc/source/stdlib/detail/function-linq-take-0x821c903c13a90f13.rst b/doc/source/stdlib/detail/function-linq-take-0x821c903c13a90f13.rst deleted file mode 100644 index 2201ec9bb0..0000000000 --- a/doc/source/stdlib/detail/function-linq-take-0x821c903c13a90f13.rst +++ /dev/null @@ -1 +0,0 @@ -Yields a range of elements from an array diff --git a/doc/source/stdlib/detail/function-linq-take-0xa29b534bfc8e3504.rst b/doc/source/stdlib/detail/function-linq-take-0xa29b534bfc8e3504.rst deleted file mode 100644 index a2a05429ef..0000000000 --- a/doc/source/stdlib/detail/function-linq-take-0xa29b534bfc8e3504.rst +++ /dev/null @@ -1 +0,0 @@ -Yields a range of elements from an iterator diff --git a/doc/source/stdlib/detail/function-linq-take-0xb85a72937639e9f4.rst b/doc/source/stdlib/detail/function-linq-take-0xb85a72937639e9f4.rst deleted file mode 100644 index 7cef2a35d8..0000000000 --- a/doc/source/stdlib/detail/function-linq-take-0xb85a72937639e9f4.rst +++ /dev/null @@ -1 +0,0 @@ -Yields only the first `total` elements diff --git a/doc/source/stdlib/detail/function-linq-take_impl-0x80454666bc3f2a9b.rst b/doc/source/stdlib/detail/function-linq-take_impl-0x80454666bc3f2a9b.rst deleted file mode 100644 index 7cef2a35d8..0000000000 --- a/doc/source/stdlib/detail/function-linq-take_impl-0x80454666bc3f2a9b.rst +++ /dev/null @@ -1 +0,0 @@ -Yields only the first `total` elements diff --git a/doc/source/stdlib/detail/function-linq-take_inplace-0x3d00c5dbb31f036f.rst b/doc/source/stdlib/detail/function-linq-take_inplace-0x3d00c5dbb31f036f.rst deleted file mode 100644 index defeeca901..0000000000 --- a/doc/source/stdlib/detail/function-linq-take_inplace-0x3d00c5dbb31f036f.rst +++ /dev/null @@ -1 +0,0 @@ -Keeps only a range of elements in an array in place diff --git a/doc/source/stdlib/detail/function-linq-take_inplace-0xdca02f976188f068.rst b/doc/source/stdlib/detail/function-linq-take_inplace-0xdca02f976188f068.rst deleted file mode 100644 index 558b4ae887..0000000000 --- a/doc/source/stdlib/detail/function-linq-take_inplace-0xdca02f976188f068.rst +++ /dev/null @@ -1 +0,0 @@ -Keeps only the first `total` elements in an array in place diff --git a/doc/source/stdlib/detail/function-linq-take_last-0x119d46441df14daf.rst b/doc/source/stdlib/detail/function-linq-take_last-0x119d46441df14daf.rst deleted file mode 100644 index a4da4b68cf..0000000000 --- a/doc/source/stdlib/detail/function-linq-take_last-0x119d46441df14daf.rst +++ /dev/null @@ -1 +0,0 @@ -Yields only the last `total` elements from an iterator diff --git a/doc/source/stdlib/detail/function-linq-take_last-0xf8f65de4a0e7863d.rst b/doc/source/stdlib/detail/function-linq-take_last-0xf8f65de4a0e7863d.rst deleted file mode 100644 index 23ab801833..0000000000 --- a/doc/source/stdlib/detail/function-linq-take_last-0xf8f65de4a0e7863d.rst +++ /dev/null @@ -1 +0,0 @@ -Yields only the last `total` elements from an array diff --git a/doc/source/stdlib/detail/function-linq-take_last_inplace-0x2bb1187794c2c58f.rst b/doc/source/stdlib/detail/function-linq-take_last_inplace-0x2bb1187794c2c58f.rst deleted file mode 100644 index 209baacd66..0000000000 --- a/doc/source/stdlib/detail/function-linq-take_last_inplace-0x2bb1187794c2c58f.rst +++ /dev/null @@ -1 +0,0 @@ -Keeps only the last `total` elements in an array in place diff --git a/doc/source/stdlib/detail/function-linq-take_last_to_array-0x7703c35ee803d45c.rst b/doc/source/stdlib/detail/function-linq-take_last_to_array-0x7703c35ee803d45c.rst deleted file mode 100644 index cdb7fab25f..0000000000 --- a/doc/source/stdlib/detail/function-linq-take_last_to_array-0x7703c35ee803d45c.rst +++ /dev/null @@ -1 +0,0 @@ -Yields only the last `total` elements from an iterator and returns an array diff --git a/doc/source/stdlib/detail/function-linq-take_to_array-0x8b99d59f634d1763.rst b/doc/source/stdlib/detail/function-linq-take_to_array-0x8b99d59f634d1763.rst deleted file mode 100644 index cd94d1db41..0000000000 --- a/doc/source/stdlib/detail/function-linq-take_to_array-0x8b99d59f634d1763.rst +++ /dev/null @@ -1 +0,0 @@ -Yields only the first `total` elements and returns an array diff --git a/doc/source/stdlib/detail/function-linq-take_to_array-0xd66ea728c5a90ba6.rst b/doc/source/stdlib/detail/function-linq-take_to_array-0xd66ea728c5a90ba6.rst deleted file mode 100644 index 1895cad0e3..0000000000 --- a/doc/source/stdlib/detail/function-linq-take_to_array-0xd66ea728c5a90ba6.rst +++ /dev/null @@ -1 +0,0 @@ -Yields a range of elements from an iterator and returns an array diff --git a/doc/source/stdlib/detail/function-linq-take_while-0x477615dd7c56a4b7.rst b/doc/source/stdlib/detail/function-linq-take_while-0x477615dd7c56a4b7.rst deleted file mode 100644 index 18bda57380..0000000000 --- a/doc/source/stdlib/detail/function-linq-take_while-0x477615dd7c56a4b7.rst +++ /dev/null @@ -1 +0,0 @@ -Yields only the elements of an iterator while the predicate is true diff --git a/doc/source/stdlib/detail/function-linq-take_while-0xf97677ef39edb605.rst b/doc/source/stdlib/detail/function-linq-take_while-0xf97677ef39edb605.rst deleted file mode 100644 index 858e9bbfeb..0000000000 --- a/doc/source/stdlib/detail/function-linq-take_while-0xf97677ef39edb605.rst +++ /dev/null @@ -1 +0,0 @@ -Yields only the elements of an array while the predicate is true diff --git a/doc/source/stdlib/detail/function-linq-take_while_impl-0xdde90e41b309b95e.rst b/doc/source/stdlib/detail/function-linq-take_while_impl-0xdde90e41b309b95e.rst deleted file mode 100644 index 18bda57380..0000000000 --- a/doc/source/stdlib/detail/function-linq-take_while_impl-0xdde90e41b309b95e.rst +++ /dev/null @@ -1 +0,0 @@ -Yields only the elements of an iterator while the predicate is true diff --git a/doc/source/stdlib/detail/function-linq-take_while_to_array-0xf1784e304845ff00.rst b/doc/source/stdlib/detail/function-linq-take_while_to_array-0xf1784e304845ff00.rst deleted file mode 100644 index 05a7acdf36..0000000000 --- a/doc/source/stdlib/detail/function-linq-take_while_to_array-0xf1784e304845ff00.rst +++ /dev/null @@ -1 +0,0 @@ -Yields only the elements of an iterator while the predicate is true and returns an array diff --git a/doc/source/stdlib/detail/function-linq-to_sequence-0x78fce7a6f540ef39.rst b/doc/source/stdlib/detail/function-linq-to_sequence-0x78fce7a6f540ef39.rst deleted file mode 100644 index 3ed0f60080..0000000000 --- a/doc/source/stdlib/detail/function-linq-to_sequence-0x78fce7a6f540ef39.rst +++ /dev/null @@ -1 +0,0 @@ -Converts an array to an iterator diff --git a/doc/source/stdlib/detail/function-linq-to_sequence_move-0x67b94271f3df734f.rst b/doc/source/stdlib/detail/function-linq-to_sequence_move-0x67b94271f3df734f.rst deleted file mode 100644 index 9886a6d03e..0000000000 --- a/doc/source/stdlib/detail/function-linq-to_sequence_move-0x67b94271f3df734f.rst +++ /dev/null @@ -1 +0,0 @@ -Converts an array to an iterator, captures input diff --git a/doc/source/stdlib/detail/function-linq-to_table-0x2d8713a8bfa8cb9c.rst b/doc/source/stdlib/detail/function-linq-to_table-0x2d8713a8bfa8cb9c.rst deleted file mode 100644 index 82c53fc29a..0000000000 --- a/doc/source/stdlib/detail/function-linq-to_table-0x2d8713a8bfa8cb9c.rst +++ /dev/null @@ -1 +0,0 @@ -Converts an array to a table diff --git a/doc/source/stdlib/detail/function-linq-to_table-0xdd9edd350d828bee.rst b/doc/source/stdlib/detail/function-linq-to_table-0xdd9edd350d828bee.rst deleted file mode 100644 index fd855ee3fe..0000000000 --- a/doc/source/stdlib/detail/function-linq-to_table-0xdd9edd350d828bee.rst +++ /dev/null @@ -1 +0,0 @@ -Converts an iterator to a table diff --git a/doc/source/stdlib/detail/function-linq-union-0xd84b53ec29b08985.rst b/doc/source/stdlib/detail/function-linq-union-0xd84b53ec29b08985.rst deleted file mode 100644 index a12d33c81b..0000000000 --- a/doc/source/stdlib/detail/function-linq-union-0xd84b53ec29b08985.rst +++ /dev/null @@ -1 +0,0 @@ -Returns distinct elements from the concatenation of two arrays diff --git a/doc/source/stdlib/detail/function-linq-union-0xf31c90d7cd623ca7.rst b/doc/source/stdlib/detail/function-linq-union-0xf31c90d7cd623ca7.rst deleted file mode 100644 index 3a0a559526..0000000000 --- a/doc/source/stdlib/detail/function-linq-union-0xf31c90d7cd623ca7.rst +++ /dev/null @@ -1 +0,0 @@ -Returns distinct elements from the concatenation of two iterators diff --git a/doc/source/stdlib/detail/function-linq-union_by-0x5ca1f14dbf25d346.rst b/doc/source/stdlib/detail/function-linq-union_by-0x5ca1f14dbf25d346.rst deleted file mode 100644 index 57565685bf..0000000000 --- a/doc/source/stdlib/detail/function-linq-union_by-0x5ca1f14dbf25d346.rst +++ /dev/null @@ -1 +0,0 @@ -Returns distinct elements from the concatenation of two arrays by key diff --git a/doc/source/stdlib/detail/function-linq-union_by-0xd1fa7ed3fd72bf07.rst b/doc/source/stdlib/detail/function-linq-union_by-0xd1fa7ed3fd72bf07.rst deleted file mode 100644 index b491bfad08..0000000000 --- a/doc/source/stdlib/detail/function-linq-union_by-0xd1fa7ed3fd72bf07.rst +++ /dev/null @@ -1 +0,0 @@ -Returns distinct elements from the concatenation of two iterators by key diff --git a/doc/source/stdlib/detail/function-linq-union_by_impl-0x8168fb8ef7c8933b.rst b/doc/source/stdlib/detail/function-linq-union_by_impl-0x8168fb8ef7c8933b.rst deleted file mode 100644 index b491bfad08..0000000000 --- a/doc/source/stdlib/detail/function-linq-union_by_impl-0x8168fb8ef7c8933b.rst +++ /dev/null @@ -1 +0,0 @@ -Returns distinct elements from the concatenation of two iterators by key diff --git a/doc/source/stdlib/detail/function-linq-union_by_to_array-0x2e96231dfeec52c8.rst b/doc/source/stdlib/detail/function-linq-union_by_to_array-0x2e96231dfeec52c8.rst deleted file mode 100644 index e72d7a6c06..0000000000 --- a/doc/source/stdlib/detail/function-linq-union_by_to_array-0x2e96231dfeec52c8.rst +++ /dev/null @@ -1 +0,0 @@ -Returns distinct elements from the concatenation of two iterators by key and returns an array diff --git a/doc/source/stdlib/detail/function-linq-union_impl-0x35dced9253dddb4b.rst b/doc/source/stdlib/detail/function-linq-union_impl-0x35dced9253dddb4b.rst deleted file mode 100644 index 3a0a559526..0000000000 --- a/doc/source/stdlib/detail/function-linq-union_impl-0x35dced9253dddb4b.rst +++ /dev/null @@ -1 +0,0 @@ -Returns distinct elements from the concatenation of two iterators diff --git a/doc/source/stdlib/detail/function-linq-union_to_array-0xbf3ab53701ccb1c9.rst b/doc/source/stdlib/detail/function-linq-union_to_array-0xbf3ab53701ccb1c9.rst deleted file mode 100644 index 2376ae8270..0000000000 --- a/doc/source/stdlib/detail/function-linq-union_to_array-0xbf3ab53701ccb1c9.rst +++ /dev/null @@ -1 +0,0 @@ -Returns distinct elements from the concatenation of two iterators and returns an array diff --git a/doc/source/stdlib/detail/function-linq-unique-0x18093eb071cc65cb.rst b/doc/source/stdlib/detail/function-linq-unique-0x18093eb071cc65cb.rst deleted file mode 100644 index f0ca174b97..0000000000 --- a/doc/source/stdlib/detail/function-linq-unique-0x18093eb071cc65cb.rst +++ /dev/null @@ -1 +0,0 @@ -sort and remove duplicate elements from an iterator diff --git a/doc/source/stdlib/detail/function-linq-unique-0xc786c4c23029ed25.rst b/doc/source/stdlib/detail/function-linq-unique-0xc786c4c23029ed25.rst deleted file mode 100644 index 72fb0a99e6..0000000000 --- a/doc/source/stdlib/detail/function-linq-unique-0xc786c4c23029ed25.rst +++ /dev/null @@ -1 +0,0 @@ -sort and remove duplicate elements from an array diff --git a/doc/source/stdlib/detail/function-linq-unique_by-0x666c1c04c9f2ba5c.rst b/doc/source/stdlib/detail/function-linq-unique_by-0x666c1c04c9f2ba5c.rst deleted file mode 100644 index b49d3f5084..0000000000 --- a/doc/source/stdlib/detail/function-linq-unique_by-0x666c1c04c9f2ba5c.rst +++ /dev/null @@ -1 +0,0 @@ -sort and remove duplicate elements from an array based on a key diff --git a/doc/source/stdlib/detail/function-linq-unique_by-0xf9a5978d50bafed2.rst b/doc/source/stdlib/detail/function-linq-unique_by-0xf9a5978d50bafed2.rst deleted file mode 100644 index d45a14d776..0000000000 --- a/doc/source/stdlib/detail/function-linq-unique_by-0xf9a5978d50bafed2.rst +++ /dev/null @@ -1 +0,0 @@ -sort and remove duplicate elements from an iterator based on a key diff --git a/doc/source/stdlib/detail/function-linq-unique_by_inplace-0x3b845a865e427662.rst b/doc/source/stdlib/detail/function-linq-unique_by_inplace-0x3b845a865e427662.rst deleted file mode 100644 index 61610c5e8a..0000000000 --- a/doc/source/stdlib/detail/function-linq-unique_by_inplace-0x3b845a865e427662.rst +++ /dev/null @@ -1 +0,0 @@ -remove duplicate elements from an array based on a key in place diff --git a/doc/source/stdlib/detail/function-linq-unique_by_to_array-0xefb5e09a8d5fbc19.rst b/doc/source/stdlib/detail/function-linq-unique_by_to_array-0xefb5e09a8d5fbc19.rst deleted file mode 100644 index 371fac762c..0000000000 --- a/doc/source/stdlib/detail/function-linq-unique_by_to_array-0xefb5e09a8d5fbc19.rst +++ /dev/null @@ -1 +0,0 @@ -sort and remove duplicate elements from an iterator based on a key and returns an array diff --git a/doc/source/stdlib/detail/function-linq-unique_inplace-0x435a0cfc3b2336bd.rst b/doc/source/stdlib/detail/function-linq-unique_inplace-0x435a0cfc3b2336bd.rst deleted file mode 100644 index 9e7af733ae..0000000000 --- a/doc/source/stdlib/detail/function-linq-unique_inplace-0x435a0cfc3b2336bd.rst +++ /dev/null @@ -1 +0,0 @@ -remove duplicate elements from sorted array in place diff --git a/doc/source/stdlib/detail/function-linq-unique_key-0xd7f9bc15013b917b.rst b/doc/source/stdlib/detail/function-linq-unique_key-0xd7f9bc15013b917b.rst deleted file mode 100644 index b2d353ab24..0000000000 --- a/doc/source/stdlib/detail/function-linq-unique_key-0xd7f9bc15013b917b.rst +++ /dev/null @@ -1 +0,0 @@ -generates unique key of workhorse type for the value diff --git a/doc/source/stdlib/detail/function-linq-unique_to_array-0xdb27f7448ae1e1b3.rst b/doc/source/stdlib/detail/function-linq-unique_to_array-0xdb27f7448ae1e1b3.rst deleted file mode 100644 index 0ca9067fb9..0000000000 --- a/doc/source/stdlib/detail/function-linq-unique_to_array-0xdb27f7448ae1e1b3.rst +++ /dev/null @@ -1 +0,0 @@ -sort and remove duplicate elements from an iterator and returns an array diff --git a/doc/source/stdlib/detail/function-linq-where_-0x12161c11bb43e3c0.rst b/doc/source/stdlib/detail/function-linq-where_-0x12161c11bb43e3c0.rst deleted file mode 100644 index bba05ebc24..0000000000 --- a/doc/source/stdlib/detail/function-linq-where_-0x12161c11bb43e3c0.rst +++ /dev/null @@ -1 +0,0 @@ -Filters elements in an array based on a predicate diff --git a/doc/source/stdlib/detail/function-linq-where_-0x94c93c10b113471c.rst b/doc/source/stdlib/detail/function-linq-where_-0x94c93c10b113471c.rst deleted file mode 100644 index 4a50392888..0000000000 --- a/doc/source/stdlib/detail/function-linq-where_-0x94c93c10b113471c.rst +++ /dev/null @@ -1 +0,0 @@ -Filters elements in an iterator based on a predicate diff --git a/doc/source/stdlib/detail/function-linq-where_impl-0x1236c66b850380a3.rst b/doc/source/stdlib/detail/function-linq-where_impl-0x1236c66b850380a3.rst deleted file mode 100644 index 4a50392888..0000000000 --- a/doc/source/stdlib/detail/function-linq-where_impl-0x1236c66b850380a3.rst +++ /dev/null @@ -1 +0,0 @@ -Filters elements in an iterator based on a predicate diff --git a/doc/source/stdlib/detail/function-linq-where_to_array-0xbb8c8a1da8575e2c.rst b/doc/source/stdlib/detail/function-linq-where_to_array-0xbb8c8a1da8575e2c.rst deleted file mode 100644 index a693413aff..0000000000 --- a/doc/source/stdlib/detail/function-linq-where_to_array-0xbb8c8a1da8575e2c.rst +++ /dev/null @@ -1 +0,0 @@ -Filters elements in an iterator based on a predicate and returns an array diff --git a/doc/source/stdlib/detail/function-linq-zip-0x4dfb31d51609db06.rst b/doc/source/stdlib/detail/function-linq-zip-0x4dfb31d51609db06.rst deleted file mode 100644 index 2b816dc0ef..0000000000 --- a/doc/source/stdlib/detail/function-linq-zip-0x4dfb31d51609db06.rst +++ /dev/null @@ -1 +0,0 @@ -Merges three arrays into an array of tuples diff --git a/doc/source/stdlib/detail/function-linq-zip-0x682f9066658409b4.rst b/doc/source/stdlib/detail/function-linq-zip-0x682f9066658409b4.rst deleted file mode 100644 index bbd28c4ae2..0000000000 --- a/doc/source/stdlib/detail/function-linq-zip-0x682f9066658409b4.rst +++ /dev/null @@ -1 +0,0 @@ -Merges two arrays into an array by applying a specified function diff --git a/doc/source/stdlib/detail/function-linq-zip-0x8d03612577154da2.rst b/doc/source/stdlib/detail/function-linq-zip-0x8d03612577154da2.rst deleted file mode 100644 index e19b211e5f..0000000000 --- a/doc/source/stdlib/detail/function-linq-zip-0x8d03612577154da2.rst +++ /dev/null @@ -1 +0,0 @@ -Merges two iterators into an iterator of tuples diff --git a/doc/source/stdlib/detail/function-linq-zip-0x98ecd0acdebc5fcb.rst b/doc/source/stdlib/detail/function-linq-zip-0x98ecd0acdebc5fcb.rst deleted file mode 100644 index d0fe5ed02d..0000000000 --- a/doc/source/stdlib/detail/function-linq-zip-0x98ecd0acdebc5fcb.rst +++ /dev/null @@ -1 +0,0 @@ -Merges two iterators into an iterator by applying a specified function diff --git a/doc/source/stdlib/detail/function-linq-zip-0xb86b95966d1b96d3.rst b/doc/source/stdlib/detail/function-linq-zip-0xb86b95966d1b96d3.rst deleted file mode 100644 index 82bad2ba0f..0000000000 --- a/doc/source/stdlib/detail/function-linq-zip-0xb86b95966d1b96d3.rst +++ /dev/null @@ -1 +0,0 @@ -Merges three iterators into an iterator of tuples diff --git a/doc/source/stdlib/detail/function-linq-zip-0xecada18cb5103657.rst b/doc/source/stdlib/detail/function-linq-zip-0xecada18cb5103657.rst deleted file mode 100644 index 4f900bb89c..0000000000 --- a/doc/source/stdlib/detail/function-linq-zip-0xecada18cb5103657.rst +++ /dev/null @@ -1 +0,0 @@ -Merges two arrays into an array of tuples diff --git a/doc/source/stdlib/detail/function-linq-zip3_impl-0x5126481610ad9a11.rst b/doc/source/stdlib/detail/function-linq-zip3_impl-0x5126481610ad9a11.rst deleted file mode 100644 index 3851265332..0000000000 --- a/doc/source/stdlib/detail/function-linq-zip3_impl-0x5126481610ad9a11.rst +++ /dev/null @@ -1 +0,0 @@ -Merges three iterators into an array of tuples diff --git a/doc/source/stdlib/detail/function-linq-zip_impl-0x13bee87358d14da5.rst b/doc/source/stdlib/detail/function-linq-zip_impl-0x13bee87358d14da5.rst deleted file mode 100644 index 5e5a91aa30..0000000000 --- a/doc/source/stdlib/detail/function-linq-zip_impl-0x13bee87358d14da5.rst +++ /dev/null @@ -1 +0,0 @@ -Merges two iterators into an array of tuples diff --git a/doc/source/stdlib/detail/function-linq-zip_to_array-0x396ba3155f3c2ed4.rst b/doc/source/stdlib/detail/function-linq-zip_to_array-0x396ba3155f3c2ed4.rst deleted file mode 100644 index 5e5a91aa30..0000000000 --- a/doc/source/stdlib/detail/function-linq-zip_to_array-0x396ba3155f3c2ed4.rst +++ /dev/null @@ -1 +0,0 @@ -Merges two iterators into an array of tuples diff --git a/doc/source/stdlib/detail/function-linq-zip_to_array-0x8607b203ee02938a.rst b/doc/source/stdlib/detail/function-linq-zip_to_array-0x8607b203ee02938a.rst deleted file mode 100644 index 3851265332..0000000000 --- a/doc/source/stdlib/detail/function-linq-zip_to_array-0x8607b203ee02938a.rst +++ /dev/null @@ -1 +0,0 @@ -Merges three iterators into an array of tuples diff --git a/doc/source/stdlib/detail/function-linq-zip_to_array-0xa8981b844145c943.rst b/doc/source/stdlib/detail/function-linq-zip_to_array-0xa8981b844145c943.rst deleted file mode 100644 index 2a35ed61ea..0000000000 --- a/doc/source/stdlib/detail/function-linq-zip_to_array-0xa8981b844145c943.rst +++ /dev/null @@ -1 +0,0 @@ -Merges two iterators into an array by applying a specified function diff --git a/doc/source/stdlib/detail/function-linq_boost-AstCallMacro_LinqPred2-visit-0xa7711840537a3824.rst b/doc/source/stdlib/detail/function-linq_boost-AstCallMacro_LinqPred2-visit-0xa7711840537a3824.rst deleted file mode 100644 index 288d517451..0000000000 --- a/doc/source/stdlib/detail/function-linq_boost-AstCallMacro_LinqPred2-visit-0xa7711840537a3824.rst +++ /dev/null @@ -1 +0,0 @@ -Visits the LINQ predicate macro call and rewrites it with a lambda argument. diff --git a/doc/source/stdlib/detail/function-linq_boost-AstCallMacro_LinqPredII2-visit-0xa7711840537a3824.rst b/doc/source/stdlib/detail/function-linq_boost-AstCallMacro_LinqPredII2-visit-0xa7711840537a3824.rst deleted file mode 100644 index dacdbee337..0000000000 --- a/doc/source/stdlib/detail/function-linq_boost-AstCallMacro_LinqPredII2-visit-0xa7711840537a3824.rst +++ /dev/null @@ -1 +0,0 @@ -Visits the LINQ two-iterator predicate macro call and rewrites it with a lambda argument. diff --git a/doc/source/stdlib/detail/function-linq_boost-LinqFold-visit-0xa7711840537a3824.rst b/doc/source/stdlib/detail/function-linq_boost-LinqFold-visit-0xa7711840537a3824.rst deleted file mode 100644 index a99ec452e4..0000000000 --- a/doc/source/stdlib/detail/function-linq_boost-LinqFold-visit-0xa7711840537a3824.rst +++ /dev/null @@ -1 +0,0 @@ -Visits the _fold macro call and folds LINQ expressions into optimized sequences. diff --git a/doc/source/stdlib/detail/function-linq_boost-fold_linq_default-0xa6c1fd3464e64450.rst b/doc/source/stdlib/detail/function-linq_boost-fold_linq_default-0xa6c1fd3464e64450.rst deleted file mode 100644 index 8102cb0bad..0000000000 --- a/doc/source/stdlib/detail/function-linq_boost-fold_linq_default-0xa6c1fd3464e64450.rst +++ /dev/null @@ -1,12 +0,0 @@ -fold sequence into - invoke ( top, $ ( it ) : auto { - var pass_0 = call0(it,...) // or call0_to_array(it,...) - var pass_1 = call1(pass_0,...) - ... - return <- pass_N // or pass_N.to_sequence() if expr is iterator - } ) - skip var if call is inplace - skip delete if call is not first - if call is first and source is iterator, then call is call_to_array - if call is last and expr is iterator, then return is pass_N.to_sequence() - if expr is not linq call, return null diff --git a/doc/source/stdlib/detail/function-linq_boost-fold_order_distinct-0x198e32c328ab2a8e.rst b/doc/source/stdlib/detail/function-linq_boost-fold_order_distinct-0x198e32c328ab2a8e.rst deleted file mode 100644 index c88f5822d2..0000000000 --- a/doc/source/stdlib/detail/function-linq_boost-fold_order_distinct-0x198e32c328ab2a8e.rst +++ /dev/null @@ -1 +0,0 @@ -replaces order + distinct into a single order + unique diff --git a/doc/source/stdlib/detail/function-linq_boost-fold_select-0xa780a4e8bc8b5117.rst b/doc/source/stdlib/detail/function-linq_boost-fold_select-0xa780a4e8bc8b5117.rst deleted file mode 100644 index d8eb09d0ad..0000000000 --- a/doc/source/stdlib/detail/function-linq_boost-fold_select-0xa780a4e8bc8b5117.rst +++ /dev/null @@ -1 +0,0 @@ -folds select into a single comprehension diff --git a/doc/source/stdlib/detail/function-linq_boost-fold_select_where-0xdae8f572f13b9af6.rst b/doc/source/stdlib/detail/function-linq_boost-fold_select_where-0xdae8f572f13b9af6.rst deleted file mode 100644 index 646292b2f6..0000000000 --- a/doc/source/stdlib/detail/function-linq_boost-fold_select_where-0xdae8f572f13b9af6.rst +++ /dev/null @@ -1,2 +0,0 @@ -folds where + select into a single comprehension-like expression -note, order of select and where is reversed diff --git a/doc/source/stdlib/detail/function-linq_boost-fold_where-0x76b4e94572fd77e7.rst b/doc/source/stdlib/detail/function-linq_boost-fold_where-0x76b4e94572fd77e7.rst deleted file mode 100644 index 29bf9da623..0000000000 --- a/doc/source/stdlib/detail/function-linq_boost-fold_where-0x76b4e94572fd77e7.rst +++ /dev/null @@ -1 +0,0 @@ -folds where + select into a single comprehension diff --git a/doc/source/stdlib/detail/function-linq_boost-fold_where_select-0x32bc2a5fadb08aa4.rst b/doc/source/stdlib/detail/function-linq_boost-fold_where_select-0x32bc2a5fadb08aa4.rst deleted file mode 100644 index 29bf9da623..0000000000 --- a/doc/source/stdlib/detail/function-linq_boost-fold_where_select-0x32bc2a5fadb08aa4.rst +++ /dev/null @@ -1 +0,0 @@ -folds where + select into a single comprehension diff --git a/doc/source/stdlib/detail/function-linq_boost-is_call_or_generic_arg0-0x9c088d38813a8757.rst b/doc/source/stdlib/detail/function-linq_boost-is_call_or_generic_arg0-0x9c088d38813a8757.rst deleted file mode 100644 index aa47b1eed7..0000000000 --- a/doc/source/stdlib/detail/function-linq_boost-is_call_or_generic_arg0-0x9c088d38813a8757.rst +++ /dev/null @@ -1 +0,0 @@ -returns null if not to_array, otherwise returns the argument of to_array diff --git a/doc/source/stdlib/detail/function-lint-paranoid-0x8c9b77a3ca504759.rst b/doc/source/stdlib/detail/function-lint-paranoid-0x8c9b77a3ca504759.rst deleted file mode 100644 index cc8ad36760..0000000000 --- a/doc/source/stdlib/detail/function-lint-paranoid-0x8c9b77a3ca504759.rst +++ /dev/null @@ -1 +0,0 @@ -Runs the paranoid lint visitor on the program to check for common coding issues. diff --git a/doc/source/stdlib/detail/function-macro_boost-capture_block-0x8f4b1264d6aff9fc.rst b/doc/source/stdlib/detail/function-macro_boost-capture_block-0x8f4b1264d6aff9fc.rst deleted file mode 100644 index aa9b67bd07..0000000000 --- a/doc/source/stdlib/detail/function-macro_boost-capture_block-0x8f4b1264d6aff9fc.rst +++ /dev/null @@ -1 +0,0 @@ -Collect all captured variables in the expression. diff --git a/doc/source/stdlib/detail/function-macro_boost-collect_finally-0xf27c3bc7647e9a9f.rst b/doc/source/stdlib/detail/function-macro_boost-collect_finally-0xf27c3bc7647e9a9f.rst deleted file mode 100644 index 2af004ca29..0000000000 --- a/doc/source/stdlib/detail/function-macro_boost-collect_finally-0xf27c3bc7647e9a9f.rst +++ /dev/null @@ -1,3 +0,0 @@ -Collect all finally blocks in the expression. -Returns array of ExprBlock? with all the blocks which have `finally` section -Does not go into 'make_block' expression, such as `lambda`, or 'block' expressions diff --git a/doc/source/stdlib/detail/function-macro_boost-collect_labels-0x491e900ae2ca1b9.rst b/doc/source/stdlib/detail/function-macro_boost-collect_labels-0x491e900ae2ca1b9.rst deleted file mode 100644 index e522465097..0000000000 --- a/doc/source/stdlib/detail/function-macro_boost-collect_labels-0x491e900ae2ca1b9.rst +++ /dev/null @@ -1,2 +0,0 @@ -Collect all labels in the expression. Returns array of integer with label indices -Does not go into 'make_block' expression, such as `lambda`, or 'block' expressions diff --git a/doc/source/stdlib/detail/function-macro_boost-macro_verify-0xf5f5ae881d4c0e29.rst b/doc/source/stdlib/detail/function-macro_boost-macro_verify-0xf5f5ae881d4c0e29.rst deleted file mode 100644 index 4d5df0ad3d..0000000000 --- a/doc/source/stdlib/detail/function-macro_boost-macro_verify-0xf5f5ae881d4c0e29.rst +++ /dev/null @@ -1 +0,0 @@ -Same as verify, only the check will produce macro error, followed by return [[ExpressionPtr]] diff --git a/doc/source/stdlib/detail/function-match-match_expr-0xba95dcd6a9344f34.rst b/doc/source/stdlib/detail/function-match-match_expr-0xba95dcd6a9344f34.rst deleted file mode 100644 index d4883fa836..0000000000 --- a/doc/source/stdlib/detail/function-match-match_expr-0xba95dcd6a9344f34.rst +++ /dev/null @@ -1,2 +0,0 @@ -Match by expression equality. Inside a ``match`` arm, ``match_expr(expr)`` generates -a condition ``value == expr``. Captured variables (``$v``) are substituted before comparison. diff --git a/doc/source/stdlib/detail/function-match-match_type-0xd262cb6909576da8.rst b/doc/source/stdlib/detail/function-match-match_type-0xd262cb6909576da8.rst deleted file mode 100644 index f59ea1ac86..0000000000 --- a/doc/source/stdlib/detail/function-match-match_type-0xd262cb6909576da8.rst +++ /dev/null @@ -1,2 +0,0 @@ -Match by type. Inside a ``match`` arm, ``match_type(expr, Type)`` checks whether the -matched value has the given type and decomposes ``expr`` against it. diff --git a/doc/source/stdlib/detail/function-math_bits-cast_to_int16-0xf5681838e557a9b.rst b/doc/source/stdlib/detail/function-math_bits-cast_to_int16-0xf5681838e557a9b.rst deleted file mode 100644 index ab07b59d57..0000000000 --- a/doc/source/stdlib/detail/function-math_bits-cast_to_int16-0xf5681838e557a9b.rst +++ /dev/null @@ -1 +0,0 @@ -return an int16 which was bit-cast from x diff --git a/doc/source/stdlib/detail/function-math_bits-cast_to_int32-0xe435068b163e69cf.rst b/doc/source/stdlib/detail/function-math_bits-cast_to_int32-0xe435068b163e69cf.rst deleted file mode 100644 index f6a24fa067..0000000000 --- a/doc/source/stdlib/detail/function-math_bits-cast_to_int32-0xe435068b163e69cf.rst +++ /dev/null @@ -1 +0,0 @@ -return an int32 which was bit-cast from x diff --git a/doc/source/stdlib/detail/function-math_bits-cast_to_int64-0xcab2caf3f75ec3b1.rst b/doc/source/stdlib/detail/function-math_bits-cast_to_int64-0xcab2caf3f75ec3b1.rst deleted file mode 100644 index ee37f28b83..0000000000 --- a/doc/source/stdlib/detail/function-math_bits-cast_to_int64-0xcab2caf3f75ec3b1.rst +++ /dev/null @@ -1 +0,0 @@ -return an int64 which was bit-cast from x diff --git a/doc/source/stdlib/detail/function-math_bits-cast_to_int8-0x513ea50b7ea553fd.rst b/doc/source/stdlib/detail/function-math_bits-cast_to_int8-0x513ea50b7ea553fd.rst deleted file mode 100644 index a0d4a6e4b3..0000000000 --- a/doc/source/stdlib/detail/function-math_bits-cast_to_int8-0x513ea50b7ea553fd.rst +++ /dev/null @@ -1 +0,0 @@ -return an int8 which was bit-cast from x diff --git a/doc/source/stdlib/detail/function-math_bits-cast_to_pointer-0xdb445868275f36ed.rst b/doc/source/stdlib/detail/function-math_bits-cast_to_pointer-0xdb445868275f36ed.rst deleted file mode 100644 index 529efa8882..0000000000 --- a/doc/source/stdlib/detail/function-math_bits-cast_to_pointer-0xdb445868275f36ed.rst +++ /dev/null @@ -1 +0,0 @@ -return a pointer which was bit-cast from x diff --git a/doc/source/stdlib/detail/function-math_bits-cast_to_string-0x85b00d71a38d3b7b.rst b/doc/source/stdlib/detail/function-math_bits-cast_to_string-0x85b00d71a38d3b7b.rst deleted file mode 100644 index 84c2737252..0000000000 --- a/doc/source/stdlib/detail/function-math_bits-cast_to_string-0x85b00d71a38d3b7b.rst +++ /dev/null @@ -1 +0,0 @@ -return a string which pointer was bit-cast from x diff --git a/doc/source/stdlib/detail/function-math_bits-cast_to_vec4f-0x529efb4543fa87ff.rst b/doc/source/stdlib/detail/function-math_bits-cast_to_vec4f-0x529efb4543fa87ff.rst deleted file mode 100644 index b23a20060f..0000000000 --- a/doc/source/stdlib/detail/function-math_bits-cast_to_vec4f-0x529efb4543fa87ff.rst +++ /dev/null @@ -1 +0,0 @@ -return a float4 which stores bit-cast version of x diff --git a/doc/source/stdlib/detail/function-math_bits-cast_to_vec4f-0x9154c36ff71bf100.rst b/doc/source/stdlib/detail/function-math_bits-cast_to_vec4f-0x9154c36ff71bf100.rst deleted file mode 100644 index b23a20060f..0000000000 --- a/doc/source/stdlib/detail/function-math_bits-cast_to_vec4f-0x9154c36ff71bf100.rst +++ /dev/null @@ -1 +0,0 @@ -return a float4 which stores bit-cast version of x diff --git a/doc/source/stdlib/detail/function-math_bits-double_bits_to_int64-0x9b14631a497c387b.rst b/doc/source/stdlib/detail/function-math_bits-double_bits_to_int64-0x9b14631a497c387b.rst deleted file mode 100644 index 1dcd00e56f..0000000000 --- a/doc/source/stdlib/detail/function-math_bits-double_bits_to_int64-0x9b14631a497c387b.rst +++ /dev/null @@ -1 +0,0 @@ -bit representation of x is interpreted as a int64 diff --git a/doc/source/stdlib/detail/function-math_bits-double_bits_to_uint64-0x4f1a896e346102c3.rst b/doc/source/stdlib/detail/function-math_bits-double_bits_to_uint64-0x4f1a896e346102c3.rst deleted file mode 100644 index 41bddbae0e..0000000000 --- a/doc/source/stdlib/detail/function-math_bits-double_bits_to_uint64-0x4f1a896e346102c3.rst +++ /dev/null @@ -1 +0,0 @@ -bit representation of x is interpreted as a uint64 diff --git a/doc/source/stdlib/detail/function-math_bits-float_bits_to_int-0x10b7acb821f31afe.rst b/doc/source/stdlib/detail/function-math_bits-float_bits_to_int-0x10b7acb821f31afe.rst deleted file mode 100644 index 60ddbda939..0000000000 --- a/doc/source/stdlib/detail/function-math_bits-float_bits_to_int-0x10b7acb821f31afe.rst +++ /dev/null @@ -1 +0,0 @@ -bit representation of x is interpreted as an int2 diff --git a/doc/source/stdlib/detail/function-math_bits-float_bits_to_int-0x10b7adb821f31cb1.rst b/doc/source/stdlib/detail/function-math_bits-float_bits_to_int-0x10b7adb821f31cb1.rst deleted file mode 100644 index 8b02900552..0000000000 --- a/doc/source/stdlib/detail/function-math_bits-float_bits_to_int-0x10b7adb821f31cb1.rst +++ /dev/null @@ -1 +0,0 @@ -bit representation of x is interpreted as a int3 diff --git a/doc/source/stdlib/detail/function-math_bits-float_bits_to_int-0x10b7aeb821f31e64.rst b/doc/source/stdlib/detail/function-math_bits-float_bits_to_int-0x10b7aeb821f31e64.rst deleted file mode 100644 index 35ee60bff5..0000000000 --- a/doc/source/stdlib/detail/function-math_bits-float_bits_to_int-0x10b7aeb821f31e64.rst +++ /dev/null @@ -1 +0,0 @@ -bit representation of x is interpreted as a int4 diff --git a/doc/source/stdlib/detail/function-math_bits-float_bits_to_int-0x7ece839c6097ce38.rst b/doc/source/stdlib/detail/function-math_bits-float_bits_to_int-0x7ece839c6097ce38.rst deleted file mode 100644 index b07bfaa48b..0000000000 --- a/doc/source/stdlib/detail/function-math_bits-float_bits_to_int-0x7ece839c6097ce38.rst +++ /dev/null @@ -1 +0,0 @@ -bit representation of x is interpreted as a int diff --git a/doc/source/stdlib/detail/function-math_bits-float_bits_to_uint-0x433d4831d45cbc1e.rst b/doc/source/stdlib/detail/function-math_bits-float_bits_to_uint-0x433d4831d45cbc1e.rst deleted file mode 100644 index 5f24b22ecc..0000000000 --- a/doc/source/stdlib/detail/function-math_bits-float_bits_to_uint-0x433d4831d45cbc1e.rst +++ /dev/null @@ -1 +0,0 @@ -bit representation of x is interpreted as a uint4 diff --git a/doc/source/stdlib/detail/function-math_bits-float_bits_to_uint-0x43434831d466ee1e.rst b/doc/source/stdlib/detail/function-math_bits-float_bits_to_uint-0x43434831d466ee1e.rst deleted file mode 100644 index 0d76d46f61..0000000000 --- a/doc/source/stdlib/detail/function-math_bits-float_bits_to_uint-0x43434831d466ee1e.rst +++ /dev/null @@ -1 +0,0 @@ -bit representation of x is interpreted as a uint2 diff --git a/doc/source/stdlib/detail/function-math_bits-float_bits_to_uint-0x43444831d468a11e.rst b/doc/source/stdlib/detail/function-math_bits-float_bits_to_uint-0x43444831d468a11e.rst deleted file mode 100644 index f4ae1fb332..0000000000 --- a/doc/source/stdlib/detail/function-math_bits-float_bits_to_uint-0x43444831d468a11e.rst +++ /dev/null @@ -1 +0,0 @@ -bit representation of x is interpreted as a uint3 diff --git a/doc/source/stdlib/detail/function-math_bits-float_bits_to_uint-0x43514831d47eb81e.rst b/doc/source/stdlib/detail/function-math_bits-float_bits_to_uint-0x43514831d47eb81e.rst deleted file mode 100644 index 01e1c74f45..0000000000 --- a/doc/source/stdlib/detail/function-math_bits-float_bits_to_uint-0x43514831d47eb81e.rst +++ /dev/null @@ -1 +0,0 @@ -bit representation of x is interpreted as a uint diff --git a/doc/source/stdlib/detail/function-math_bits-int64_bits_to_double-0x758dd2fdefedf24c.rst b/doc/source/stdlib/detail/function-math_bits-int64_bits_to_double-0x758dd2fdefedf24c.rst deleted file mode 100644 index 19845d7e29..0000000000 --- a/doc/source/stdlib/detail/function-math_bits-int64_bits_to_double-0x758dd2fdefedf24c.rst +++ /dev/null @@ -1 +0,0 @@ -bit representation of x is interpreted as a double diff --git a/doc/source/stdlib/detail/function-math_bits-int_bits_to_float-0xaafc58fcc1694ba6.rst b/doc/source/stdlib/detail/function-math_bits-int_bits_to_float-0xaafc58fcc1694ba6.rst deleted file mode 100644 index 1cb71791c0..0000000000 --- a/doc/source/stdlib/detail/function-math_bits-int_bits_to_float-0xaafc58fcc1694ba6.rst +++ /dev/null @@ -1 +0,0 @@ -bit representation of x is interpreted as a float diff --git a/doc/source/stdlib/detail/function-math_bits-int_bits_to_float-0xaafc59fcc1694d59.rst b/doc/source/stdlib/detail/function-math_bits-int_bits_to_float-0xaafc59fcc1694d59.rst deleted file mode 100644 index 1cb71791c0..0000000000 --- a/doc/source/stdlib/detail/function-math_bits-int_bits_to_float-0xaafc59fcc1694d59.rst +++ /dev/null @@ -1 +0,0 @@ -bit representation of x is interpreted as a float diff --git a/doc/source/stdlib/detail/function-math_bits-int_bits_to_float-0xaafc5bfcc16950bf.rst b/doc/source/stdlib/detail/function-math_bits-int_bits_to_float-0xaafc5bfcc16950bf.rst deleted file mode 100644 index 1cb71791c0..0000000000 --- a/doc/source/stdlib/detail/function-math_bits-int_bits_to_float-0xaafc5bfcc16950bf.rst +++ /dev/null @@ -1 +0,0 @@ -bit representation of x is interpreted as a float diff --git a/doc/source/stdlib/detail/function-math_bits-int_bits_to_float-0xdbd349526222f6f1.rst b/doc/source/stdlib/detail/function-math_bits-int_bits_to_float-0xdbd349526222f6f1.rst deleted file mode 100644 index 1cb71791c0..0000000000 --- a/doc/source/stdlib/detail/function-math_bits-int_bits_to_float-0xdbd349526222f6f1.rst +++ /dev/null @@ -1 +0,0 @@ -bit representation of x is interpreted as a float diff --git a/doc/source/stdlib/detail/function-math_bits-uint64_bits_to_double-0x4c7b2ce041952b73.rst b/doc/source/stdlib/detail/function-math_bits-uint64_bits_to_double-0x4c7b2ce041952b73.rst deleted file mode 100644 index 19845d7e29..0000000000 --- a/doc/source/stdlib/detail/function-math_bits-uint64_bits_to_double-0x4c7b2ce041952b73.rst +++ /dev/null @@ -1 +0,0 @@ -bit representation of x is interpreted as a double diff --git a/doc/source/stdlib/detail/function-math_bits-uint_bits_to_float-0x79deca1fddbc130a.rst b/doc/source/stdlib/detail/function-math_bits-uint_bits_to_float-0x79deca1fddbc130a.rst deleted file mode 100644 index 1cb71791c0..0000000000 --- a/doc/source/stdlib/detail/function-math_bits-uint_bits_to_float-0x79deca1fddbc130a.rst +++ /dev/null @@ -1 +0,0 @@ -bit representation of x is interpreted as a float diff --git a/doc/source/stdlib/detail/function-math_bits-uint_bits_to_float-0xd1a4ac25c694a828.rst b/doc/source/stdlib/detail/function-math_bits-uint_bits_to_float-0xd1a4ac25c694a828.rst deleted file mode 100644 index 4254c27fb9..0000000000 --- a/doc/source/stdlib/detail/function-math_bits-uint_bits_to_float-0xd1a4ac25c694a828.rst +++ /dev/null @@ -1 +0,0 @@ -bit representation of x is interpreted as a float2 diff --git a/doc/source/stdlib/detail/function-math_bits-uint_bits_to_float-0xd1a4ad25c694a9db.rst b/doc/source/stdlib/detail/function-math_bits-uint_bits_to_float-0xd1a4ad25c694a9db.rst deleted file mode 100644 index 5f35e36f77..0000000000 --- a/doc/source/stdlib/detail/function-math_bits-uint_bits_to_float-0xd1a4ad25c694a9db.rst +++ /dev/null @@ -1 +0,0 @@ -bit representation of x is interpreted as a float3 diff --git a/doc/source/stdlib/detail/function-math_bits-uint_bits_to_float-0xd1a4b225c694b25a.rst b/doc/source/stdlib/detail/function-math_bits-uint_bits_to_float-0xd1a4b225c694b25a.rst deleted file mode 100644 index c13b29761e..0000000000 --- a/doc/source/stdlib/detail/function-math_bits-uint_bits_to_float-0xd1a4b225c694b25a.rst +++ /dev/null @@ -1 +0,0 @@ -bit representation of x is interpreted as a float4 diff --git a/doc/source/stdlib/detail/function-math_boost-RGBA_TO_UCOLOR-0xfa3aa5aeee326d0.rst b/doc/source/stdlib/detail/function-math_boost-RGBA_TO_UCOLOR-0xfa3aa5aeee326d0.rst deleted file mode 100644 index 82eb8a3df5..0000000000 --- a/doc/source/stdlib/detail/function-math_boost-RGBA_TO_UCOLOR-0xfa3aa5aeee326d0.rst +++ /dev/null @@ -1 +0,0 @@ -conversion from RGBA to ucolor. x,y,z,w are in [0,1] range diff --git a/doc/source/stdlib/detail/function-math_boost-RGBA_TO_UCOLOR-0xfea34bf3d8bd7d71.rst b/doc/source/stdlib/detail/function-math_boost-RGBA_TO_UCOLOR-0xfea34bf3d8bd7d71.rst deleted file mode 100644 index 5c7dbe3399..0000000000 --- a/doc/source/stdlib/detail/function-math_boost-RGBA_TO_UCOLOR-0xfea34bf3d8bd7d71.rst +++ /dev/null @@ -1 +0,0 @@ -conversion from RGBA to ucolor. xyzw components are in [0,1] range diff --git a/doc/source/stdlib/detail/function-math_boost-UCOLOR_TO_RGB-0xd6b9e9c8917dacf5.rst b/doc/source/stdlib/detail/function-math_boost-UCOLOR_TO_RGB-0xd6b9e9c8917dacf5.rst deleted file mode 100644 index 9d43009f7e..0000000000 --- a/doc/source/stdlib/detail/function-math_boost-UCOLOR_TO_RGB-0xd6b9e9c8917dacf5.rst +++ /dev/null @@ -1 +0,0 @@ -conversion from ucolor to RGB. x components are in [0,255] range. result is float3(x,y,z) diff --git a/doc/source/stdlib/detail/function-math_boost-UCOLOR_TO_RGBA-0x15edff8d01ef87fb.rst b/doc/source/stdlib/detail/function-math_boost-UCOLOR_TO_RGBA-0x15edff8d01ef87fb.rst deleted file mode 100644 index 152d40b72a..0000000000 --- a/doc/source/stdlib/detail/function-math_boost-UCOLOR_TO_RGBA-0x15edff8d01ef87fb.rst +++ /dev/null @@ -1 +0,0 @@ -conversion from ucolor to RGBA. x components are in [0,255] range diff --git a/doc/source/stdlib/detail/function-math_boost-degrees-0xd470cb7d1ba8aa67.rst b/doc/source/stdlib/detail/function-math_boost-degrees-0xd470cb7d1ba8aa67.rst deleted file mode 100644 index bb97461f95..0000000000 --- a/doc/source/stdlib/detail/function-math_boost-degrees-0xd470cb7d1ba8aa67.rst +++ /dev/null @@ -1 +0,0 @@ -convert radians to degrees diff --git a/doc/source/stdlib/detail/function-math_boost-is_intersecting-0x1c857741a57acbb2.rst b/doc/source/stdlib/detail/function-math_boost-is_intersecting-0x1c857741a57acbb2.rst deleted file mode 100644 index 4b872edd54..0000000000 --- a/doc/source/stdlib/detail/function-math_boost-is_intersecting-0x1c857741a57acbb2.rst +++ /dev/null @@ -1 +0,0 @@ -returns true if inputs intersect diff --git a/doc/source/stdlib/detail/function-math_boost-is_intersecting-0x46a13742ca01b3d2.rst b/doc/source/stdlib/detail/function-math_boost-is_intersecting-0x46a13742ca01b3d2.rst deleted file mode 100644 index 4b872edd54..0000000000 --- a/doc/source/stdlib/detail/function-math_boost-is_intersecting-0x46a13742ca01b3d2.rst +++ /dev/null @@ -1 +0,0 @@ -returns true if inputs intersect diff --git a/doc/source/stdlib/detail/function-math_boost-is_intersecting-0x9e58f0ad7bc52d40.rst b/doc/source/stdlib/detail/function-math_boost-is_intersecting-0x9e58f0ad7bc52d40.rst deleted file mode 100644 index 2c4c01f773..0000000000 --- a/doc/source/stdlib/detail/function-math_boost-is_intersecting-0x9e58f0ad7bc52d40.rst +++ /dev/null @@ -1 +0,0 @@ -returns true if ray intersects aabb within [Tmin, Tmax] diff --git a/doc/source/stdlib/detail/function-math_boost-linear_to_SRGB-0x74ced213dc7b39af.rst b/doc/source/stdlib/detail/function-math_boost-linear_to_SRGB-0x74ced213dc7b39af.rst deleted file mode 100644 index 64847d2c2c..0000000000 --- a/doc/source/stdlib/detail/function-math_boost-linear_to_SRGB-0x74ced213dc7b39af.rst +++ /dev/null @@ -1 +0,0 @@ -convert value from linear space to sRGB curve space diff --git a/doc/source/stdlib/detail/function-math_boost-linear_to_SRGB-0x74ddd213dc94b6af.rst b/doc/source/stdlib/detail/function-math_boost-linear_to_SRGB-0x74ddd213dc94b6af.rst deleted file mode 100644 index 64847d2c2c..0000000000 --- a/doc/source/stdlib/detail/function-math_boost-linear_to_SRGB-0x74ddd213dc94b6af.rst +++ /dev/null @@ -1 +0,0 @@ -convert value from linear space to sRGB curve space diff --git a/doc/source/stdlib/detail/function-math_boost-linear_to_SRGB-0x74e2d213dc9d35af.rst b/doc/source/stdlib/detail/function-math_boost-linear_to_SRGB-0x74e2d213dc9d35af.rst deleted file mode 100644 index 64847d2c2c..0000000000 --- a/doc/source/stdlib/detail/function-math_boost-linear_to_SRGB-0x74e2d213dc9d35af.rst +++ /dev/null @@ -1 +0,0 @@ -convert value from linear space to sRGB curve space diff --git a/doc/source/stdlib/detail/function-math_boost-look_at_lh-0x90c616f3bf13c3dc.rst b/doc/source/stdlib/detail/function-math_boost-look_at_lh-0x90c616f3bf13c3dc.rst deleted file mode 100644 index a304fd9932..0000000000 --- a/doc/source/stdlib/detail/function-math_boost-look_at_lh-0x90c616f3bf13c3dc.rst +++ /dev/null @@ -1 +0,0 @@ -left-handed (z forward) look at matrix with origin at `Eye` and target at `At`, and up vector `Up`. diff --git a/doc/source/stdlib/detail/function-math_boost-look_at_rh-0xc6b7e4656b7458ae.rst b/doc/source/stdlib/detail/function-math_boost-look_at_rh-0xc6b7e4656b7458ae.rst deleted file mode 100644 index baf1793409..0000000000 --- a/doc/source/stdlib/detail/function-math_boost-look_at_rh-0xc6b7e4656b7458ae.rst +++ /dev/null @@ -1 +0,0 @@ -right-handed (z towards viewer) look at matrix with origin at `Eye` and target at `At`, and up vector `Up`. diff --git a/doc/source/stdlib/detail/function-math_boost-ortho_rh-0x11d15b4666f6ded3.rst b/doc/source/stdlib/detail/function-math_boost-ortho_rh-0x11d15b4666f6ded3.rst deleted file mode 100644 index feabf13a45..0000000000 --- a/doc/source/stdlib/detail/function-math_boost-ortho_rh-0x11d15b4666f6ded3.rst +++ /dev/null @@ -1 +0,0 @@ -right handed (z towards viewer) orthographic (parallel) projection matrix diff --git a/doc/source/stdlib/detail/function-math_boost-perspective_lh-0x8fa74a2e4ad97898.rst b/doc/source/stdlib/detail/function-math_boost-perspective_lh-0x8fa74a2e4ad97898.rst deleted file mode 100644 index 86f418cf7d..0000000000 --- a/doc/source/stdlib/detail/function-math_boost-perspective_lh-0x8fa74a2e4ad97898.rst +++ /dev/null @@ -1 +0,0 @@ -left-handed (z forward) perspective matrix diff --git a/doc/source/stdlib/detail/function-math_boost-perspective_rh-0x462ffbc8c8d10da2.rst b/doc/source/stdlib/detail/function-math_boost-perspective_rh-0x462ffbc8c8d10da2.rst deleted file mode 100644 index bf8d008360..0000000000 --- a/doc/source/stdlib/detail/function-math_boost-perspective_rh-0x462ffbc8c8d10da2.rst +++ /dev/null @@ -1 +0,0 @@ -right-handed (z toward viewer) perspective matrix diff --git a/doc/source/stdlib/detail/function-math_boost-perspective_rh_opengl-0x231b3a89de93d787.rst b/doc/source/stdlib/detail/function-math_boost-perspective_rh_opengl-0x231b3a89de93d787.rst deleted file mode 100644 index 3b857472e4..0000000000 --- a/doc/source/stdlib/detail/function-math_boost-perspective_rh_opengl-0x231b3a89de93d787.rst +++ /dev/null @@ -1 +0,0 @@ -right-handed (z toward viewer) opengl (z in [-1..1]) perspective matrix diff --git a/doc/source/stdlib/detail/function-math_boost-planar_shadow-0xed8f8ef8ad9e2c11.rst b/doc/source/stdlib/detail/function-math_boost-planar_shadow-0xed8f8ef8ad9e2c11.rst deleted file mode 100644 index 4a86fa6d65..0000000000 --- a/doc/source/stdlib/detail/function-math_boost-planar_shadow-0xed8f8ef8ad9e2c11.rst +++ /dev/null @@ -1 +0,0 @@ -planar shadow projection matrix, i.e. all light shadows to be projected on a plane diff --git a/doc/source/stdlib/detail/function-math_boost-plane_dot-0xd1624720480c08b.rst b/doc/source/stdlib/detail/function-math_boost-plane_dot-0xd1624720480c08b.rst deleted file mode 100644 index 3368ceeb3d..0000000000 --- a/doc/source/stdlib/detail/function-math_boost-plane_dot-0xd1624720480c08b.rst +++ /dev/null @@ -1 +0,0 @@ -dot product of `Plane` and 'Vec' diff --git a/doc/source/stdlib/detail/function-math_boost-plane_from_point_normal-0x5982fbc9ec809ba5.rst b/doc/source/stdlib/detail/function-math_boost-plane_from_point_normal-0x5982fbc9ec809ba5.rst deleted file mode 100644 index fa53163f64..0000000000 --- a/doc/source/stdlib/detail/function-math_boost-plane_from_point_normal-0x5982fbc9ec809ba5.rst +++ /dev/null @@ -1 +0,0 @@ -construct plane from point `p` and normal `n` diff --git a/doc/source/stdlib/detail/function-math_boost-plane_normalize-0x6473051028635947.rst b/doc/source/stdlib/detail/function-math_boost-plane_normalize-0x6473051028635947.rst deleted file mode 100644 index f06bd84694..0000000000 --- a/doc/source/stdlib/detail/function-math_boost-plane_normalize-0x6473051028635947.rst +++ /dev/null @@ -1 +0,0 @@ -normalize ``Plane``, length xyz will be 1.0 (or 0.0 for no plane) diff --git a/doc/source/stdlib/detail/function-math_boost-radians-0x4f4aa468dabe2188.rst b/doc/source/stdlib/detail/function-math_boost-radians-0x4f4aa468dabe2188.rst deleted file mode 100644 index e3533490b3..0000000000 --- a/doc/source/stdlib/detail/function-math_boost-radians-0x4f4aa468dabe2188.rst +++ /dev/null @@ -1 +0,0 @@ -convert degrees to radians diff --git a/doc/source/stdlib/detail/function-profiler-set_enable_profiler-0x3233150fe82c0291.rst b/doc/source/stdlib/detail/function-profiler-set_enable_profiler-0x3233150fe82c0291.rst deleted file mode 100644 index 8b798b8ce4..0000000000 --- a/doc/source/stdlib/detail/function-profiler-set_enable_profiler-0x3233150fe82c0291.rst +++ /dev/null @@ -1 +0,0 @@ -Enables or disables the profiler for the given context ID. diff --git a/doc/source/stdlib/detail/function-profiler-set_enable_profiler_log-0x6d5bb960bae6ae3a.rst b/doc/source/stdlib/detail/function-profiler-set_enable_profiler_log-0x6d5bb960bae6ae3a.rst deleted file mode 100644 index 5acc68e7e5..0000000000 --- a/doc/source/stdlib/detail/function-profiler-set_enable_profiler_log-0x6d5bb960bae6ae3a.rst +++ /dev/null @@ -1 +0,0 @@ -Enables or disables the profiler log for the given context ID. diff --git a/doc/source/stdlib/detail/function-profiler_boost-disable_profiler-0xc772cd93d23604ea.rst b/doc/source/stdlib/detail/function-profiler_boost-disable_profiler-0xc772cd93d23604ea.rst deleted file mode 100644 index ad3bd23412..0000000000 --- a/doc/source/stdlib/detail/function-profiler_boost-disable_profiler-0xc772cd93d23604ea.rst +++ /dev/null @@ -1 +0,0 @@ -Disables the profiler for the given context. diff --git a/doc/source/stdlib/detail/function-profiler_boost-disable_profiler_log-0x9785fa26d7b1cd50.rst b/doc/source/stdlib/detail/function-profiler_boost-disable_profiler_log-0x9785fa26d7b1cd50.rst deleted file mode 100644 index 5e477075e5..0000000000 --- a/doc/source/stdlib/detail/function-profiler_boost-disable_profiler_log-0x9785fa26d7b1cd50.rst +++ /dev/null @@ -1 +0,0 @@ -Disables the profiler log for the given context. diff --git a/doc/source/stdlib/detail/function-profiler_boost-enable_profiler-0xadfe8e9817500262.rst b/doc/source/stdlib/detail/function-profiler_boost-enable_profiler-0xadfe8e9817500262.rst deleted file mode 100644 index 84290c487b..0000000000 --- a/doc/source/stdlib/detail/function-profiler_boost-enable_profiler-0xadfe8e9817500262.rst +++ /dev/null @@ -1 +0,0 @@ -Enables the profiler for the given context. diff --git a/doc/source/stdlib/detail/function-profiler_boost-enable_profiler_log-0x3f06695326590e5.rst b/doc/source/stdlib/detail/function-profiler_boost-enable_profiler_log-0x3f06695326590e5.rst deleted file mode 100644 index 094562b819..0000000000 --- a/doc/source/stdlib/detail/function-profiler_boost-enable_profiler_log-0x3f06695326590e5.rst +++ /dev/null @@ -1 +0,0 @@ -Enables the profiler log for the given context. diff --git a/doc/source/stdlib/detail/function-quote-clone-0x2e978299757f5070.rst b/doc/source/stdlib/detail/function-quote-clone-0x2e978299757f5070.rst deleted file mode 100644 index fa46cd26dd..0000000000 --- a/doc/source/stdlib/detail/function-quote-clone-0x2e978299757f5070.rst +++ /dev/null @@ -1 +0,0 @@ -Clones an array of AnnotationDeclaration smart pointers into an AnnotationList. diff --git a/doc/source/stdlib/detail/function-quote-clone-0x4f61cf6f2a0932e7.rst b/doc/source/stdlib/detail/function-quote-clone-0x4f61cf6f2a0932e7.rst deleted file mode 100644 index 750e89d02a..0000000000 --- a/doc/source/stdlib/detail/function-quote-clone-0x4f61cf6f2a0932e7.rst +++ /dev/null @@ -1 +0,0 @@ -Clones an array of LineInfoInitData into a dasvector of LineInfo. diff --git a/doc/source/stdlib/detail/function-quote-clone-0x71dd92c9e0edd381.rst b/doc/source/stdlib/detail/function-quote-clone-0x71dd92c9e0edd381.rst deleted file mode 100644 index f2dd80c7e1..0000000000 --- a/doc/source/stdlib/detail/function-quote-clone-0x71dd92c9e0edd381.rst +++ /dev/null @@ -1 +0,0 @@ -Clones an array of AnnotationArgumentInitData into an AnnotationArgumentList. diff --git a/doc/source/stdlib/detail/function-quote-clone-0x98a6e7e6ce04868f.rst b/doc/source/stdlib/detail/function-quote-clone-0x98a6e7e6ce04868f.rst deleted file mode 100644 index f0d6ee9858..0000000000 --- a/doc/source/stdlib/detail/function-quote-clone-0x98a6e7e6ce04868f.rst +++ /dev/null @@ -1 +0,0 @@ -Clones an array of CaptureEntryInitData into a dasvector of CaptureEntry. diff --git a/doc/source/stdlib/detail/function-quote-clone-0xbf3e68887f05b633.rst b/doc/source/stdlib/detail/function-quote-clone-0xbf3e68887f05b633.rst deleted file mode 100644 index 508bf3624f..0000000000 --- a/doc/source/stdlib/detail/function-quote-clone-0xbf3e68887f05b633.rst +++ /dev/null @@ -1 +0,0 @@ -Clones an array of EnumEntryInitData into a dasvector of EnumEntry. diff --git a/doc/source/stdlib/detail/function-quote-clone_file_info-0x650e31c6b8e5ea4f.rst b/doc/source/stdlib/detail/function-quote-clone_file_info-0x650e31c6b8e5ea4f.rst deleted file mode 100644 index b3954e2c31..0000000000 --- a/doc/source/stdlib/detail/function-quote-clone_file_info-0x650e31c6b8e5ea4f.rst +++ /dev/null @@ -1 +0,0 @@ -Creates a FileInfo from a FileInfoInitData struct. diff --git a/doc/source/stdlib/detail/function-quote-clone_line_info-0xe873c51cd19a8f92.rst b/doc/source/stdlib/detail/function-quote-clone_line_info-0xe873c51cd19a8f92.rst deleted file mode 100644 index cedea591dd..0000000000 --- a/doc/source/stdlib/detail/function-quote-clone_line_info-0xe873c51cd19a8f92.rst +++ /dev/null @@ -1 +0,0 @@ -Creates a LineInfo from a LineInfoInitData struct. diff --git a/doc/source/stdlib/detail/function-quote-cvt_to_mks-0x16b6d9940665549.rst b/doc/source/stdlib/detail/function-quote-cvt_to_mks-0x16b6d9940665549.rst deleted file mode 100644 index e9b7c0c31c..0000000000 --- a/doc/source/stdlib/detail/function-quote-cvt_to_mks-0x16b6d9940665549.rst +++ /dev/null @@ -1 +0,0 @@ -Converts an array of arguments into a MakeStruct smart pointer. diff --git a/doc/source/stdlib/detail/function-random-each_random_uint-0x651923e6e6200478.rst b/doc/source/stdlib/detail/function-random-each_random_uint-0x651923e6e6200478.rst deleted file mode 100644 index a94085b62d..0000000000 --- a/doc/source/stdlib/detail/function-random-each_random_uint-0x651923e6e6200478.rst +++ /dev/null @@ -1 +0,0 @@ -infinite generator of random uints initialized with `rnd_seed` diff --git a/doc/source/stdlib/detail/function-random-random_big_int-0xede4bc126b28aa0c.rst b/doc/source/stdlib/detail/function-random-random_big_int-0xede4bc126b28aa0c.rst deleted file mode 100644 index 33e6508f5d..0000000000 --- a/doc/source/stdlib/detail/function-random-random_big_int-0xede4bc126b28aa0c.rst +++ /dev/null @@ -1 +0,0 @@ -random integer 0..32768*32768-1 (LCG_RAND_MAX_BIG) diff --git a/doc/source/stdlib/detail/function-random-random_float-0x5616c7a5fdfd0e29.rst b/doc/source/stdlib/detail/function-random-random_float-0x5616c7a5fdfd0e29.rst deleted file mode 100644 index 215e7cf10b..0000000000 --- a/doc/source/stdlib/detail/function-random-random_float-0x5616c7a5fdfd0e29.rst +++ /dev/null @@ -1 +0,0 @@ -random float 0..1 diff --git a/doc/source/stdlib/detail/function-random-random_float4-0x61df53a0e15fd9a7.rst b/doc/source/stdlib/detail/function-random-random_float4-0x61df53a0e15fd9a7.rst deleted file mode 100644 index dffb4a2d58..0000000000 --- a/doc/source/stdlib/detail/function-random-random_float4-0x61df53a0e15fd9a7.rst +++ /dev/null @@ -1 +0,0 @@ -random float4, each component is 0..1 diff --git a/doc/source/stdlib/detail/function-random-random_in_unit_disk-0x9a60a873940855f5.rst b/doc/source/stdlib/detail/function-random-random_in_unit_disk-0x9a60a873940855f5.rst deleted file mode 100644 index f799ff939e..0000000000 --- a/doc/source/stdlib/detail/function-random-random_in_unit_disk-0x9a60a873940855f5.rst +++ /dev/null @@ -1 +0,0 @@ -Returns a random float3 point uniformly distributed inside the unit disk (length <= 1, z=0). diff --git a/doc/source/stdlib/detail/function-random-random_in_unit_sphere-0xa920e7bd9265264f.rst b/doc/source/stdlib/detail/function-random-random_in_unit_sphere-0xa920e7bd9265264f.rst deleted file mode 100644 index c05910deed..0000000000 --- a/doc/source/stdlib/detail/function-random-random_in_unit_sphere-0xa920e7bd9265264f.rst +++ /dev/null @@ -1 +0,0 @@ -Returns a random float3 point uniformly distributed inside the unit sphere (length <= 1). diff --git a/doc/source/stdlib/detail/function-random-random_int-0x785343e801123a44.rst b/doc/source/stdlib/detail/function-random-random_int-0x785343e801123a44.rst deleted file mode 100644 index 547766339e..0000000000 --- a/doc/source/stdlib/detail/function-random-random_int-0x785343e801123a44.rst +++ /dev/null @@ -1 +0,0 @@ -random integer 0..32767 (LCG_RAND_MAX) diff --git a/doc/source/stdlib/detail/function-random-random_int4-0x94d6ce556cec163e.rst b/doc/source/stdlib/detail/function-random-random_int4-0x94d6ce556cec163e.rst deleted file mode 100644 index e34bcd70b8..0000000000 --- a/doc/source/stdlib/detail/function-random-random_int4-0x94d6ce556cec163e.rst +++ /dev/null @@ -1 +0,0 @@ -random int4, each component is 0..32767 (LCG_RAND_MAX) diff --git a/doc/source/stdlib/detail/function-random-random_seed-0xc3b6a1874b7f5ea0.rst b/doc/source/stdlib/detail/function-random-random_seed-0xc3b6a1874b7f5ea0.rst deleted file mode 100644 index 7e86482664..0000000000 --- a/doc/source/stdlib/detail/function-random-random_seed-0xc3b6a1874b7f5ea0.rst +++ /dev/null @@ -1 +0,0 @@ -constructs seed vector out of single integer seed diff --git a/doc/source/stdlib/detail/function-random-random_seed2D-0xb779737fa7ec0055.rst b/doc/source/stdlib/detail/function-random-random_seed2D-0xb779737fa7ec0055.rst deleted file mode 100644 index 95da7c70e4..0000000000 --- a/doc/source/stdlib/detail/function-random-random_seed2D-0xb779737fa7ec0055.rst +++ /dev/null @@ -1 +0,0 @@ -constructs seed vector out of 2d screen coordinates and frame counter `cf` diff --git a/doc/source/stdlib/detail/function-random-random_uint-0x97aea6cb5c50a451.rst b/doc/source/stdlib/detail/function-random-random_uint-0x97aea6cb5c50a451.rst deleted file mode 100644 index 466d5d2561..0000000000 --- a/doc/source/stdlib/detail/function-random-random_uint-0x97aea6cb5c50a451.rst +++ /dev/null @@ -1 +0,0 @@ -random unsigned integer using 3-component LCG, covering full uint range diff --git a/doc/source/stdlib/detail/function-random-random_unit_vector-0xdd165e5eda445ed4.rst b/doc/source/stdlib/detail/function-random-random_unit_vector-0xdd165e5eda445ed4.rst deleted file mode 100644 index 28f2346167..0000000000 --- a/doc/source/stdlib/detail/function-random-random_unit_vector-0xdd165e5eda445ed4.rst +++ /dev/null @@ -1 +0,0 @@ -random float3 unit vector (length=1.) diff --git a/doc/source/stdlib/detail/function-refactor-extract_expression-0x5b119e3f7dc9a25f.rst b/doc/source/stdlib/detail/function-refactor-extract_expression-0x5b119e3f7dc9a25f.rst deleted file mode 100644 index 65e7d72214..0000000000 --- a/doc/source/stdlib/detail/function-refactor-extract_expression-0x5b119e3f7dc9a25f.rst +++ /dev/null @@ -1 +0,0 @@ -Marks an expression for expression extraction refactoring. diff --git a/doc/source/stdlib/detail/function-refactor-extract_method-0x19a04db32e32647f.rst b/doc/source/stdlib/detail/function-refactor-extract_method-0x19a04db32e32647f.rst deleted file mode 100644 index 392cda1cb2..0000000000 --- a/doc/source/stdlib/detail/function-refactor-extract_method-0x19a04db32e32647f.rst +++ /dev/null @@ -1 +0,0 @@ -Marks a block of code for method extraction refactoring. diff --git a/doc/source/stdlib/detail/function-refactor-extract_variable_nonref-0x7a2d840d254f4fba.rst b/doc/source/stdlib/detail/function-refactor-extract_variable_nonref-0x7a2d840d254f4fba.rst deleted file mode 100644 index 23b5535c81..0000000000 --- a/doc/source/stdlib/detail/function-refactor-extract_variable_nonref-0x7a2d840d254f4fba.rst +++ /dev/null @@ -1 +0,0 @@ -Marks an expression for variable extraction by value. diff --git a/doc/source/stdlib/detail/function-refactor-extract_variable_ref-0x945f97301b2d6178.rst b/doc/source/stdlib/detail/function-refactor-extract_variable_ref-0x945f97301b2d6178.rst deleted file mode 100644 index c14ae9eac6..0000000000 --- a/doc/source/stdlib/detail/function-refactor-extract_variable_ref-0x945f97301b2d6178.rst +++ /dev/null @@ -1 +0,0 @@ -Marks an expression for variable extraction by reference. diff --git a/doc/source/stdlib/detail/function-safe_addr-safe_addr-0xd11f725151aeffc2.rst b/doc/source/stdlib/detail/function-safe_addr-safe_addr-0xd11f725151aeffc2.rst deleted file mode 100644 index 2347af853a..0000000000 --- a/doc/source/stdlib/detail/function-safe_addr-safe_addr-0xd11f725151aeffc2.rst +++ /dev/null @@ -1 +0,0 @@ -returns temporary pointer to the given expression diff --git a/doc/source/stdlib/detail/function-safe_addr-safe_addr-0xdf51013fcd958053.rst b/doc/source/stdlib/detail/function-safe_addr-safe_addr-0xdf51013fcd958053.rst deleted file mode 100644 index 2347af853a..0000000000 --- a/doc/source/stdlib/detail/function-safe_addr-safe_addr-0xdf51013fcd958053.rst +++ /dev/null @@ -1 +0,0 @@ -returns temporary pointer to the given expression diff --git a/doc/source/stdlib/detail/function-safe_addr-shared_addr-0x5abaecaf354205ec.rst b/doc/source/stdlib/detail/function-safe_addr-shared_addr-0x5abaecaf354205ec.rst deleted file mode 100644 index 3934701589..0000000000 --- a/doc/source/stdlib/detail/function-safe_addr-shared_addr-0x5abaecaf354205ec.rst +++ /dev/null @@ -1 +0,0 @@ -returns address of the given shared variable. it's safe because shared variables never go out of scope diff --git a/doc/source/stdlib/detail/function-safe_addr-shared_addr-0xc18828d926cd332f.rst b/doc/source/stdlib/detail/function-safe_addr-shared_addr-0xc18828d926cd332f.rst deleted file mode 100644 index 3934701589..0000000000 --- a/doc/source/stdlib/detail/function-safe_addr-shared_addr-0xc18828d926cd332f.rst +++ /dev/null @@ -1 +0,0 @@ -returns address of the given shared variable. it's safe because shared variables never go out of scope diff --git a/doc/source/stdlib/detail/function-safe_addr-temp_ptr-0x13bd37b1348b8af5.rst b/doc/source/stdlib/detail/function-safe_addr-temp_ptr-0x13bd37b1348b8af5.rst deleted file mode 100644 index 724550171f..0000000000 --- a/doc/source/stdlib/detail/function-safe_addr-temp_ptr-0x13bd37b1348b8af5.rst +++ /dev/null @@ -1 +0,0 @@ -returns temporary pointer from a given pointer diff --git a/doc/source/stdlib/detail/function-safe_addr-temp_ptr-0x6c5dcc32757cf4c1.rst b/doc/source/stdlib/detail/function-safe_addr-temp_ptr-0x6c5dcc32757cf4c1.rst deleted file mode 100644 index 724550171f..0000000000 --- a/doc/source/stdlib/detail/function-safe_addr-temp_ptr-0x6c5dcc32757cf4c1.rst +++ /dev/null @@ -1 +0,0 @@ -returns temporary pointer from a given pointer diff --git a/doc/source/stdlib/detail/function-safe_addr-temp_value-0xa542c6909f4677d2.rst b/doc/source/stdlib/detail/function-safe_addr-temp_value-0xa542c6909f4677d2.rst deleted file mode 100644 index 99eae6db4b..0000000000 --- a/doc/source/stdlib/detail/function-safe_addr-temp_value-0xa542c6909f4677d2.rst +++ /dev/null @@ -1 +0,0 @@ -returns temporary reference to the given expression diff --git a/doc/source/stdlib/detail/function-safe_addr-temp_value-0xaac19e91162cc023.rst b/doc/source/stdlib/detail/function-safe_addr-temp_value-0xaac19e91162cc023.rst deleted file mode 100644 index 99eae6db4b..0000000000 --- a/doc/source/stdlib/detail/function-safe_addr-temp_value-0xaac19e91162cc023.rst +++ /dev/null @@ -1 +0,0 @@ -returns temporary reference to the given expression diff --git a/doc/source/stdlib/detail/function-soa-_dot_-0xa1eaafb9544386c7.rst b/doc/source/stdlib/detail/function-soa-_dot_-0xa1eaafb9544386c7.rst deleted file mode 100644 index c1dc04964e..0000000000 --- a/doc/source/stdlib/detail/function-soa-_dot_-0xa1eaafb9544386c7.rst +++ /dev/null @@ -1 +0,0 @@ -Field access operator for SOA_INDEX; rewritten by SoaCallMacro to convert soa[index].field into soa.field[index]. diff --git a/doc/source/stdlib/detail/function-static_let-static_let-0x44b10a1d0fba7366.rst b/doc/source/stdlib/detail/function-static_let-static_let-0x44b10a1d0fba7366.rst deleted file mode 100644 index 1933df7542..0000000000 --- a/doc/source/stdlib/detail/function-static_let-static_let-0x44b10a1d0fba7366.rst +++ /dev/null @@ -1,2 +0,0 @@ -Given a scope with the variable declarations, this function will make those variables global. -Variable will be renamed under the hood, and all local access to it will be renamed as well. diff --git a/doc/source/stdlib/detail/function-static_let-static_let-0x4b8ac9fb644ff4e5.rst b/doc/source/stdlib/detail/function-static_let-static_let-0x4b8ac9fb644ff4e5.rst deleted file mode 100644 index 1933df7542..0000000000 --- a/doc/source/stdlib/detail/function-static_let-static_let-0x4b8ac9fb644ff4e5.rst +++ /dev/null @@ -1,2 +0,0 @@ -Given a scope with the variable declarations, this function will make those variables global. -Variable will be renamed under the hood, and all local access to it will be renamed as well. diff --git a/doc/source/stdlib/detail/function-static_let-static_let_finalize-0x2b3710f37d175a38.rst b/doc/source/stdlib/detail/function-static_let-static_let_finalize-0x2b3710f37d175a38.rst deleted file mode 100644 index c3cdd0e172..0000000000 --- a/doc/source/stdlib/detail/function-static_let-static_let_finalize-0x2b3710f37d175a38.rst +++ /dev/null @@ -1 +0,0 @@ -This is very similar to regular static_let, but additionally the variable will be deleted on the context shutdown. diff --git a/doc/source/stdlib/detail/function-stringify-LongStringReader-accept-0x9aa01b6e3742a3b7.rst b/doc/source/stdlib/detail/function-stringify-LongStringReader-accept-0x9aa01b6e3742a3b7.rst deleted file mode 100644 index ff0eb91416..0000000000 --- a/doc/source/stdlib/detail/function-stringify-LongStringReader-accept-0x9aa01b6e3742a3b7.rst +++ /dev/null @@ -1 +0,0 @@ -Accepts characters into the reader sequence until the closing %% delimiter is found. diff --git a/doc/source/stdlib/detail/function-stringify-LongStringReader-visit-0xb28aae7be0f4edca.rst b/doc/source/stdlib/detail/function-stringify-LongStringReader-visit-0xb28aae7be0f4edca.rst deleted file mode 100644 index 8ffedf440d..0000000000 --- a/doc/source/stdlib/detail/function-stringify-LongStringReader-visit-0xb28aae7be0f4edca.rst +++ /dev/null @@ -1 +0,0 @@ -Converts the accumulated reader sequence into a constant string expression. diff --git a/doc/source/stdlib/detail/function-temp_strings-build_temp_string-0x3621c96a08823420.rst b/doc/source/stdlib/detail/function-temp_strings-build_temp_string-0x3621c96a08823420.rst deleted file mode 100644 index 986271e52e..0000000000 --- a/doc/source/stdlib/detail/function-temp_strings-build_temp_string-0x3621c96a08823420.rst +++ /dev/null @@ -1,2 +0,0 @@ -Same as build_string, but delete the string after the callback is called. -Intern strings are not deleted. diff --git a/doc/source/stdlib/detail/function-temp_strings-temp_string-0x271f73c9d4e66c86.rst b/doc/source/stdlib/detail/function-temp_strings-temp_string-0x271f73c9d4e66c86.rst deleted file mode 100644 index c663d7b02d..0000000000 --- a/doc/source/stdlib/detail/function-temp_strings-temp_string-0x271f73c9d4e66c86.rst +++ /dev/null @@ -1,2 +0,0 @@ -Construct string from array of bytes and pass it to the callback. -Delete the string after the callback is called. Intern strings are not deleted. diff --git a/doc/source/stdlib/detail/function-temp_strings-temp_string-0x6045d4843a3e24.rst b/doc/source/stdlib/detail/function-temp_strings-temp_string-0x6045d4843a3e24.rst deleted file mode 100644 index f23502e82e..0000000000 --- a/doc/source/stdlib/detail/function-temp_strings-temp_string-0x6045d4843a3e24.rst +++ /dev/null @@ -1,2 +0,0 @@ -Pass string to the callback and delete it after the callback is called. -Accept only strings with substitutions (string builder). Intern strings are not deleted. diff --git a/doc/source/stdlib/detail/function-templates_boost-AstQCallMacro-canVisitArgument-0x4b0cf928d1a59f61.rst b/doc/source/stdlib/detail/function-templates_boost-AstQCallMacro-canVisitArgument-0x4b0cf928d1a59f61.rst deleted file mode 100644 index c6bcd41bec..0000000000 --- a/doc/source/stdlib/detail/function-templates_boost-AstQCallMacro-canVisitArgument-0x4b0cf928d1a59f61.rst +++ /dev/null @@ -1 +0,0 @@ -Only first argument is visited diff --git a/doc/source/stdlib/detail/function-templates_boost-AstQCallMacro-visit-0xa7711840537a3824.rst b/doc/source/stdlib/detail/function-templates_boost-AstQCallMacro-visit-0xa7711840537a3824.rst deleted file mode 100644 index 53380d81ce..0000000000 --- a/doc/source/stdlib/detail/function-templates_boost-AstQCallMacro-visit-0xa7711840537a3824.rst +++ /dev/null @@ -1 +0,0 @@ -Visit the macro call and generate the reified expression. diff --git a/doc/source/stdlib/detail/function-templates_boost-AstQNamedClassMacro-canVisitArgument-0x4b0cf928d1a59f61.rst b/doc/source/stdlib/detail/function-templates_boost-AstQNamedClassMacro-canVisitArgument-0x4b0cf928d1a59f61.rst deleted file mode 100644 index 1fb984cce4..0000000000 --- a/doc/source/stdlib/detail/function-templates_boost-AstQNamedClassMacro-canVisitArgument-0x4b0cf928d1a59f61.rst +++ /dev/null @@ -1 +0,0 @@ -Only visits the first two arguments (name and class). diff --git a/doc/source/stdlib/detail/function-templates_boost-AstQNamedClassMacro-visit-0xa7711840537a3824.rst b/doc/source/stdlib/detail/function-templates_boost-AstQNamedClassMacro-visit-0xa7711840537a3824.rst deleted file mode 100644 index 2fa5ba1d3f..0000000000 --- a/doc/source/stdlib/detail/function-templates_boost-AstQNamedClassMacro-visit-0xa7711840537a3824.rst +++ /dev/null @@ -1 +0,0 @@ -Visits the macro call and generates the reified named class expression. diff --git a/doc/source/stdlib/detail/function-templates_boost-AstQNamedMacro-canVisitArgument-0x4b0cf928d1a59f61.rst b/doc/source/stdlib/detail/function-templates_boost-AstQNamedMacro-canVisitArgument-0x4b0cf928d1a59f61.rst deleted file mode 100644 index cac9711642..0000000000 --- a/doc/source/stdlib/detail/function-templates_boost-AstQNamedMacro-canVisitArgument-0x4b0cf928d1a59f61.rst +++ /dev/null @@ -1 +0,0 @@ -Only visits the first argument (the name). diff --git a/doc/source/stdlib/detail/function-templates_boost-AstQNamedMacro-visit-0xa7711840537a3824.rst b/doc/source/stdlib/detail/function-templates_boost-AstQNamedMacro-visit-0xa7711840537a3824.rst deleted file mode 100644 index 4a200bf25f..0000000000 --- a/doc/source/stdlib/detail/function-templates_boost-AstQNamedMacro-visit-0xa7711840537a3824.rst +++ /dev/null @@ -1 +0,0 @@ -Visits the macro call and generates the reified named expression. diff --git a/doc/source/stdlib/detail/function-templates_boost-AstQNamedTemplateClassMacro-visit-0xa7711840537a3824.rst b/doc/source/stdlib/detail/function-templates_boost-AstQNamedTemplateClassMacro-visit-0xa7711840537a3824.rst deleted file mode 100644 index 53380d81ce..0000000000 --- a/doc/source/stdlib/detail/function-templates_boost-AstQNamedTemplateClassMacro-visit-0xa7711840537a3824.rst +++ /dev/null @@ -1 +0,0 @@ -Visit the macro call and generate the reified expression. diff --git a/doc/source/stdlib/detail/function-templates_boost-AstQNamedTemplateFunctionMacro-visit-0xa7711840537a3824.rst b/doc/source/stdlib/detail/function-templates_boost-AstQNamedTemplateFunctionMacro-visit-0xa7711840537a3824.rst deleted file mode 100644 index 53380d81ce..0000000000 --- a/doc/source/stdlib/detail/function-templates_boost-AstQNamedTemplateFunctionMacro-visit-0xa7711840537a3824.rst +++ /dev/null @@ -1 +0,0 @@ -Visit the macro call and generate the reified expression. diff --git a/doc/source/stdlib/detail/function-templates_boost-QRulesVisitor-QRulesVisitor-0x3d590973419a6d7a.rst b/doc/source/stdlib/detail/function-templates_boost-QRulesVisitor-QRulesVisitor-0x3d590973419a6d7a.rst deleted file mode 100644 index c5c40c6f50..0000000000 --- a/doc/source/stdlib/detail/function-templates_boost-QRulesVisitor-QRulesVisitor-0x3d590973419a6d7a.rst +++ /dev/null @@ -1 +0,0 @@ -Creates visitor with given expression block for replacement rules. diff --git a/doc/source/stdlib/detail/function-templates_boost-QRulesVisitor-preVisitExprBlockArgument-0x3ea27bf220a32a15.rst b/doc/source/stdlib/detail/function-templates_boost-QRulesVisitor-preVisitExprBlockArgument-0x3ea27bf220a32a15.rst deleted file mode 100644 index 1b7cf2a3ba..0000000000 --- a/doc/source/stdlib/detail/function-templates_boost-QRulesVisitor-preVisitExprBlockArgument-0x3ea27bf220a32a15.rst +++ /dev/null @@ -1 +0,0 @@ -Visits block argument and processes variable tags. diff --git a/doc/source/stdlib/detail/function-templates_boost-QRulesVisitor-preVisitExprFor-0x101a38c3d07aa36b.rst b/doc/source/stdlib/detail/function-templates_boost-QRulesVisitor-preVisitExprFor-0x101a38c3d07aa36b.rst deleted file mode 100644 index d2d67ba6d3..0000000000 --- a/doc/source/stdlib/detail/function-templates_boost-QRulesVisitor-preVisitExprFor-0x101a38c3d07aa36b.rst +++ /dev/null @@ -1 +0,0 @@ -Visits for-loop expression and processes iterator tags. diff --git a/doc/source/stdlib/detail/function-templates_boost-QRulesVisitor-preVisitExprMakeStructField-0x761a056aed77aa46.rst b/doc/source/stdlib/detail/function-templates_boost-QRulesVisitor-preVisitExprMakeStructField-0x761a056aed77aa46.rst deleted file mode 100644 index 24f3d84e77..0000000000 --- a/doc/source/stdlib/detail/function-templates_boost-QRulesVisitor-preVisitExprMakeStructField-0x761a056aed77aa46.rst +++ /dev/null @@ -1 +0,0 @@ -Visits structure field declaration and processes field tags. diff --git a/doc/source/stdlib/detail/function-templates_boost-QRulesVisitor-visitExprTag-0xcaa06f3e2b749c8b.rst b/doc/source/stdlib/detail/function-templates_boost-QRulesVisitor-visitExprTag-0xcaa06f3e2b749c8b.rst deleted file mode 100644 index e38bb7fd2e..0000000000 --- a/doc/source/stdlib/detail/function-templates_boost-QRulesVisitor-visitExprTag-0xcaa06f3e2b749c8b.rst +++ /dev/null @@ -1 +0,0 @@ -Visits tag expression and processes variable/expression/argument/call tags. diff --git a/doc/source/stdlib/detail/function-templates_boost-QRulesVisitor-visitTD-0xfc5c81adf86b2e48.rst b/doc/source/stdlib/detail/function-templates_boost-QRulesVisitor-visitTD-0xfc5c81adf86b2e48.rst deleted file mode 100644 index 8a307d2670..0000000000 --- a/doc/source/stdlib/detail/function-templates_boost-QRulesVisitor-visitTD-0xfc5c81adf86b2e48.rst +++ /dev/null @@ -1 +0,0 @@ -Visits type declaration and processes type tags. diff --git a/doc/source/stdlib/detail/function-templates_boost-QRulesVisitor-visitTypeDecl-0xb1f723b33a37436d.rst b/doc/source/stdlib/detail/function-templates_boost-QRulesVisitor-visitTypeDecl-0xb1f723b33a37436d.rst deleted file mode 100644 index 8a307d2670..0000000000 --- a/doc/source/stdlib/detail/function-templates_boost-QRulesVisitor-visitTypeDecl-0xb1f723b33a37436d.rst +++ /dev/null @@ -1 +0,0 @@ -Visits type declaration and processes type tags. diff --git a/doc/source/stdlib/detail/function-templates_boost-RemoveDerefVisitor-RemoveDerefVisitor-0x1e5addd788915352.rst b/doc/source/stdlib/detail/function-templates_boost-RemoveDerefVisitor-RemoveDerefVisitor-0x1e5addd788915352.rst deleted file mode 100644 index a184ddc0ed..0000000000 --- a/doc/source/stdlib/detail/function-templates_boost-RemoveDerefVisitor-RemoveDerefVisitor-0x1e5addd788915352.rst +++ /dev/null @@ -1 +0,0 @@ -Creates visitor that removes dereferences of variable `n`. diff --git a/doc/source/stdlib/detail/function-templates_boost-RemoveDerefVisitor-visitExprRef2Value-0xad37cb702d8df299.rst b/doc/source/stdlib/detail/function-templates_boost-RemoveDerefVisitor-visitExprRef2Value-0xad37cb702d8df299.rst deleted file mode 100644 index 0a815dcf8c..0000000000 --- a/doc/source/stdlib/detail/function-templates_boost-RemoveDerefVisitor-visitExprRef2Value-0xad37cb702d8df299.rst +++ /dev/null @@ -1 +0,0 @@ -Visits reference-to-value expression and removes dereference if it matches the variable name. diff --git a/doc/source/stdlib/detail/function-templates_boost-TemplateVisitor-TemplateVisitor-0x6e4a2d2930b12695.rst b/doc/source/stdlib/detail/function-templates_boost-TemplateVisitor-TemplateVisitor-0x6e4a2d2930b12695.rst deleted file mode 100644 index b567d312ef..0000000000 --- a/doc/source/stdlib/detail/function-templates_boost-TemplateVisitor-TemplateVisitor-0x6e4a2d2930b12695.rst +++ /dev/null @@ -1 +0,0 @@ -Creates template visitor with given rules. diff --git a/doc/source/stdlib/detail/function-templates_boost-TemplateVisitor-preVisitAnythingCall-0x26b79ac33598e51f.rst b/doc/source/stdlib/detail/function-templates_boost-TemplateVisitor-preVisitAnythingCall-0x26b79ac33598e51f.rst deleted file mode 100644 index 6670c11af5..0000000000 --- a/doc/source/stdlib/detail/function-templates_boost-TemplateVisitor-preVisitAnythingCall-0x26b79ac33598e51f.rst +++ /dev/null @@ -1 +0,0 @@ -Visits call arguments and applies variable expression list replacement rules. diff --git a/doc/source/stdlib/detail/function-templates_boost-TemplateVisitor-preVisitExprAddr-0xc8e0d1c49227f050.rst b/doc/source/stdlib/detail/function-templates_boost-TemplateVisitor-preVisitExprAddr-0xc8e0d1c49227f050.rst deleted file mode 100644 index 5c70eec06f..0000000000 --- a/doc/source/stdlib/detail/function-templates_boost-TemplateVisitor-preVisitExprAddr-0xc8e0d1c49227f050.rst +++ /dev/null @@ -1 +0,0 @@ -Visits address-of expression and applies call renaming rules. diff --git a/doc/source/stdlib/detail/function-templates_boost-TemplateVisitor-preVisitExprBlock-0x4cb9018013e8bdd1.rst b/doc/source/stdlib/detail/function-templates_boost-TemplateVisitor-preVisitExprBlock-0x4cb9018013e8bdd1.rst deleted file mode 100644 index 5328835337..0000000000 --- a/doc/source/stdlib/detail/function-templates_boost-TemplateVisitor-preVisitExprBlock-0x4cb9018013e8bdd1.rst +++ /dev/null @@ -1 +0,0 @@ -Visits block expression and applies block argument renaming and replacement rules, as well as annotation argument replacement rules. diff --git a/doc/source/stdlib/detail/function-templates_boost-TemplateVisitor-preVisitExprCall-0x97f507f6eea37f18.rst b/doc/source/stdlib/detail/function-templates_boost-TemplateVisitor-preVisitExprCall-0x97f507f6eea37f18.rst deleted file mode 100644 index 3b4a2b7aed..0000000000 --- a/doc/source/stdlib/detail/function-templates_boost-TemplateVisitor-preVisitExprCall-0x97f507f6eea37f18.rst +++ /dev/null @@ -1 +0,0 @@ -Visits call expression and applies call renaming rules. diff --git a/doc/source/stdlib/detail/function-templates_boost-TemplateVisitor-preVisitExprFor-0x101a38c3d07aa36b.rst b/doc/source/stdlib/detail/function-templates_boost-TemplateVisitor-preVisitExprFor-0x101a38c3d07aa36b.rst deleted file mode 100644 index 77a7377117..0000000000 --- a/doc/source/stdlib/detail/function-templates_boost-TemplateVisitor-preVisitExprFor-0x101a38c3d07aa36b.rst +++ /dev/null @@ -1 +0,0 @@ -Visits for-loop expression and applies variable renaming rules. diff --git a/doc/source/stdlib/detail/function-templates_boost-TemplateVisitor-preVisitExprLooksLikeCall-0x9bc25a24f760f88f.rst b/doc/source/stdlib/detail/function-templates_boost-TemplateVisitor-preVisitExprLooksLikeCall-0x9bc25a24f760f88f.rst deleted file mode 100644 index 79bc347973..0000000000 --- a/doc/source/stdlib/detail/function-templates_boost-TemplateVisitor-preVisitExprLooksLikeCall-0x9bc25a24f760f88f.rst +++ /dev/null @@ -1 +0,0 @@ -Visits looks-like-call expression and applies call renaming rules. diff --git a/doc/source/stdlib/detail/function-templates_boost-TemplateVisitor-preVisitExprMakeArray-0xe2a266baa240e201.rst b/doc/source/stdlib/detail/function-templates_boost-TemplateVisitor-preVisitExprMakeArray-0xe2a266baa240e201.rst deleted file mode 100644 index 81aff833b9..0000000000 --- a/doc/source/stdlib/detail/function-templates_boost-TemplateVisitor-preVisitExprMakeArray-0xe2a266baa240e201.rst +++ /dev/null @@ -1 +0,0 @@ -Visits make-array expression and applies call renaming rules. diff --git a/doc/source/stdlib/detail/function-templates_boost-TemplateVisitor-preVisitExprMakeStructField-0x761a056aed77aa46.rst b/doc/source/stdlib/detail/function-templates_boost-TemplateVisitor-preVisitExprMakeStructField-0x761a056aed77aa46.rst deleted file mode 100644 index 847ee0133a..0000000000 --- a/doc/source/stdlib/detail/function-templates_boost-TemplateVisitor-preVisitExprMakeStructField-0x761a056aed77aa46.rst +++ /dev/null @@ -1 +0,0 @@ -Visits structure field declaration and applies field renaming rules. diff --git a/doc/source/stdlib/detail/function-templates_boost-TemplateVisitor-replaceAlias-0x73656e5ac661b0a1.rst b/doc/source/stdlib/detail/function-templates_boost-TemplateVisitor-replaceAlias-0x73656e5ac661b0a1.rst deleted file mode 100644 index fe0a310b79..0000000000 --- a/doc/source/stdlib/detail/function-templates_boost-TemplateVisitor-replaceAlias-0x73656e5ac661b0a1.rst +++ /dev/null @@ -1 +0,0 @@ -Replaces type aliases in the given type declaration according to the template rules. diff --git a/doc/source/stdlib/detail/function-templates_boost-TemplateVisitor-visitExprAddr-0xbe82e6ff69e7a2e1.rst b/doc/source/stdlib/detail/function-templates_boost-TemplateVisitor-visitExprAddr-0xbe82e6ff69e7a2e1.rst deleted file mode 100644 index 2d8254b252..0000000000 --- a/doc/source/stdlib/detail/function-templates_boost-TemplateVisitor-visitExprAddr-0xbe82e6ff69e7a2e1.rst +++ /dev/null @@ -1 +0,0 @@ -Visits address-of expression and applies variable renaming rules. diff --git a/doc/source/stdlib/detail/function-templates_boost-TemplateVisitor-visitExprAsVariant-0x1c0df87ab7085c10.rst b/doc/source/stdlib/detail/function-templates_boost-TemplateVisitor-visitExprAsVariant-0x1c0df87ab7085c10.rst deleted file mode 100644 index 437df87300..0000000000 --- a/doc/source/stdlib/detail/function-templates_boost-TemplateVisitor-visitExprAsVariant-0x1c0df87ab7085c10.rst +++ /dev/null @@ -1 +0,0 @@ -Visits as-variant expression and applies field renaming rules. diff --git a/doc/source/stdlib/detail/function-templates_boost-TemplateVisitor-visitExprField-0x73ef02f12784f2d7.rst b/doc/source/stdlib/detail/function-templates_boost-TemplateVisitor-visitExprField-0x73ef02f12784f2d7.rst deleted file mode 100644 index d88e94c249..0000000000 --- a/doc/source/stdlib/detail/function-templates_boost-TemplateVisitor-visitExprField-0x73ef02f12784f2d7.rst +++ /dev/null @@ -1 +0,0 @@ -Visits field expression and applies field renaming rules. diff --git a/doc/source/stdlib/detail/function-templates_boost-TemplateVisitor-visitExprIsVariant-0x786f9f6244202f88.rst b/doc/source/stdlib/detail/function-templates_boost-TemplateVisitor-visitExprIsVariant-0x786f9f6244202f88.rst deleted file mode 100644 index d8f946c6ee..0000000000 --- a/doc/source/stdlib/detail/function-templates_boost-TemplateVisitor-visitExprIsVariant-0x786f9f6244202f88.rst +++ /dev/null @@ -1 +0,0 @@ -Visits is-variant expression and applies field renaming rules. diff --git a/doc/source/stdlib/detail/function-templates_boost-TemplateVisitor-visitExprLet-0x21e5b690d05cf732.rst b/doc/source/stdlib/detail/function-templates_boost-TemplateVisitor-visitExprLet-0x21e5b690d05cf732.rst deleted file mode 100644 index a0ac2f0a27..0000000000 --- a/doc/source/stdlib/detail/function-templates_boost-TemplateVisitor-visitExprLet-0x21e5b690d05cf732.rst +++ /dev/null @@ -1 +0,0 @@ -Visits let expression and applies variable renaming rules. diff --git a/doc/source/stdlib/detail/function-templates_boost-TemplateVisitor-visitExprSafeAsVariant-0x31ea3d1cd9cb7761.rst b/doc/source/stdlib/detail/function-templates_boost-TemplateVisitor-visitExprSafeAsVariant-0x31ea3d1cd9cb7761.rst deleted file mode 100644 index c9903a0b35..0000000000 --- a/doc/source/stdlib/detail/function-templates_boost-TemplateVisitor-visitExprSafeAsVariant-0x31ea3d1cd9cb7761.rst +++ /dev/null @@ -1 +0,0 @@ -Visits safe-as-variant expression and applies field renaming rules. diff --git a/doc/source/stdlib/detail/function-templates_boost-TemplateVisitor-visitExprSafeField-0xae8f945ca98f8a9a.rst b/doc/source/stdlib/detail/function-templates_boost-TemplateVisitor-visitExprSafeField-0xae8f945ca98f8a9a.rst deleted file mode 100644 index a9e3f8ba7f..0000000000 --- a/doc/source/stdlib/detail/function-templates_boost-TemplateVisitor-visitExprSafeField-0xae8f945ca98f8a9a.rst +++ /dev/null @@ -1 +0,0 @@ -Visits safe-field expression and applies field renaming rules. diff --git a/doc/source/stdlib/detail/function-templates_boost-TemplateVisitor-visitExprTag-0xcaa06f3e2b749c8b.rst b/doc/source/stdlib/detail/function-templates_boost-TemplateVisitor-visitExprTag-0xcaa06f3e2b749c8b.rst deleted file mode 100644 index 54ee783972..0000000000 --- a/doc/source/stdlib/detail/function-templates_boost-TemplateVisitor-visitExprTag-0xcaa06f3e2b749c8b.rst +++ /dev/null @@ -1 +0,0 @@ -Visits tag expression and applies tag replacement rules. diff --git a/doc/source/stdlib/detail/function-templates_boost-TemplateVisitor-visitExprVar-0x31d171a81527858e.rst b/doc/source/stdlib/detail/function-templates_boost-TemplateVisitor-visitExprVar-0x31d171a81527858e.rst deleted file mode 100644 index 95701ec91a..0000000000 --- a/doc/source/stdlib/detail/function-templates_boost-TemplateVisitor-visitExprVar-0x31d171a81527858e.rst +++ /dev/null @@ -1 +0,0 @@ -Visits variable expression and applies variable renaming and replacement rules. diff --git a/doc/source/stdlib/detail/function-templates_boost-TemplateVisitor-visitTypeDecl-0xb1f723b33a37436d.rst b/doc/source/stdlib/detail/function-templates_boost-TemplateVisitor-visitTypeDecl-0xb1f723b33a37436d.rst deleted file mode 100644 index 43e7428f72..0000000000 --- a/doc/source/stdlib/detail/function-templates_boost-TemplateVisitor-visitTypeDecl-0xb1f723b33a37436d.rst +++ /dev/null @@ -1 +0,0 @@ -Visits type declaration and applies type replacement rules. diff --git a/doc/source/stdlib/detail/function-templates_boost-add_array_ptr_ref-0x5a117afa3ca5f7.rst b/doc/source/stdlib/detail/function-templates_boost-add_array_ptr_ref-0x5a117afa3ca5f7.rst deleted file mode 100644 index e727bb64d1..0000000000 --- a/doc/source/stdlib/detail/function-templates_boost-add_array_ptr_ref-0x5a117afa3ca5f7.rst +++ /dev/null @@ -1 +0,0 @@ -Implementation details for the reification. This adds any array to the rules. diff --git a/doc/source/stdlib/detail/function-templates_boost-add_global_let-0xc84c452b7407d2ef.rst b/doc/source/stdlib/detail/function-templates_boost-add_global_let-0xc84c452b7407d2ef.rst deleted file mode 100644 index 8c340eb63f..0000000000 --- a/doc/source/stdlib/detail/function-templates_boost-add_global_let-0xc84c452b7407d2ef.rst +++ /dev/null @@ -1,2 +0,0 @@ -Add global variable to the module, given name and initial value. -Variable type will be constant. diff --git a/doc/source/stdlib/detail/function-templates_boost-add_global_private_let-0xc362e4518d265baa.rst b/doc/source/stdlib/detail/function-templates_boost-add_global_private_let-0xc362e4518d265baa.rst deleted file mode 100644 index 4c4800a45b..0000000000 --- a/doc/source/stdlib/detail/function-templates_boost-add_global_private_let-0xc362e4518d265baa.rst +++ /dev/null @@ -1,2 +0,0 @@ -Add global variable to the module, given name and initial value. -It will be private, and type will be constant. diff --git a/doc/source/stdlib/detail/function-templates_boost-add_global_private_var-0x7f1940128328274e.rst b/doc/source/stdlib/detail/function-templates_boost-add_global_private_var-0x7f1940128328274e.rst deleted file mode 100644 index fdb0037758..0000000000 --- a/doc/source/stdlib/detail/function-templates_boost-add_global_private_var-0x7f1940128328274e.rst +++ /dev/null @@ -1,2 +0,0 @@ -Add global variable to the module, given name and initial value. -It will be private. diff --git a/doc/source/stdlib/detail/function-templates_boost-add_global_var-0x2a95d1fcac2d79ad.rst b/doc/source/stdlib/detail/function-templates_boost-add_global_var-0x2a95d1fcac2d79ad.rst deleted file mode 100644 index 4472f4ec12..0000000000 --- a/doc/source/stdlib/detail/function-templates_boost-add_global_var-0x2a95d1fcac2d79ad.rst +++ /dev/null @@ -1 +0,0 @@ -Add global variable to the module, given name and type. diff --git a/doc/source/stdlib/detail/function-templates_boost-add_global_var-0x3f283fbe2de53e8b.rst b/doc/source/stdlib/detail/function-templates_boost-add_global_var-0x3f283fbe2de53e8b.rst deleted file mode 100644 index 572b399274..0000000000 --- a/doc/source/stdlib/detail/function-templates_boost-add_global_var-0x3f283fbe2de53e8b.rst +++ /dev/null @@ -1,2 +0,0 @@ -Add global variable to the module, given name and type. -`priv` specifies if the variable is private to the block. diff --git a/doc/source/stdlib/detail/function-templates_boost-add_global_var-0x52c56d71c21cb7cb.rst b/doc/source/stdlib/detail/function-templates_boost-add_global_var-0x52c56d71c21cb7cb.rst deleted file mode 100644 index 2f3393854c..0000000000 --- a/doc/source/stdlib/detail/function-templates_boost-add_global_var-0x52c56d71c21cb7cb.rst +++ /dev/null @@ -1,3 +0,0 @@ -Adds global variable to the module, given name and initial value. -Global variables type is would be inferred from the initial value. -`priv` specifies if the variable is private to the block. diff --git a/doc/source/stdlib/detail/function-templates_boost-add_global_var_any-0xb46c19f087a6171e.rst b/doc/source/stdlib/detail/function-templates_boost-add_global_var_any-0xb46c19f087a6171e.rst deleted file mode 100644 index bfcfa25b3c..0000000000 --- a/doc/source/stdlib/detail/function-templates_boost-add_global_var_any-0xb46c19f087a6171e.rst +++ /dev/null @@ -1 +0,0 @@ -Adds global variable to the module, given name, type flags and initial value. diff --git a/doc/source/stdlib/detail/function-templates_boost-add_structure_field-0xfce89ddc1660aa6d.rst b/doc/source/stdlib/detail/function-templates_boost-add_structure_field-0xfce89ddc1660aa6d.rst deleted file mode 100644 index 7e5e80011e..0000000000 --- a/doc/source/stdlib/detail/function-templates_boost-add_structure_field-0xfce89ddc1660aa6d.rst +++ /dev/null @@ -1 +0,0 @@ -Adds a field to the structure. diff --git a/doc/source/stdlib/detail/function-templates_boost-add_type_ptr_ref-0x3a04bf572e7a2915.rst b/doc/source/stdlib/detail/function-templates_boost-add_type_ptr_ref-0x3a04bf572e7a2915.rst deleted file mode 100644 index 30b8f2ffb7..0000000000 --- a/doc/source/stdlib/detail/function-templates_boost-add_type_ptr_ref-0x3a04bf572e7a2915.rst +++ /dev/null @@ -1 +0,0 @@ -Implementation details for the reification. Creates a type declaration from an enumeration raw pointer. diff --git a/doc/source/stdlib/detail/function-templates_boost-add_type_ptr_ref-0x3ee2a7d7b886f956.rst b/doc/source/stdlib/detail/function-templates_boost-add_type_ptr_ref-0x3ee2a7d7b886f956.rst deleted file mode 100644 index d9883a25c0..0000000000 --- a/doc/source/stdlib/detail/function-templates_boost-add_type_ptr_ref-0x3ee2a7d7b886f956.rst +++ /dev/null @@ -1 +0,0 @@ -Implementation details for the reification. Creates a type declaration from a structure raw pointer. diff --git a/doc/source/stdlib/detail/function-templates_boost-add_type_ptr_ref-0x8ee1806dcceecdca.rst b/doc/source/stdlib/detail/function-templates_boost-add_type_ptr_ref-0x8ee1806dcceecdca.rst deleted file mode 100644 index 4fe7ca006f..0000000000 --- a/doc/source/stdlib/detail/function-templates_boost-add_type_ptr_ref-0x8ee1806dcceecdca.rst +++ /dev/null @@ -1 +0,0 @@ -Implementation details for the reification. Clones a type declaration and applies given flags. diff --git a/doc/source/stdlib/detail/function-templates_boost-add_type_ptr_ref-0x96f48145ef8a2ed3.rst b/doc/source/stdlib/detail/function-templates_boost-add_type_ptr_ref-0x96f48145ef8a2ed3.rst deleted file mode 100644 index 7c04f4a504..0000000000 --- a/doc/source/stdlib/detail/function-templates_boost-add_type_ptr_ref-0x96f48145ef8a2ed3.rst +++ /dev/null @@ -1 +0,0 @@ -Implementation details for the reification. Fallback overload that produces a compile-time error for unsupported types. diff --git a/doc/source/stdlib/detail/function-templates_boost-add_type_ptr_ref-0xc2288d67c3a4e5b1.rst b/doc/source/stdlib/detail/function-templates_boost-add_type_ptr_ref-0xc2288d67c3a4e5b1.rst deleted file mode 100644 index eadad8bdee..0000000000 --- a/doc/source/stdlib/detail/function-templates_boost-add_type_ptr_ref-0xc2288d67c3a4e5b1.rst +++ /dev/null @@ -1 +0,0 @@ -Implementation details for the reification. Creates a type declaration from an enumeration smart pointer. diff --git a/doc/source/stdlib/detail/function-templates_boost-add_type_ptr_ref-0xedde5dab5ff8359c.rst b/doc/source/stdlib/detail/function-templates_boost-add_type_ptr_ref-0xedde5dab5ff8359c.rst deleted file mode 100644 index 47be75283b..0000000000 --- a/doc/source/stdlib/detail/function-templates_boost-add_type_ptr_ref-0xedde5dab5ff8359c.rst +++ /dev/null @@ -1 +0,0 @@ -Implementation details for the reification. Creates a type declaration from a structure smart pointer. diff --git a/doc/source/stdlib/detail/function-templates_boost-apply_function_qrules-0x67a7e8b66de04008.rst b/doc/source/stdlib/detail/function-templates_boost-apply_function_qrules-0x67a7e8b66de04008.rst deleted file mode 100644 index 0cbb04393d..0000000000 --- a/doc/source/stdlib/detail/function-templates_boost-apply_function_qrules-0x67a7e8b66de04008.rst +++ /dev/null @@ -1 +0,0 @@ -Implementation details for the expression reification. diff --git a/doc/source/stdlib/detail/function-templates_boost-apply_qblock-0xd3041a9199c2c8a.rst b/doc/source/stdlib/detail/function-templates_boost-apply_qblock-0xd3041a9199c2c8a.rst deleted file mode 100644 index 1eefde7062..0000000000 --- a/doc/source/stdlib/detail/function-templates_boost-apply_qblock-0xd3041a9199c2c8a.rst +++ /dev/null @@ -1 +0,0 @@ -Implementation details for the expression reification. This is a block reification. diff --git a/doc/source/stdlib/detail/function-templates_boost-apply_qblock_expr-0xeacb57096553b4e.rst b/doc/source/stdlib/detail/function-templates_boost-apply_qblock_expr-0xeacb57096553b4e.rst deleted file mode 100644 index 86d70af6a8..0000000000 --- a/doc/source/stdlib/detail/function-templates_boost-apply_qblock_expr-0xeacb57096553b4e.rst +++ /dev/null @@ -1 +0,0 @@ -Implementation details for the expression reification. This is a first line of the block as expression reification. diff --git a/doc/source/stdlib/detail/function-templates_boost-apply_qblock_to_array-0xd3028bdcfdd63d2d.rst b/doc/source/stdlib/detail/function-templates_boost-apply_qblock_to_array-0xd3028bdcfdd63d2d.rst deleted file mode 100644 index 1eefde7062..0000000000 --- a/doc/source/stdlib/detail/function-templates_boost-apply_qblock_to_array-0xd3028bdcfdd63d2d.rst +++ /dev/null @@ -1 +0,0 @@ -Implementation details for the expression reification. This is a block reification. diff --git a/doc/source/stdlib/detail/function-templates_boost-apply_qmacro-0xfa6a04d87102764.rst b/doc/source/stdlib/detail/function-templates_boost-apply_qmacro-0xfa6a04d87102764.rst deleted file mode 100644 index 0cbb04393d..0000000000 --- a/doc/source/stdlib/detail/function-templates_boost-apply_qmacro-0xfa6a04d87102764.rst +++ /dev/null @@ -1 +0,0 @@ -Implementation details for the expression reification. diff --git a/doc/source/stdlib/detail/function-templates_boost-apply_qmacro_function-0xa83486de4f53f99f.rst b/doc/source/stdlib/detail/function-templates_boost-apply_qmacro_function-0xa83486de4f53f99f.rst deleted file mode 100644 index 4f9a7744ac..0000000000 --- a/doc/source/stdlib/detail/function-templates_boost-apply_qmacro_function-0xa83486de4f53f99f.rst +++ /dev/null @@ -1 +0,0 @@ -Implementation details for reification. This is a function generation reification. diff --git a/doc/source/stdlib/detail/function-templates_boost-apply_qmacro_method-0x5c4eeec2d72d608d.rst b/doc/source/stdlib/detail/function-templates_boost-apply_qmacro_method-0x5c4eeec2d72d608d.rst deleted file mode 100644 index 2333e8c86c..0000000000 --- a/doc/source/stdlib/detail/function-templates_boost-apply_qmacro_method-0x5c4eeec2d72d608d.rst +++ /dev/null @@ -1 +0,0 @@ -Implementation details for reification. This is a class method function generation reification. diff --git a/doc/source/stdlib/detail/function-templates_boost-apply_qmacro_template_class-0x91fe7e3cb4ec32a3.rst b/doc/source/stdlib/detail/function-templates_boost-apply_qmacro_template_class-0x91fe7e3cb4ec32a3.rst deleted file mode 100644 index c81e39e35d..0000000000 --- a/doc/source/stdlib/detail/function-templates_boost-apply_qmacro_template_class-0x91fe7e3cb4ec32a3.rst +++ /dev/null @@ -1 +0,0 @@ -Implementation details for the expression reification. This is a template class instantiation reification. diff --git a/doc/source/stdlib/detail/function-templates_boost-apply_qmacro_template_function-0x3e0c0b5d66b8efb6.rst b/doc/source/stdlib/detail/function-templates_boost-apply_qmacro_template_function-0x3e0c0b5d66b8efb6.rst deleted file mode 100644 index 9d8fd7c35b..0000000000 --- a/doc/source/stdlib/detail/function-templates_boost-apply_qmacro_template_function-0x3e0c0b5d66b8efb6.rst +++ /dev/null @@ -1 +0,0 @@ -Applies template rules to a function, cloning it with substituted types. diff --git a/doc/source/stdlib/detail/function-templates_boost-apply_qmacro_variable-0xb29ac886c24be7f3.rst b/doc/source/stdlib/detail/function-templates_boost-apply_qmacro_variable-0xb29ac886c24be7f3.rst deleted file mode 100644 index 7c78d8f20b..0000000000 --- a/doc/source/stdlib/detail/function-templates_boost-apply_qmacro_variable-0xb29ac886c24be7f3.rst +++ /dev/null @@ -1 +0,0 @@ -Implementation details for reification. This is a variable generation reification. diff --git a/doc/source/stdlib/detail/function-templates_boost-apply_qrules-0x30b8ff7ec329f49a.rst b/doc/source/stdlib/detail/function-templates_boost-apply_qrules-0x30b8ff7ec329f49a.rst deleted file mode 100644 index 0cbb04393d..0000000000 --- a/doc/source/stdlib/detail/function-templates_boost-apply_qrules-0x30b8ff7ec329f49a.rst +++ /dev/null @@ -1 +0,0 @@ -Implementation details for the expression reification. diff --git a/doc/source/stdlib/detail/function-templates_boost-apply_qtype-0xb76c9cbf146f2f2c.rst b/doc/source/stdlib/detail/function-templates_boost-apply_qtype-0xb76c9cbf146f2f2c.rst deleted file mode 100644 index cd6cdd55ab..0000000000 --- a/doc/source/stdlib/detail/function-templates_boost-apply_qtype-0xb76c9cbf146f2f2c.rst +++ /dev/null @@ -1 +0,0 @@ -Implementation details for the expression reification. This is a type declaration reification. diff --git a/doc/source/stdlib/detail/function-templates_boost-apply_template-0x445d2cd5d5d967b4.rst b/doc/source/stdlib/detail/function-templates_boost-apply_template-0x445d2cd5d5d967b4.rst deleted file mode 100644 index 4a586882dd..0000000000 --- a/doc/source/stdlib/detail/function-templates_boost-apply_template-0x445d2cd5d5d967b4.rst +++ /dev/null @@ -1 +0,0 @@ -Applies the template to the given expression. If `forceAt` is set, the resulting expression will have the same line info as 'at'. diff --git a/doc/source/stdlib/detail/function-templates_boost-apply_template-0x5e1fedb237d55693.rst b/doc/source/stdlib/detail/function-templates_boost-apply_template-0x5e1fedb237d55693.rst deleted file mode 100644 index 663bb8238a..0000000000 --- a/doc/source/stdlib/detail/function-templates_boost-apply_template-0x5e1fedb237d55693.rst +++ /dev/null @@ -1 +0,0 @@ -Applies the template to the given expression. diff --git a/doc/source/stdlib/detail/function-templates_boost-apply_template-0xb8c0e4e3f37c6b33.rst b/doc/source/stdlib/detail/function-templates_boost-apply_template-0xb8c0e4e3f37c6b33.rst deleted file mode 100644 index 4a586882dd..0000000000 --- a/doc/source/stdlib/detail/function-templates_boost-apply_template-0xb8c0e4e3f37c6b33.rst +++ /dev/null @@ -1 +0,0 @@ -Applies the template to the given expression. If `forceAt` is set, the resulting expression will have the same line info as 'at'. diff --git a/doc/source/stdlib/detail/function-templates_boost-apply_template-0xbd03dc0824434b87.rst b/doc/source/stdlib/detail/function-templates_boost-apply_template-0xbd03dc0824434b87.rst deleted file mode 100644 index 24d64747fc..0000000000 --- a/doc/source/stdlib/detail/function-templates_boost-apply_template-0xbd03dc0824434b87.rst +++ /dev/null @@ -1 +0,0 @@ -Applies the template to the given type declaration. If `forceAt` is set, the resulting type declaration will have the same line info as 'at'. diff --git a/doc/source/stdlib/detail/function-templates_boost-apply_template-0xbda764afcb758a1a.rst b/doc/source/stdlib/detail/function-templates_boost-apply_template-0xbda764afcb758a1a.rst deleted file mode 100644 index 4a586882dd..0000000000 --- a/doc/source/stdlib/detail/function-templates_boost-apply_template-0xbda764afcb758a1a.rst +++ /dev/null @@ -1 +0,0 @@ -Applies the template to the given expression. If `forceAt` is set, the resulting expression will have the same line info as 'at'. diff --git a/doc/source/stdlib/detail/function-templates_boost-apply_template_qrules-0x627969cd14bdea3d.rst b/doc/source/stdlib/detail/function-templates_boost-apply_template_qrules-0x627969cd14bdea3d.rst deleted file mode 100644 index 0cbb04393d..0000000000 --- a/doc/source/stdlib/detail/function-templates_boost-apply_template_qrules-0x627969cd14bdea3d.rst +++ /dev/null @@ -1 +0,0 @@ -Implementation details for the expression reification. diff --git a/doc/source/stdlib/detail/function-templates_boost-enum_class_type-0x65e9ff847d38d510.rst b/doc/source/stdlib/detail/function-templates_boost-enum_class_type-0x65e9ff847d38d510.rst deleted file mode 100644 index 850549496c..0000000000 --- a/doc/source/stdlib/detail/function-templates_boost-enum_class_type-0x65e9ff847d38d510.rst +++ /dev/null @@ -1 +0,0 @@ -return underlying type for the enumeration diff --git a/doc/source/stdlib/detail/function-templates_boost-expression_at-0x1fc59e0c6b2c1726.rst b/doc/source/stdlib/detail/function-templates_boost-expression_at-0x1fc59e0c6b2c1726.rst deleted file mode 100644 index c06c7e6bde..0000000000 --- a/doc/source/stdlib/detail/function-templates_boost-expression_at-0x1fc59e0c6b2c1726.rst +++ /dev/null @@ -1 +0,0 @@ -Force expression location, then return it. diff --git a/doc/source/stdlib/detail/function-templates_boost-generatedExpr-0x1670c9c05aef15f1.rst b/doc/source/stdlib/detail/function-templates_boost-generatedExpr-0x1670c9c05aef15f1.rst deleted file mode 100644 index c6346bfac7..0000000000 --- a/doc/source/stdlib/detail/function-templates_boost-generatedExpr-0x1670c9c05aef15f1.rst +++ /dev/null @@ -1 +0,0 @@ -Marks the expression as generated. diff --git a/doc/source/stdlib/detail/function-templates_boost-generatedVariable-0x66358bb38c00f539.rst b/doc/source/stdlib/detail/function-templates_boost-generatedVariable-0x66358bb38c00f539.rst deleted file mode 100644 index a494a196d0..0000000000 --- a/doc/source/stdlib/detail/function-templates_boost-generatedVariable-0x66358bb38c00f539.rst +++ /dev/null @@ -1 +0,0 @@ -Marks the variable as generated. diff --git a/doc/source/stdlib/detail/function-templates_boost-kaboomVarField-0xff3dc46510c830e6.rst b/doc/source/stdlib/detail/function-templates_boost-kaboomVarField-0xff3dc46510c830e6.rst deleted file mode 100644 index c679b6ca80..0000000000 --- a/doc/source/stdlib/detail/function-templates_boost-kaboomVarField-0xff3dc46510c830e6.rst +++ /dev/null @@ -1,2 +0,0 @@ -Adds a rule to to the template to replace a variable field access with a prefix and suffix. -I.e. foo.bar into prefix + bar + suffix diff --git a/doc/source/stdlib/detail/function-templates_boost-make_class-0x15dd9646bb923eb0.rst b/doc/source/stdlib/detail/function-templates_boost-make_class-0x15dd9646bb923eb0.rst deleted file mode 100644 index c63899e812..0000000000 --- a/doc/source/stdlib/detail/function-templates_boost-make_class-0x15dd9646bb923eb0.rst +++ /dev/null @@ -1 +0,0 @@ -Creates a class structure. Adds __rtti, __finalize fields. diff --git a/doc/source/stdlib/detail/function-templates_boost-make_class-0x3c5acb0be09874b4.rst b/doc/source/stdlib/detail/function-templates_boost-make_class-0x3c5acb0be09874b4.rst deleted file mode 100644 index 3fc1abe362..0000000000 --- a/doc/source/stdlib/detail/function-templates_boost-make_class-0x3c5acb0be09874b4.rst +++ /dev/null @@ -1 +0,0 @@ -Creates a class structure derived from baseClass. Adds __rtti, __finalize fields. diff --git a/doc/source/stdlib/detail/function-templates_boost-make_class-0xa44d394c609d93f0.rst b/doc/source/stdlib/detail/function-templates_boost-make_class-0xa44d394c609d93f0.rst deleted file mode 100644 index 3fc1abe362..0000000000 --- a/doc/source/stdlib/detail/function-templates_boost-make_class-0xa44d394c609d93f0.rst +++ /dev/null @@ -1 +0,0 @@ -Creates a class structure derived from baseClass. Adds __rtti, __finalize fields. diff --git a/doc/source/stdlib/detail/function-templates_boost-make_class_constructor-0x208b1153c3a33959.rst b/doc/source/stdlib/detail/function-templates_boost-make_class_constructor-0x208b1153c3a33959.rst deleted file mode 100644 index 43220c7171..0000000000 --- a/doc/source/stdlib/detail/function-templates_boost-make_class_constructor-0x208b1153c3a33959.rst +++ /dev/null @@ -1 +0,0 @@ -Adds a class constructor from a constructor function. diff --git a/doc/source/stdlib/detail/function-templates_boost-make_expression_block-0x4b8417a6c3f61f6e.rst b/doc/source/stdlib/detail/function-templates_boost-make_expression_block-0x4b8417a6c3f61f6e.rst deleted file mode 100644 index b03a083cbb..0000000000 --- a/doc/source/stdlib/detail/function-templates_boost-make_expression_block-0x4b8417a6c3f61f6e.rst +++ /dev/null @@ -1 +0,0 @@ -Create ExprBlock and move all expressions from expr to the list of the block. diff --git a/doc/source/stdlib/detail/function-templates_boost-make_expression_block-0x8c2d1426a0bea5f0.rst b/doc/source/stdlib/detail/function-templates_boost-make_expression_block-0x8c2d1426a0bea5f0.rst deleted file mode 100644 index b03a083cbb..0000000000 --- a/doc/source/stdlib/detail/function-templates_boost-make_expression_block-0x8c2d1426a0bea5f0.rst +++ /dev/null @@ -1 +0,0 @@ -Create ExprBlock and move all expressions from expr to the list of the block. diff --git a/doc/source/stdlib/detail/function-templates_boost-make_unique_private_name-0xc817f2d31dcc0d2e.rst b/doc/source/stdlib/detail/function-templates_boost-make_unique_private_name-0xc817f2d31dcc0d2e.rst deleted file mode 100644 index 7fe1105a6b..0000000000 --- a/doc/source/stdlib/detail/function-templates_boost-make_unique_private_name-0xc817f2d31dcc0d2e.rst +++ /dev/null @@ -1,6 +0,0 @@ -Generates unique private name for the variable, given prefix and line info. - -.. warning:: - - The assumption is that line info is unique for the context of the unique name generation. - If it is not, additional measures must be taken to ensure uniqueness of prefix. diff --git a/doc/source/stdlib/detail/function-templates_boost-modify_to_class_member-0x879f3108f8a59e9.rst b/doc/source/stdlib/detail/function-templates_boost-modify_to_class_member-0x879f3108f8a59e9.rst deleted file mode 100644 index cc1c5aa97e..0000000000 --- a/doc/source/stdlib/detail/function-templates_boost-modify_to_class_member-0x879f3108f8a59e9.rst +++ /dev/null @@ -1 +0,0 @@ -Modifies function to be a member of a particular class. diff --git a/doc/source/stdlib/detail/function-templates_boost-move_unquote_block-0x2894cc107addc322.rst b/doc/source/stdlib/detail/function-templates_boost-move_unquote_block-0x2894cc107addc322.rst deleted file mode 100644 index 07eef2b3aa..0000000000 --- a/doc/source/stdlib/detail/function-templates_boost-move_unquote_block-0x2894cc107addc322.rst +++ /dev/null @@ -1 +0,0 @@ -Moves the corresponding block subexpression expression from the ExprMakeBlock. diff --git a/doc/source/stdlib/detail/function-templates_boost-remove_deref-0xe4bffaf6770f87d0.rst b/doc/source/stdlib/detail/function-templates_boost-remove_deref-0xe4bffaf6770f87d0.rst deleted file mode 100644 index bab159dc75..0000000000 --- a/doc/source/stdlib/detail/function-templates_boost-remove_deref-0xe4bffaf6770f87d0.rst +++ /dev/null @@ -1,2 +0,0 @@ -Removes dereferences of the variable `varname` from the expression. -This is typically used when replacing 'workhorse' variable with constant. diff --git a/doc/source/stdlib/detail/function-templates_boost-renameCall-0x56d52c814edc7341.rst b/doc/source/stdlib/detail/function-templates_boost-renameCall-0x56d52c814edc7341.rst deleted file mode 100644 index c01805d1e8..0000000000 --- a/doc/source/stdlib/detail/function-templates_boost-renameCall-0x56d52c814edc7341.rst +++ /dev/null @@ -1 +0,0 @@ -Adds a rule to the template to rename a call. diff --git a/doc/source/stdlib/detail/function-templates_boost-renameCall-0x64bc3b6ec04690f6.rst b/doc/source/stdlib/detail/function-templates_boost-renameCall-0x64bc3b6ec04690f6.rst deleted file mode 100644 index c01805d1e8..0000000000 --- a/doc/source/stdlib/detail/function-templates_boost-renameCall-0x64bc3b6ec04690f6.rst +++ /dev/null @@ -1 +0,0 @@ -Adds a rule to the template to rename a call. diff --git a/doc/source/stdlib/detail/function-templates_boost-renameField-0xc5bf8851bb0297d.rst b/doc/source/stdlib/detail/function-templates_boost-renameField-0xc5bf8851bb0297d.rst deleted file mode 100644 index 1099088245..0000000000 --- a/doc/source/stdlib/detail/function-templates_boost-renameField-0xc5bf8851bb0297d.rst +++ /dev/null @@ -1 +0,0 @@ -Adds a rule to the template to rename any field lookup (., ?., as, is, etc) diff --git a/doc/source/stdlib/detail/function-templates_boost-renameField-0xfb71e8bb4d10f71d.rst b/doc/source/stdlib/detail/function-templates_boost-renameField-0xfb71e8bb4d10f71d.rst deleted file mode 100644 index 1099088245..0000000000 --- a/doc/source/stdlib/detail/function-templates_boost-renameField-0xfb71e8bb4d10f71d.rst +++ /dev/null @@ -1 +0,0 @@ -Adds a rule to the template to rename any field lookup (., ?., as, is, etc) diff --git a/doc/source/stdlib/detail/function-templates_boost-renameVariable-0x7da9d3a596fbdf03.rst b/doc/source/stdlib/detail/function-templates_boost-renameVariable-0x7da9d3a596fbdf03.rst deleted file mode 100644 index dd13421662..0000000000 --- a/doc/source/stdlib/detail/function-templates_boost-renameVariable-0x7da9d3a596fbdf03.rst +++ /dev/null @@ -1 +0,0 @@ -Adds a rule to the template to rename a variable. diff --git a/doc/source/stdlib/detail/function-templates_boost-renameVariable-0xdd007c192be78b8c.rst b/doc/source/stdlib/detail/function-templates_boost-renameVariable-0xdd007c192be78b8c.rst deleted file mode 100644 index dd13421662..0000000000 --- a/doc/source/stdlib/detail/function-templates_boost-renameVariable-0xdd007c192be78b8c.rst +++ /dev/null @@ -1 +0,0 @@ -Adds a rule to the template to rename a variable. diff --git a/doc/source/stdlib/detail/function-templates_boost-replaceAnnotationArgument-0x8f380797e1d26129.rst b/doc/source/stdlib/detail/function-templates_boost-replaceAnnotationArgument-0x8f380797e1d26129.rst deleted file mode 100644 index 97071d127c..0000000000 --- a/doc/source/stdlib/detail/function-templates_boost-replaceAnnotationArgument-0x8f380797e1d26129.rst +++ /dev/null @@ -1 +0,0 @@ -Adds a rule to the template to replace an annotation argument with the result of a callback. diff --git a/doc/source/stdlib/detail/function-templates_boost-replaceArgumentWithList-0xf583199be4517071.rst b/doc/source/stdlib/detail/function-templates_boost-replaceArgumentWithList-0xf583199be4517071.rst deleted file mode 100644 index c4ec39c782..0000000000 --- a/doc/source/stdlib/detail/function-templates_boost-replaceArgumentWithList-0xf583199be4517071.rst +++ /dev/null @@ -1 +0,0 @@ -Adds a rule to the template to replace a block argument with a list of variables. diff --git a/doc/source/stdlib/detail/function-templates_boost-replaceBlockArgument-0xe468e8cc550d8ffa.rst b/doc/source/stdlib/detail/function-templates_boost-replaceBlockArgument-0xe468e8cc550d8ffa.rst deleted file mode 100644 index 8758f7b007..0000000000 --- a/doc/source/stdlib/detail/function-templates_boost-replaceBlockArgument-0xe468e8cc550d8ffa.rst +++ /dev/null @@ -1 +0,0 @@ -Adds a rule to the template to rename a block argument. diff --git a/doc/source/stdlib/detail/function-templates_boost-replaceStructWithTypeDecl-0xc7212404236c0306.rst b/doc/source/stdlib/detail/function-templates_boost-replaceStructWithTypeDecl-0xc7212404236c0306.rst deleted file mode 100644 index b80558017c..0000000000 --- a/doc/source/stdlib/detail/function-templates_boost-replaceStructWithTypeDecl-0xc7212404236c0306.rst +++ /dev/null @@ -1 +0,0 @@ -Adds a rule to the template to replace a type alias with another type alias, specified by type declaration. diff --git a/doc/source/stdlib/detail/function-templates_boost-replaceType-0xc951034ba2c3f81.rst b/doc/source/stdlib/detail/function-templates_boost-replaceType-0xc951034ba2c3f81.rst deleted file mode 100644 index 1f1cef0bb9..0000000000 --- a/doc/source/stdlib/detail/function-templates_boost-replaceType-0xc951034ba2c3f81.rst +++ /dev/null @@ -1 +0,0 @@ -Adds a rule to the template to replace a type alias with another type alias, specified by name. diff --git a/doc/source/stdlib/detail/function-templates_boost-replaceTypeWithTypeDecl-0xc39c0576c0cebc99.rst b/doc/source/stdlib/detail/function-templates_boost-replaceTypeWithTypeDecl-0xc39c0576c0cebc99.rst deleted file mode 100644 index b80558017c..0000000000 --- a/doc/source/stdlib/detail/function-templates_boost-replaceTypeWithTypeDecl-0xc39c0576c0cebc99.rst +++ /dev/null @@ -1 +0,0 @@ -Adds a rule to the template to replace a type alias with another type alias, specified by type declaration. diff --git a/doc/source/stdlib/detail/function-templates_boost-replaceVarTag-0xb695438f3cdd7f58.rst b/doc/source/stdlib/detail/function-templates_boost-replaceVarTag-0xb695438f3cdd7f58.rst deleted file mode 100644 index 1ba5f88515..0000000000 --- a/doc/source/stdlib/detail/function-templates_boost-replaceVarTag-0xb695438f3cdd7f58.rst +++ /dev/null @@ -1 +0,0 @@ -Adds a rule to the template to replace a variable tag with an expression. diff --git a/doc/source/stdlib/detail/function-templates_boost-replaceVariable-0xc9f84a28c2eec1c1.rst b/doc/source/stdlib/detail/function-templates_boost-replaceVariable-0xc9f84a28c2eec1c1.rst deleted file mode 100644 index 87c5f59460..0000000000 --- a/doc/source/stdlib/detail/function-templates_boost-replaceVariable-0xc9f84a28c2eec1c1.rst +++ /dev/null @@ -1 +0,0 @@ -Adds a rule to the template to replace a variable with an expression. diff --git a/doc/source/stdlib/detail/function-templates_boost-replaceVariableWithList-0x1f26570509336ff7.rst b/doc/source/stdlib/detail/function-templates_boost-replaceVariableWithList-0x1f26570509336ff7.rst deleted file mode 100644 index 6daaddfe08..0000000000 --- a/doc/source/stdlib/detail/function-templates_boost-replaceVariableWithList-0x1f26570509336ff7.rst +++ /dev/null @@ -1 +0,0 @@ -Adds a rule to the template to replace a variable with an expression list. diff --git a/doc/source/stdlib/detail/function-templates_boost-replaceVariableWithList-0x3a941f315e1a59c3.rst b/doc/source/stdlib/detail/function-templates_boost-replaceVariableWithList-0x3a941f315e1a59c3.rst deleted file mode 100644 index 6daaddfe08..0000000000 --- a/doc/source/stdlib/detail/function-templates_boost-replaceVariableWithList-0x3a941f315e1a59c3.rst +++ /dev/null @@ -1 +0,0 @@ -Adds a rule to the template to replace a variable with an expression list. diff --git a/doc/source/stdlib/detail/function-templates_boost-unquote_block-0x3419195a8ff1d885.rst b/doc/source/stdlib/detail/function-templates_boost-unquote_block-0x3419195a8ff1d885.rst deleted file mode 100644 index 727863a697..0000000000 --- a/doc/source/stdlib/detail/function-templates_boost-unquote_block-0x3419195a8ff1d885.rst +++ /dev/null @@ -1 +0,0 @@ -Returns the corresponding block subexpression expression from the ExprMakeBlock. diff --git a/doc/source/stdlib/detail/function-templates_boost-visit_expression-0x80347ecfc9c19012.rst b/doc/source/stdlib/detail/function-templates_boost-visit_expression-0x80347ecfc9c19012.rst deleted file mode 100644 index a847e29566..0000000000 --- a/doc/source/stdlib/detail/function-templates_boost-visit_expression-0x80347ecfc9c19012.rst +++ /dev/null @@ -1 +0,0 @@ -Visits the expression with the given visitor adapter. diff --git a/doc/source/stdlib/detail/function-templates_boost-visit_type-0xdce3a4136c7a437.rst b/doc/source/stdlib/detail/function-templates_boost-visit_type-0xdce3a4136c7a437.rst deleted file mode 100644 index dbe017f834..0000000000 --- a/doc/source/stdlib/detail/function-templates_boost-visit_type-0xdce3a4136c7a437.rst +++ /dev/null @@ -1 +0,0 @@ -Visits the type declaration with the given visitor adapter. diff --git a/doc/source/stdlib/detail/function-typemacro_boost-add_structure_aliases-0x85c39211ad0ddd27.rst b/doc/source/stdlib/detail/function-typemacro_boost-add_structure_aliases-0x85c39211ad0ddd27.rst deleted file mode 100644 index d77403c698..0000000000 --- a/doc/source/stdlib/detail/function-typemacro_boost-add_structure_aliases-0x85c39211ad0ddd27.rst +++ /dev/null @@ -1 +0,0 @@ -Adds all template argument type aliases to a structure. diff --git a/doc/source/stdlib/detail/function-typemacro_boost-get_string_const-0xf655065b8b02861a.rst b/doc/source/stdlib/detail/function-typemacro_boost-get_string_const-0xf655065b8b02861a.rst deleted file mode 100644 index df81a3813c..0000000000 --- a/doc/source/stdlib/detail/function-typemacro_boost-get_string_const-0xf655065b8b02861a.rst +++ /dev/null @@ -1 +0,0 @@ -Extracts a string constant value or function address name from an expression. diff --git a/doc/source/stdlib/detail/function-typemacro_boost-infer_struct_aliases-0x62f823d768318fa5.rst b/doc/source/stdlib/detail/function-typemacro_boost-infer_struct_aliases-0x62f823d768318fa5.rst deleted file mode 100644 index 42d533e1b6..0000000000 --- a/doc/source/stdlib/detail/function-typemacro_boost-infer_struct_aliases-0x62f823d768318fa5.rst +++ /dev/null @@ -1 +0,0 @@ -Infers structure alias types for all template arguments from a structure definition. diff --git a/doc/source/stdlib/detail/function-typemacro_boost-infer_template_types-0x6b9504bdcdfb49e0.rst b/doc/source/stdlib/detail/function-typemacro_boost-infer_template_types-0x6b9504bdcdfb49e0.rst deleted file mode 100644 index 50fa2c00a7..0000000000 --- a/doc/source/stdlib/detail/function-typemacro_boost-infer_template_types-0x6b9504bdcdfb49e0.rst +++ /dev/null @@ -1 +0,0 @@ -Infers and validates template argument types against a pass argument, returning the resolved type. diff --git a/doc/source/stdlib/detail/function-typemacro_boost-int64_to_enum-0xb329576f15617c62.rst b/doc/source/stdlib/detail/function-typemacro_boost-int64_to_enum-0xb329576f15617c62.rst deleted file mode 100644 index ae4ad9b4c3..0000000000 --- a/doc/source/stdlib/detail/function-typemacro_boost-int64_to_enum-0xb329576f15617c62.rst +++ /dev/null @@ -1 +0,0 @@ -Converts an int64 value to the specified enum type via reinterpret cast. diff --git a/doc/source/stdlib/detail/function-typemacro_boost-is_custom_work_done-0xdd682cd4b0218df.rst b/doc/source/stdlib/detail/function-typemacro_boost-is_custom_work_done-0xdd682cd4b0218df.rst deleted file mode 100644 index 4c4828180f..0000000000 --- a/doc/source/stdlib/detail/function-typemacro_boost-is_custom_work_done-0xdd682cd4b0218df.rst +++ /dev/null @@ -1 +0,0 @@ -Returns true if custom work has already been performed on the template structure. diff --git a/doc/source/stdlib/detail/function-typemacro_boost-is_typemacro_template_instance-0x202c47714a3d959b.rst b/doc/source/stdlib/detail/function-typemacro_boost-is_typemacro_template_instance-0x202c47714a3d959b.rst deleted file mode 100644 index ca5d7b5991..0000000000 --- a/doc/source/stdlib/detail/function-typemacro_boost-is_typemacro_template_instance-0x202c47714a3d959b.rst +++ /dev/null @@ -1 +0,0 @@ -template instance is determined by having parent == template.parent diff --git a/doc/source/stdlib/detail/function-typemacro_boost-make_typemacro_template_instance-0x7d3d6e21a6335442.rst b/doc/source/stdlib/detail/function-typemacro_boost-make_typemacro_template_instance-0x7d3d6e21a6335442.rst deleted file mode 100644 index fd07aa30f0..0000000000 --- a/doc/source/stdlib/detail/function-typemacro_boost-make_typemacro_template_instance-0x7d3d6e21a6335442.rst +++ /dev/null @@ -1 +0,0 @@ -Annotates a structure as a typemacro template instance of the given template type. diff --git a/doc/source/stdlib/detail/function-typemacro_boost-mark_custom_work_done-0x886dbd95ecf9e7fa.rst b/doc/source/stdlib/detail/function-typemacro_boost-mark_custom_work_done-0x886dbd95ecf9e7fa.rst deleted file mode 100644 index af0b49983d..0000000000 --- a/doc/source/stdlib/detail/function-typemacro_boost-mark_custom_work_done-0x886dbd95ecf9e7fa.rst +++ /dev/null @@ -1 +0,0 @@ -Marks the template structure's custom work as complete in its annotation. diff --git a/doc/source/stdlib/detail/function-typemacro_boost-template_structure_name-0xf61df8860f12ad24.rst b/doc/source/stdlib/detail/function-typemacro_boost-template_structure_name-0xf61df8860f12ad24.rst deleted file mode 100644 index a8fc101f27..0000000000 --- a/doc/source/stdlib/detail/function-typemacro_boost-template_structure_name-0xf61df8860f12ad24.rst +++ /dev/null @@ -1 +0,0 @@ -Builds a mangled template structure name from its base name and argument types. diff --git a/doc/source/stdlib/detail/function-typemacro_boost-typemacro_argument-0x278212e4a29dbe02.rst b/doc/source/stdlib/detail/function-typemacro_boost-typemacro_argument-0x278212e4a29dbe02.rst deleted file mode 100644 index 5c1c03ee97..0000000000 --- a/doc/source/stdlib/detail/function-typemacro_boost-typemacro_argument-0x278212e4a29dbe02.rst +++ /dev/null @@ -1 +0,0 @@ -Extracts a string constant or function address argument at the given index from a type macro's dimension expressions. diff --git a/doc/source/stdlib/detail/function-typemacro_boost-typemacro_argument-0xcacf3c534f7cab81.rst b/doc/source/stdlib/detail/function-typemacro_boost-typemacro_argument-0xcacf3c534f7cab81.rst deleted file mode 100644 index 36264059a0..0000000000 --- a/doc/source/stdlib/detail/function-typemacro_boost-typemacro_argument-0xcacf3c534f7cab81.rst +++ /dev/null @@ -1 +0,0 @@ -Extracts a typed constant argument at the given index from a type macro's dimension expressions. diff --git a/doc/source/stdlib/detail/function-typemacro_boost-verify_arguments-0x5efed42c9ffac12e.rst b/doc/source/stdlib/detail/function-typemacro_boost-verify_arguments-0x5efed42c9ffac12e.rst deleted file mode 100644 index 1c15db3681..0000000000 --- a/doc/source/stdlib/detail/function-typemacro_boost-verify_arguments-0x5efed42c9ffac12e.rst +++ /dev/null @@ -1 +0,0 @@ -Verifies that all template arguments have been fully inferred (no remaining auto or alias types). diff --git a/doc/source/stdlib/detail/function-unroll-unroll-0x8451fbffff603cb3.rst b/doc/source/stdlib/detail/function-unroll-unroll-0x8451fbffff603cb3.rst deleted file mode 100644 index 794115b0ce..0000000000 --- a/doc/source/stdlib/detail/function-unroll-unroll-0x8451fbffff603cb3.rst +++ /dev/null @@ -1 +0,0 @@ -Unrolls the for loop (with fixed range) diff --git a/doc/source/stdlib/detail/function-uriparser_boost-fragment-0x5f7f1e9eae503e51.rst b/doc/source/stdlib/detail/function-uriparser_boost-fragment-0x5f7f1e9eae503e51.rst deleted file mode 100644 index 35c5334bc6..0000000000 --- a/doc/source/stdlib/detail/function-uriparser_boost-fragment-0x5f7f1e9eae503e51.rst +++ /dev/null @@ -1 +0,0 @@ -Return the fragment of a URI. diff --git a/doc/source/stdlib/detail/function-uriparser_boost-host-0xd1303271b69cd4b6.rst b/doc/source/stdlib/detail/function-uriparser_boost-host-0xd1303271b69cd4b6.rst deleted file mode 100644 index 470a02c7c8..0000000000 --- a/doc/source/stdlib/detail/function-uriparser_boost-host-0xd1303271b69cd4b6.rst +++ /dev/null @@ -1 +0,0 @@ -Return the host of a URI. diff --git a/doc/source/stdlib/detail/function-uriparser_boost-path-0x33514a42001cd38f.rst b/doc/source/stdlib/detail/function-uriparser_boost-path-0x33514a42001cd38f.rst deleted file mode 100644 index b96f99b4e0..0000000000 --- a/doc/source/stdlib/detail/function-uriparser_boost-path-0x33514a42001cd38f.rst +++ /dev/null @@ -1 +0,0 @@ -Return the path of a URI. diff --git a/doc/source/stdlib/detail/function-uriparser_boost-port-0x26a5f3167281264d.rst b/doc/source/stdlib/detail/function-uriparser_boost-port-0x26a5f3167281264d.rst deleted file mode 100644 index dc1cee00ad..0000000000 --- a/doc/source/stdlib/detail/function-uriparser_boost-port-0x26a5f3167281264d.rst +++ /dev/null @@ -1 +0,0 @@ -Return the port of a URI. diff --git a/doc/source/stdlib/detail/function-uriparser_boost-query-0x1b789c8d86b4d93c.rst b/doc/source/stdlib/detail/function-uriparser_boost-query-0x1b789c8d86b4d93c.rst deleted file mode 100644 index 6630ace22f..0000000000 --- a/doc/source/stdlib/detail/function-uriparser_boost-query-0x1b789c8d86b4d93c.rst +++ /dev/null @@ -1 +0,0 @@ -Return the query of a URI. diff --git a/doc/source/stdlib/detail/function-uriparser_boost-scheme-0xa5d3aba395370127.rst b/doc/source/stdlib/detail/function-uriparser_boost-scheme-0xa5d3aba395370127.rst deleted file mode 100644 index 3ec4b017a1..0000000000 --- a/doc/source/stdlib/detail/function-uriparser_boost-scheme-0xa5d3aba395370127.rst +++ /dev/null @@ -1 +0,0 @@ -Returns the scheme of a URI. diff --git a/doc/source/stdlib/detail/function-uriparser_boost-uri_compose-0x8923e21ff1988f11.rst b/doc/source/stdlib/detail/function-uriparser_boost-uri_compose-0x8923e21ff1988f11.rst deleted file mode 100644 index d47b3aac72..0000000000 --- a/doc/source/stdlib/detail/function-uriparser_boost-uri_compose-0x8923e21ff1988f11.rst +++ /dev/null @@ -1 +0,0 @@ -Compose a URI from its components. diff --git a/doc/source/stdlib/detail/function-uriparser_boost-uri_compose_query-0x6b01d7fdbed91e6d.rst b/doc/source/stdlib/detail/function-uriparser_boost-uri_compose_query-0x6b01d7fdbed91e6d.rst deleted file mode 100644 index 1543d2746e..0000000000 --- a/doc/source/stdlib/detail/function-uriparser_boost-uri_compose_query-0x6b01d7fdbed91e6d.rst +++ /dev/null @@ -1 +0,0 @@ -Compose a query string from a table of key-value pairs. diff --git a/doc/source/stdlib/detail/function-uriparser_boost-uri_compose_query_in_order-0x6144eb35c97ca144.rst b/doc/source/stdlib/detail/function-uriparser_boost-uri_compose_query_in_order-0x6144eb35c97ca144.rst deleted file mode 100644 index dde6c75989..0000000000 --- a/doc/source/stdlib/detail/function-uriparser_boost-uri_compose_query_in_order-0x6144eb35c97ca144.rst +++ /dev/null @@ -1 +0,0 @@ -Compose a query string from a table of key-value pairs, in the sorted order. diff --git a/doc/source/stdlib/detail/function-uriparser_boost-uri_split_full_path-0x36b75f6ed60e5d14.rst b/doc/source/stdlib/detail/function-uriparser_boost-uri_split_full_path-0x36b75f6ed60e5d14.rst deleted file mode 100644 index 77a41d962f..0000000000 --- a/doc/source/stdlib/detail/function-uriparser_boost-uri_split_full_path-0x36b75f6ed60e5d14.rst +++ /dev/null @@ -1 +0,0 @@ -Split the full path of a URI into its components. diff --git a/doc/source/stdlib/detail/function-uriparser_boost-user_info-0xebe675016ebc6e67.rst b/doc/source/stdlib/detail/function-uriparser_boost-user_info-0xebe675016ebc6e67.rst deleted file mode 100644 index 41542dc01d..0000000000 --- a/doc/source/stdlib/detail/function-uriparser_boost-user_info-0xebe675016ebc6e67.rst +++ /dev/null @@ -1 +0,0 @@ -Return the user info of a URI. diff --git a/doc/source/stdlib/detail/function-utf8_utils-contains_utf8_bom-0x5bd957db87460665.rst b/doc/source/stdlib/detail/function-utf8_utils-contains_utf8_bom-0x5bd957db87460665.rst deleted file mode 100644 index 236b65b5ba..0000000000 --- a/doc/source/stdlib/detail/function-utf8_utils-contains_utf8_bom-0x5bd957db87460665.rst +++ /dev/null @@ -1 +0,0 @@ -Returns true if the byte array starts with a UTF-8 BOM (byte order mark). diff --git a/doc/source/stdlib/detail/function-utf8_utils-contains_utf8_bom-0xf749642b9629daa7.rst b/doc/source/stdlib/detail/function-utf8_utils-contains_utf8_bom-0xf749642b9629daa7.rst deleted file mode 100644 index 5b1586dc97..0000000000 --- a/doc/source/stdlib/detail/function-utf8_utils-contains_utf8_bom-0xf749642b9629daa7.rst +++ /dev/null @@ -1 +0,0 @@ -Returns true if the string starts with a UTF-8 BOM (byte order mark). diff --git a/doc/source/stdlib/detail/function-utf8_utils-decode_unicode_escape-0xb8b396646ee69cae.rst b/doc/source/stdlib/detail/function-utf8_utils-decode_unicode_escape-0xb8b396646ee69cae.rst deleted file mode 100644 index 40e64a0baa..0000000000 --- a/doc/source/stdlib/detail/function-utf8_utils-decode_unicode_escape-0xb8b396646ee69cae.rst +++ /dev/null @@ -1 +0,0 @@ -Decodes Unicode escape sequences (backslash followed by hex digits) in a string to UTF-8. diff --git a/doc/source/stdlib/detail/function-utf8_utils-is_first_byte_of_utf8_char-0xde083daff4aefb23.rst b/doc/source/stdlib/detail/function-utf8_utils-is_first_byte_of_utf8_char-0xde083daff4aefb23.rst deleted file mode 100644 index 4640a675d0..0000000000 --- a/doc/source/stdlib/detail/function-utf8_utils-is_first_byte_of_utf8_char-0xde083daff4aefb23.rst +++ /dev/null @@ -1 +0,0 @@ -Returns true if the given byte is the first byte of a UTF-8 character. diff --git a/doc/source/stdlib/detail/function-utf8_utils-is_utf8_string_valid-0x2dcc5c1b2e5f2a36.rst b/doc/source/stdlib/detail/function-utf8_utils-is_utf8_string_valid-0x2dcc5c1b2e5f2a36.rst deleted file mode 100644 index 959a6611d6..0000000000 --- a/doc/source/stdlib/detail/function-utf8_utils-is_utf8_string_valid-0x2dcc5c1b2e5f2a36.rst +++ /dev/null @@ -1 +0,0 @@ -Returns true if the byte array contains a valid UTF-8 encoded string. diff --git a/doc/source/stdlib/detail/function-utf8_utils-is_utf8_string_valid-0xfa05575fb077659e.rst b/doc/source/stdlib/detail/function-utf8_utils-is_utf8_string_valid-0xfa05575fb077659e.rst deleted file mode 100644 index 20b8640dbe..0000000000 --- a/doc/source/stdlib/detail/function-utf8_utils-is_utf8_string_valid-0xfa05575fb077659e.rst +++ /dev/null @@ -1 +0,0 @@ -Returns true if the string contains valid UTF-8 encoded data. diff --git a/doc/source/stdlib/detail/function-utf8_utils-utf16_to_utf32-0xce3eab4402448264.rst b/doc/source/stdlib/detail/function-utf8_utils-utf16_to_utf32-0xce3eab4402448264.rst deleted file mode 100644 index d37247e01a..0000000000 --- a/doc/source/stdlib/detail/function-utf8_utils-utf16_to_utf32-0xce3eab4402448264.rst +++ /dev/null @@ -1 +0,0 @@ -Converts a UTF-16 surrogate pair to a single UTF-32 codepoint. diff --git a/doc/source/stdlib/detail/function-utf8_utils-utf8_decode-0x399043b0e0d8718.rst b/doc/source/stdlib/detail/function-utf8_utils-utf8_decode-0x399043b0e0d8718.rst deleted file mode 100644 index 111699a247..0000000000 --- a/doc/source/stdlib/detail/function-utf8_utils-utf8_decode-0x399043b0e0d8718.rst +++ /dev/null @@ -1 +0,0 @@ -Converts UTF-8 string to UTF-32 and appends it to the array of codepoints (UTF-32 string) diff --git a/doc/source/stdlib/detail/function-utf8_utils-utf8_decode-0x8c04c7b7c5927f9a.rst b/doc/source/stdlib/detail/function-utf8_utils-utf8_decode-0x8c04c7b7c5927f9a.rst deleted file mode 100644 index 3b8bc21c36..0000000000 --- a/doc/source/stdlib/detail/function-utf8_utils-utf8_decode-0x8c04c7b7c5927f9a.rst +++ /dev/null @@ -1 +0,0 @@ -Converts UTF-8 string to UTF-32 and returns it as an array of codepoints (UTF-32 string) diff --git a/doc/source/stdlib/detail/function-utf8_utils-utf8_decode-0xe62c46ac67e499d8.rst b/doc/source/stdlib/detail/function-utf8_utils-utf8_decode-0xe62c46ac67e499d8.rst deleted file mode 100644 index 111699a247..0000000000 --- a/doc/source/stdlib/detail/function-utf8_utils-utf8_decode-0xe62c46ac67e499d8.rst +++ /dev/null @@ -1 +0,0 @@ -Converts UTF-8 string to UTF-32 and appends it to the array of codepoints (UTF-32 string) diff --git a/doc/source/stdlib/detail/function-utf8_utils-utf8_decode-0xf8a03b2f3e4a772a.rst b/doc/source/stdlib/detail/function-utf8_utils-utf8_decode-0xf8a03b2f3e4a772a.rst deleted file mode 100644 index 3b8bc21c36..0000000000 --- a/doc/source/stdlib/detail/function-utf8_utils-utf8_decode-0xf8a03b2f3e4a772a.rst +++ /dev/null @@ -1 +0,0 @@ -Converts UTF-8 string to UTF-32 and returns it as an array of codepoints (UTF-32 string) diff --git a/doc/source/stdlib/detail/function-utf8_utils-utf8_encode-0x2e9e8af11e0210a0.rst b/doc/source/stdlib/detail/function-utf8_utils-utf8_encode-0x2e9e8af11e0210a0.rst deleted file mode 100644 index 4be94345de..0000000000 --- a/doc/source/stdlib/detail/function-utf8_utils-utf8_encode-0x2e9e8af11e0210a0.rst +++ /dev/null @@ -1 +0,0 @@ -Converts UTF-32 string to UTF-8 and appends it to the UTF-8 byte array diff --git a/doc/source/stdlib/detail/function-utf8_utils-utf8_encode-0x9fc52fdca230fdbb.rst b/doc/source/stdlib/detail/function-utf8_utils-utf8_encode-0x9fc52fdca230fdbb.rst deleted file mode 100644 index 81626b9428..0000000000 --- a/doc/source/stdlib/detail/function-utf8_utils-utf8_encode-0x9fc52fdca230fdbb.rst +++ /dev/null @@ -1 +0,0 @@ -Converts UTF-32 string to UTF-8 and returns it as a UTF-8 byte array diff --git a/doc/source/stdlib/detail/function-utf8_utils-utf8_encode-0xc0e9f22c47d59cf6.rst b/doc/source/stdlib/detail/function-utf8_utils-utf8_encode-0xc0e9f22c47d59cf6.rst deleted file mode 100644 index d89cce16be..0000000000 --- a/doc/source/stdlib/detail/function-utf8_utils-utf8_encode-0xc0e9f22c47d59cf6.rst +++ /dev/null @@ -1 +0,0 @@ -Converts a codepoint (UTF-32 symbol) to the UTF-8 byte array diff --git a/doc/source/stdlib/detail/function-utf8_utils-utf8_encode-0xcd206dd52018f617.rst b/doc/source/stdlib/detail/function-utf8_utils-utf8_encode-0xcd206dd52018f617.rst deleted file mode 100644 index 771c01558f..0000000000 --- a/doc/source/stdlib/detail/function-utf8_utils-utf8_encode-0xcd206dd52018f617.rst +++ /dev/null @@ -1 +0,0 @@ -Converts a codepoint (UTF-32 symbol) to UTF-8 and appends it to the UTF-8 byte array diff --git a/doc/source/stdlib/detail/function-utf8_utils-utf8_length-0x2fd396d00481261d.rst b/doc/source/stdlib/detail/function-utf8_utils-utf8_length-0x2fd396d00481261d.rst deleted file mode 100644 index f69ed78676..0000000000 --- a/doc/source/stdlib/detail/function-utf8_utils-utf8_length-0x2fd396d00481261d.rst +++ /dev/null @@ -1 +0,0 @@ -Returns the number of characters in the UTF-8 string diff --git a/doc/source/stdlib/detail/function-utf8_utils-utf8_length-0x96633a0a72c60f2f.rst b/doc/source/stdlib/detail/function-utf8_utils-utf8_length-0x96633a0a72c60f2f.rst deleted file mode 100644 index f69ed78676..0000000000 --- a/doc/source/stdlib/detail/function-utf8_utils-utf8_length-0x96633a0a72c60f2f.rst +++ /dev/null @@ -1 +0,0 @@ -Returns the number of characters in the UTF-8 string diff --git a/doc/source/stdlib/detail/function_annotation-apply-apply.rst b/doc/source/stdlib/detail/function_annotation-apply-apply.rst deleted file mode 100644 index cb6615a6d8..0000000000 --- a/doc/source/stdlib/detail/function_annotation-apply-apply.rst +++ /dev/null @@ -1,14 +0,0 @@ -This macro implements the ``apply()`` pattern. For each field in a structure, variant, or tuple, -the block is invoked with the field name and value. An optional third block argument receives -per-field annotations as ``array>``. - -.. code-block:: das - - struct Bar { - x, y : float - } - apply(Bar(x=1.0, y=2.0)) $(name, field) { - print("{name} = {field} ") - } - -Would print ``x = 1 y = 2`` diff --git a/doc/source/stdlib/detail/function_annotation-apply_in_context-apply_in_context.rst b/doc/source/stdlib/detail/function_annotation-apply_in_context-apply_in_context.rst deleted file mode 100644 index 23f586b5e9..0000000000 --- a/doc/source/stdlib/detail/function_annotation-apply_in_context-apply_in_context.rst +++ /dev/null @@ -1,11 +0,0 @@ -[apply_in_context] function annotation. -Function is modified, so that it is called in the debug agent context, specified in the annotation. -If specified context is not installed, panic is called. - -For example:: - - [apply_in_context(opengl_cache)] - def public cache_font(name:string implicit) : Font? - ... - ... - let font = cache_font("Arial") // call invoked in the "opengl_cache" debug agent context diff --git a/doc/source/stdlib/detail/function_annotation-assert_once-AssertOnceMacro.rst b/doc/source/stdlib/detail/function_annotation-assert_once-AssertOnceMacro.rst deleted file mode 100644 index c6b6fa0efd..0000000000 --- a/doc/source/stdlib/detail/function_annotation-assert_once-AssertOnceMacro.rst +++ /dev/null @@ -1,6 +0,0 @@ -This macro convert assert_once(expr,message) to the following code:: - - var __assert_once_I = true // this is a global variable - if __assert_once_I && !expr - __assert_once_I = false - assert(false,message) diff --git a/doc/source/stdlib/detail/function_annotation-async_boost-AwaitCoroutineMacro.rst b/doc/source/stdlib/detail/function_annotation-async_boost-AwaitCoroutineMacro.rst deleted file mode 100644 index ffaf90db30..0000000000 --- a/doc/source/stdlib/detail/function_annotation-async_boost-AwaitCoroutineMacro.rst +++ /dev/null @@ -1,6 +0,0 @@ -This macro converts await() expression into:: - - for t in THAT - yield t - -The idea is that coroutine or generator can continuously yield from another sub-coroutine or generator. diff --git a/doc/source/stdlib/detail/function_annotation-async_boost-AwaitMacro.rst b/doc/source/stdlib/detail/function_annotation-async_boost-AwaitMacro.rst deleted file mode 100644 index a1988d707d..0000000000 --- a/doc/source/stdlib/detail/function_annotation-async_boost-AwaitMacro.rst +++ /dev/null @@ -1 +0,0 @@ -Function annotation that implements coroutine await semantics. diff --git a/doc/source/stdlib/detail/function_annotation-async_boost-async.rst b/doc/source/stdlib/detail/function_annotation-async_boost-async.rst deleted file mode 100644 index cba571a761..0000000000 --- a/doc/source/stdlib/detail/function_annotation-async_boost-async.rst +++ /dev/null @@ -1,4 +0,0 @@ -This macro converts function into generator. -Generator yields bool if its a void function (coroutine), and yields the return type otherwise (async return). -async function can wait for another async function using await(). -use 'return false' to immediately return from the generator. diff --git a/doc/source/stdlib/detail/function_annotation-bitfield_trait-EachBitNameBitfieldMacro.rst b/doc/source/stdlib/detail/function_annotation-bitfield_trait-EachBitNameBitfieldMacro.rst deleted file mode 100644 index 6b71b7dbb3..0000000000 --- a/doc/source/stdlib/detail/function_annotation-bitfield_trait-EachBitNameBitfieldMacro.rst +++ /dev/null @@ -1,6 +0,0 @@ -This macro converts each(bitfield) to the following code:: - generator() <| - yield "field1" - yield "field2" - ... - return false diff --git a/doc/source/stdlib/detail/function_annotation-bitfield_trait-EachBitfieldMacro.rst b/doc/source/stdlib/detail/function_annotation-bitfield_trait-EachBitfieldMacro.rst deleted file mode 100644 index 47691b62eb..0000000000 --- a/doc/source/stdlib/detail/function_annotation-bitfield_trait-EachBitfieldMacro.rst +++ /dev/null @@ -1,6 +0,0 @@ -This macro converts each(bitfield) to the following code:: - generator() <| - yield field1 - yield field2 - ... - return false diff --git a/doc/source/stdlib/detail/function_annotation-class_boost-class_method.rst b/doc/source/stdlib/detail/function_annotation-class_boost-class_method.rst deleted file mode 100644 index 8b8c47f844..0000000000 --- a/doc/source/stdlib/detail/function_annotation-class_boost-class_method.rst +++ /dev/null @@ -1,3 +0,0 @@ -Turns a static method into a class method by adding a ``self`` argument -of the class type as the first argument, and wrapping the function body -in ``with (self) { ... }``. Applied via ``[class_method]`` annotation. diff --git a/doc/source/stdlib/detail/function_annotation-class_boost-explicit_const_class_method.rst b/doc/source/stdlib/detail/function_annotation-class_boost-explicit_const_class_method.rst deleted file mode 100644 index 557fcead63..0000000000 --- a/doc/source/stdlib/detail/function_annotation-class_boost-explicit_const_class_method.rst +++ /dev/null @@ -1,2 +0,0 @@ -Same as ``[class_method]`` but marks the ``self`` parameter with ``explicitConst``, -allowing overloading of const and non-const class methods. diff --git a/doc/source/stdlib/detail/function_annotation-constant_expression-constant_expression.rst b/doc/source/stdlib/detail/function_annotation-constant_expression-constant_expression.rst deleted file mode 100644 index 2dee77701d..0000000000 --- a/doc/source/stdlib/detail/function_annotation-constant_expression-constant_expression.rst +++ /dev/null @@ -1,10 +0,0 @@ -This function annotation implements constant expression folding for the given arguments. -When argument is specified in the annotation, and is passed as a constant expression, -custom version of the function is generated, and an argument is substituted with a constant value. -This allows using of static_if expression on the said arguments, as well as other optimizations. -For example:: - - [constant_expression(constString)] - def take_const_arg(constString:string) - print("constant string is = {constString}\n") // note - constString here is not an argument - diff --git a/doc/source/stdlib/detail/function_annotation-constant_expression-constexpr.rst b/doc/source/stdlib/detail/function_annotation-constant_expression-constexpr.rst deleted file mode 100644 index 8a4239ba29..0000000000 --- a/doc/source/stdlib/detail/function_annotation-constant_expression-constexpr.rst +++ /dev/null @@ -1,10 +0,0 @@ -This macro implements a constexpr function argument checker. Given list of arguments to verify, it will fail for every one where non-constant expression is passed. For example:: - - [constexpr (a)] - def foo ( t:string; a : int ) - print("{t} = {a}\n") - var BOO = 13 - [export] - def main - foo("blah", 1) - foo("ouch", BOO) // compilation error: `a is not a constexpr, BOO` diff --git a/doc/source/stdlib/detail/function_annotation-consume-consume.rst b/doc/source/stdlib/detail/function_annotation-consume-consume.rst deleted file mode 100644 index 7c8551dedd..0000000000 --- a/doc/source/stdlib/detail/function_annotation-consume-consume.rst +++ /dev/null @@ -1,2 +0,0 @@ -This annotation ensures that all arguments to the function are passed as moved values. -For example [consume(a,b)] ensures that both a and b are passed as moved values. diff --git a/doc/source/stdlib/detail/function_annotation-contracts-expect_any_array.rst b/doc/source/stdlib/detail/function_annotation-contracts-expect_any_array.rst deleted file mode 100644 index 485d5a2fdc..0000000000 --- a/doc/source/stdlib/detail/function_annotation-contracts-expect_any_array.rst +++ /dev/null @@ -1 +0,0 @@ -[expect_any_array(argname)] contract, which only accepts array, T[], or das`vector diff --git a/doc/source/stdlib/detail/function_annotation-contracts-expect_any_bitfield.rst b/doc/source/stdlib/detail/function_annotation-contracts-expect_any_bitfield.rst deleted file mode 100644 index ea6f2e98b4..0000000000 --- a/doc/source/stdlib/detail/function_annotation-contracts-expect_any_bitfield.rst +++ /dev/null @@ -1 +0,0 @@ -[expect_any_bitfield(argname)] contract, which only accepts bitfields diff --git a/doc/source/stdlib/detail/function_annotation-contracts-expect_any_enum.rst b/doc/source/stdlib/detail/function_annotation-contracts-expect_any_enum.rst deleted file mode 100644 index 30f0040cb1..0000000000 --- a/doc/source/stdlib/detail/function_annotation-contracts-expect_any_enum.rst +++ /dev/null @@ -1 +0,0 @@ -[expect_any_enum(argname)] contract, which only accepts enumerations diff --git a/doc/source/stdlib/detail/function_annotation-contracts-expect_any_function.rst b/doc/source/stdlib/detail/function_annotation-contracts-expect_any_function.rst deleted file mode 100644 index 36df9bbf9e..0000000000 --- a/doc/source/stdlib/detail/function_annotation-contracts-expect_any_function.rst +++ /dev/null @@ -1 +0,0 @@ -[expect_any_function(argname)] contract, which only accepts functions diff --git a/doc/source/stdlib/detail/function_annotation-contracts-expect_any_lambda.rst b/doc/source/stdlib/detail/function_annotation-contracts-expect_any_lambda.rst deleted file mode 100644 index 213b48c2e8..0000000000 --- a/doc/source/stdlib/detail/function_annotation-contracts-expect_any_lambda.rst +++ /dev/null @@ -1 +0,0 @@ -[expect_any_lambda(argname)] contract, which only accepts lambdas diff --git a/doc/source/stdlib/detail/function_annotation-contracts-expect_any_numeric.rst b/doc/source/stdlib/detail/function_annotation-contracts-expect_any_numeric.rst deleted file mode 100644 index 69753de71d..0000000000 --- a/doc/source/stdlib/detail/function_annotation-contracts-expect_any_numeric.rst +++ /dev/null @@ -1 +0,0 @@ -[expect_any_numeric(argname)] contract, which only accepts numeric types (int, float, etc) diff --git a/doc/source/stdlib/detail/function_annotation-contracts-expect_any_struct.rst b/doc/source/stdlib/detail/function_annotation-contracts-expect_any_struct.rst deleted file mode 100644 index 14fda1fc27..0000000000 --- a/doc/source/stdlib/detail/function_annotation-contracts-expect_any_struct.rst +++ /dev/null @@ -1 +0,0 @@ -[expect_any_struct(argname)] contract, which only accepts structs (but not classes) diff --git a/doc/source/stdlib/detail/function_annotation-contracts-expect_any_tuple.rst b/doc/source/stdlib/detail/function_annotation-contracts-expect_any_tuple.rst deleted file mode 100644 index be43f9d172..0000000000 --- a/doc/source/stdlib/detail/function_annotation-contracts-expect_any_tuple.rst +++ /dev/null @@ -1 +0,0 @@ -[expect_any_tuple(argname)] contract, which only accepts tuples diff --git a/doc/source/stdlib/detail/function_annotation-contracts-expect_any_variant.rst b/doc/source/stdlib/detail/function_annotation-contracts-expect_any_variant.rst deleted file mode 100644 index 61150b90a2..0000000000 --- a/doc/source/stdlib/detail/function_annotation-contracts-expect_any_variant.rst +++ /dev/null @@ -1 +0,0 @@ -[expect_any_variant(argname)] contract, which only accepts variants diff --git a/doc/source/stdlib/detail/function_annotation-contracts-expect_any_vector_type.rst b/doc/source/stdlib/detail/function_annotation-contracts-expect_any_vector_type.rst deleted file mode 100644 index 6d9760f8c6..0000000000 --- a/doc/source/stdlib/detail/function_annotation-contracts-expect_any_vector_type.rst +++ /dev/null @@ -1 +0,0 @@ -[expect_any_vector_type(argname)] contract, which only accepts vector types, i.e. int2, float3, range, etc diff --git a/doc/source/stdlib/detail/function_annotation-contracts-expect_any_workhorse.rst b/doc/source/stdlib/detail/function_annotation-contracts-expect_any_workhorse.rst deleted file mode 100644 index f42d29ea4e..0000000000 --- a/doc/source/stdlib/detail/function_annotation-contracts-expect_any_workhorse.rst +++ /dev/null @@ -1,2 +0,0 @@ -[expect_any_workhorse(argname)] contract, which only accepts workhorse types (int, float, etc) -Workhorse types are: bool,int*,uint*,float*,double,range and urange, range64 and urange64, string,enumeration,and non-smart pointers diff --git a/doc/source/stdlib/detail/function_annotation-contracts-expect_any_workhorse_raw.rst b/doc/source/stdlib/detail/function_annotation-contracts-expect_any_workhorse_raw.rst deleted file mode 100644 index 20579a363e..0000000000 --- a/doc/source/stdlib/detail/function_annotation-contracts-expect_any_workhorse_raw.rst +++ /dev/null @@ -1 +0,0 @@ -[expect_any_workhorse_raw(argname)] contract, which only accepts workhorse types which are raw (not pointer or bool) diff --git a/doc/source/stdlib/detail/function_annotation-contracts-expect_class.rst b/doc/source/stdlib/detail/function_annotation-contracts-expect_class.rst deleted file mode 100644 index 40373b1361..0000000000 --- a/doc/source/stdlib/detail/function_annotation-contracts-expect_class.rst +++ /dev/null @@ -1 +0,0 @@ -[expect_class(argname)] contract, which only accepts class instances diff --git a/doc/source/stdlib/detail/function_annotation-contracts-expect_pointer.rst b/doc/source/stdlib/detail/function_annotation-contracts-expect_pointer.rst deleted file mode 100644 index 4db6b68e3e..0000000000 --- a/doc/source/stdlib/detail/function_annotation-contracts-expect_pointer.rst +++ /dev/null @@ -1 +0,0 @@ -[expect_pointer(argname)] contract, which only accepts pointers diff --git a/doc/source/stdlib/detail/function_annotation-contracts-expect_ref.rst b/doc/source/stdlib/detail/function_annotation-contracts-expect_ref.rst deleted file mode 100644 index df701e99bf..0000000000 --- a/doc/source/stdlib/detail/function_annotation-contracts-expect_ref.rst +++ /dev/null @@ -1 +0,0 @@ -[expect_ref(argname)] contract, which only accepts references diff --git a/doc/source/stdlib/detail/function_annotation-contracts-expect_value_handle.rst b/doc/source/stdlib/detail/function_annotation-contracts-expect_value_handle.rst deleted file mode 100644 index 4a8fee65dc..0000000000 --- a/doc/source/stdlib/detail/function_annotation-contracts-expect_value_handle.rst +++ /dev/null @@ -1 +0,0 @@ -[expect_value_handle(argname)] contract, which only accepts value handles diff --git a/doc/source/stdlib/detail/function_annotation-coroutines-co_await.rst b/doc/source/stdlib/detail/function_annotation-coroutines-co_await.rst deleted file mode 100644 index c3775e2db0..0000000000 --- a/doc/source/stdlib/detail/function_annotation-coroutines-co_await.rst +++ /dev/null @@ -1,6 +0,0 @@ -This macro converts co_await(sub_coroutine) into:: - - for t in subroutine - yield t - -The idea is that coroutine or generator can wait for a sub-coroutine to finish. diff --git a/doc/source/stdlib/detail/function_annotation-coroutines-co_continue.rst b/doc/source/stdlib/detail/function_annotation-coroutines-co_continue.rst deleted file mode 100644 index 417f64db91..0000000000 --- a/doc/source/stdlib/detail/function_annotation-coroutines-co_continue.rst +++ /dev/null @@ -1,3 +0,0 @@ -This macro converts co_continue to yield true. -The idea is that coroutine without specified type is underneath a coroutine which yields bool. -That way co_continue() does not distract from the fact that it is a generator. diff --git a/doc/source/stdlib/detail/function_annotation-coroutines-coroutine.rst b/doc/source/stdlib/detail/function_annotation-coroutines-coroutine.rst deleted file mode 100644 index aaef9cb342..0000000000 --- a/doc/source/stdlib/detail/function_annotation-coroutines-coroutine.rst +++ /dev/null @@ -1,5 +0,0 @@ -This macro converts coroutine function into generator, adds return false. -Daslang implementation of coroutine is generator based. Function is converted into a state machine, -which can be resumed and suspended. The function is converted into a generator. -Generator yields bool if its a void coroutine, and yields the return type otherwise. -If return type is specified coroutine can serve as an advanced form of a generator. diff --git a/doc/source/stdlib/detail/function_annotation-coroutines-yeild_from.rst b/doc/source/stdlib/detail/function_annotation-coroutines-yeild_from.rst deleted file mode 100644 index 47b00ece0c..0000000000 --- a/doc/source/stdlib/detail/function_annotation-coroutines-yeild_from.rst +++ /dev/null @@ -1,6 +0,0 @@ -This macro converts yield_from(THAT) expression into:: - - for t in THAT - yield t - -The idea is that coroutine or generator can continuously yield from another sub-coroutine or generator. diff --git a/doc/source/stdlib/detail/function_annotation-decs_boost-REQUIRE.rst b/doc/source/stdlib/detail/function_annotation-decs_boost-REQUIRE.rst deleted file mode 100644 index 668954b746..0000000000 --- a/doc/source/stdlib/detail/function_annotation-decs_boost-REQUIRE.rst +++ /dev/null @@ -1 +0,0 @@ -This annotation provides list of required components for entity. diff --git a/doc/source/stdlib/detail/function_annotation-decs_boost-REQUIRE_NOT.rst b/doc/source/stdlib/detail/function_annotation-decs_boost-REQUIRE_NOT.rst deleted file mode 100644 index 57c1acf94a..0000000000 --- a/doc/source/stdlib/detail/function_annotation-decs_boost-REQUIRE_NOT.rst +++ /dev/null @@ -1 +0,0 @@ -This annotation provides list of components, which are required to not be part of the entity. diff --git a/doc/source/stdlib/detail/function_annotation-decs_boost-decs.rst b/doc/source/stdlib/detail/function_annotation-decs_boost-decs.rst deleted file mode 100644 index e2e2c02e8a..0000000000 --- a/doc/source/stdlib/detail/function_annotation-decs_boost-decs.rst +++ /dev/null @@ -1,8 +0,0 @@ -This macro converts a function into a DECS pass stage query. Possible arguments are `stage`, `REQUIRE`, and `REQUIRE_NOT`. -It has all other properties of a `query` (like ability to operate on templates). For example:: - - [decs(stage=update_ai, REQUIRE=ai_turret)] - def update_ai ( eid:EntityId; var turret:Turret; pos:float3 ) - ... - -In the example above a query is added to the `update_ai` stage. The query also requires that each entity passed to it has an `ai_turret` property. diff --git a/doc/source/stdlib/detail/function_annotation-decs_boost-find_query.rst b/doc/source/stdlib/detail/function_annotation-decs_boost-find_query.rst deleted file mode 100644 index c7026f4fe1..0000000000 --- a/doc/source/stdlib/detail/function_annotation-decs_boost-find_query.rst +++ /dev/null @@ -1,17 +0,0 @@ -This macro implements `find_query` functionality. -It is similar to `query` in most ways, with the main differences being: - -* there is no eid-based find query -* the find_query stops once the first match is found - -For example:: - - let found = find_query <| $ ( pos,dim:float3; obstacle:Obstacle ) - if !obstacle.wall - return false - let aabb = [[AABB min=pos-dim*0.5, max=pos+dim*0.5 ]] - if is_intersecting(ray, aabb, 0.1, dist) - return true - -In the example above the find_query will return `true` once the first intersection is found. -Note: if return is missing, or end of find_query block is reached - its assumed that find_query did not find anything, and will return false. diff --git a/doc/source/stdlib/detail/function_annotation-decs_boost-from_decs.rst b/doc/source/stdlib/detail/function_annotation-decs_boost-from_decs.rst deleted file mode 100644 index 656a1cb5f0..0000000000 --- a/doc/source/stdlib/detail/function_annotation-decs_boost-from_decs.rst +++ /dev/null @@ -1,16 +0,0 @@ -This macro converts a DECS query into an iterator>. For example:: - - let it = from_decs($(index:int; text:string){}) - for (item in it) { - // process item - print("Entity {item.index}: {item.text}\n") - } - -Internally it generates the following code:: - - let it = invoke($() { - var res : array> - query($(index:int; text:string) { - res |> push((index, text)) - }) - return res.to_sequence() diff --git a/doc/source/stdlib/detail/function_annotation-decs_boost-query.rst b/doc/source/stdlib/detail/function_annotation-decs_boost-query.rst deleted file mode 100644 index 6673e8ecbb..0000000000 --- a/doc/source/stdlib/detail/function_annotation-decs_boost-query.rst +++ /dev/null @@ -1,47 +0,0 @@ -This macro implements `query` functionality. There are 2 types of queries: - -* query(...) - returns a list of entities matching the query -* query(eid) - returns a single entity matching the eid - -For example:: - - query() <| $ ( eid:EntityId; pos, vel : float3 ) - print("[{eid}] pos={pos} vel={vel}\n") - -The query above will print all entities with position and velocity. -Here is another example:: - - query(kaboom) <| $ ( var pos:float3&; vel:float3; col:uint=13u ) - pos += vel - -The query above will add the velocity to the position of an entity with eid kaboom. - -Query can have `REQUIRE` and `REQUIRE_NOT` clauses:: - - var average : float3 - query <| $ [REQUIRE(tank)] ( pos:float3 ) - average += pos - -The query above will add `pos` components of all entities, which also have a `tank` component. - -Additionally queries can automatically expand components of entities. For example:: - - [decs_template(prefix="particle")] - struct Particle - pos, vel : float3 - ... - query <| $ ( var q : Particle ) - q.pos += q.vel // this is actually particlepos += particlevel - - -In the example above structure q : Particle does not exist as a variable. Instead it is expanded into accessing individual components of the entity. -REQURE section of the query is automatically filled with all components of the template. -If template prefix is not specified, prefix is taken from the name of the template (would be ``Particle_``). -Specifying empty prefix `[decs_template(prefix)]` will result in no prefix being added. - -Note: apart from tagging structure as a template, the macro also generates `apply_decs_template` and `remove_decs_template` functions. -`apply_decs_template` is used to add template to an entity, and `remove_decs_template` is used to remove all components of the template from the entity:: - - for i in range(3) - create_entity <| @ ( eid, cmp ) - apply_decs_template(cmp, [[Particle pos=float3(i), vel=float3(i+1)]]) diff --git a/doc/source/stdlib/detail/function_annotation-defer-DeferMacro.rst b/doc/source/stdlib/detail/function_annotation-defer-DeferMacro.rst deleted file mode 100644 index e7301ff697..0000000000 --- a/doc/source/stdlib/detail/function_annotation-defer-DeferMacro.rst +++ /dev/null @@ -1,2 +0,0 @@ -This macro converts defer() <| block expression -into {}, and move block to the finally section of the current block diff --git a/doc/source/stdlib/detail/function_annotation-defer-defer_delete.rst b/doc/source/stdlib/detail/function_annotation-defer-defer_delete.rst deleted file mode 100644 index 72f41e34c5..0000000000 --- a/doc/source/stdlib/detail/function_annotation-defer-defer_delete.rst +++ /dev/null @@ -1,2 +0,0 @@ -This macro converts defer_delete() expression -into {}, and add delete expression to the finally section of the current block diff --git a/doc/source/stdlib/detail/function_annotation-generic_return-generic_return.rst b/doc/source/stdlib/detail/function_annotation-generic_return-generic_return.rst deleted file mode 100644 index 9f9ced4ee1..0000000000 --- a/doc/source/stdlib/detail/function_annotation-generic_return-generic_return.rst +++ /dev/null @@ -1 +0,0 @@ -Replaces generic_return(expr) with a block that calls expr and returns its result, handling void, copyable, and movable return types. diff --git a/doc/source/stdlib/detail/function_annotation-if_not_null-if_not_null.rst b/doc/source/stdlib/detail/function_annotation-if_not_null-if_not_null.rst deleted file mode 100644 index 253a16ac32..0000000000 --- a/doc/source/stdlib/detail/function_annotation-if_not_null-if_not_null.rst +++ /dev/null @@ -1,10 +0,0 @@ -This macro transforms:: - - ptr |> if_not_null <| call(...) - -to:: - - var _ptr_var = ptr - if _ptr_var - call(*_ptr_var,...) - diff --git a/doc/source/stdlib/detail/function_annotation-instance_function-instance_function.rst b/doc/source/stdlib/detail/function_annotation-instance_function-instance_function.rst deleted file mode 100644 index cef5aa224c..0000000000 --- a/doc/source/stdlib/detail/function_annotation-instance_function-instance_function.rst +++ /dev/null @@ -1,7 +0,0 @@ -[instance_function(generic_name,type1=type1r,type2=type2r,...)] macro creates instance of the generic function with a particular set of types. -In the followin example body of the function inst will be replaced with body of the function print_zero with type int:: - - def print_zero ( a : auto(TT) ) - print("{[[TT]]}\n") - [export, instance_function(print_zero,TT="int")] - def inst {} diff --git a/doc/source/stdlib/detail/function_annotation-jobque_boost-NewJobMacro.rst b/doc/source/stdlib/detail/function_annotation-jobque_boost-NewJobMacro.rst deleted file mode 100644 index 4098eac0e9..0000000000 --- a/doc/source/stdlib/detail/function_annotation-jobque_boost-NewJobMacro.rst +++ /dev/null @@ -1,3 +0,0 @@ -this macro handles `new_job` and `new_thread` calls. -the call is replaced with `new_job_invoke` and `new_thread_invoke` accordingly. -a cloning infrastructure is generated for the lambda, which is invoked in the new context. diff --git a/doc/source/stdlib/detail/function_annotation-jobque_boost-ParallelForEachJobMacro.rst b/doc/source/stdlib/detail/function_annotation-jobque_boost-ParallelForEachJobMacro.rst deleted file mode 100644 index 6dbfced0a1..0000000000 --- a/doc/source/stdlib/detail/function_annotation-jobque_boost-ParallelForEachJobMacro.rst +++ /dev/null @@ -1,2 +0,0 @@ -This macro handles `parallel_for_each`. -Wraps block body in ``new_job`` and redirects to ``_parallel_for_each``. diff --git a/doc/source/stdlib/detail/function_annotation-jobque_boost-ParallelForJobMacro.rst b/doc/source/stdlib/detail/function_annotation-jobque_boost-ParallelForJobMacro.rst deleted file mode 100644 index 734e426e18..0000000000 --- a/doc/source/stdlib/detail/function_annotation-jobque_boost-ParallelForJobMacro.rst +++ /dev/null @@ -1,2 +0,0 @@ -Base macro for parallel_for, parallel_for_each, and parallel_map. -Wraps the block body in ``new_job`` and redirects to the runtime implementation. diff --git a/doc/source/stdlib/detail/function_annotation-jobque_boost-ParallelMapJobMacro.rst b/doc/source/stdlib/detail/function_annotation-jobque_boost-ParallelMapJobMacro.rst deleted file mode 100644 index 74861ae63e..0000000000 --- a/doc/source/stdlib/detail/function_annotation-jobque_boost-ParallelMapJobMacro.rst +++ /dev/null @@ -1,2 +0,0 @@ -This macro handles `parallel_map`. -Wraps block body in ``new_job`` and redirects to ``_parallel_map``. diff --git a/doc/source/stdlib/detail/function_annotation-linq_boost-_all.rst b/doc/source/stdlib/detail/function_annotation-linq_boost-_all.rst deleted file mode 100644 index 5c9d324cf4..0000000000 --- a/doc/source/stdlib/detail/function_annotation-linq_boost-_all.rst +++ /dev/null @@ -1,5 +0,0 @@ -implements _all(iterator, expression) shorthand notation -that expands into all(iterator, $(_) => expression) -for example:: - - each(foo)._all(_ < 5) diff --git a/doc/source/stdlib/detail/function_annotation-linq_boost-_any.rst b/doc/source/stdlib/detail/function_annotation-linq_boost-_any.rst deleted file mode 100644 index 9f636bf3d6..0000000000 --- a/doc/source/stdlib/detail/function_annotation-linq_boost-_any.rst +++ /dev/null @@ -1,5 +0,0 @@ -implements _any(iterator, expression) shorthand notation -that expands into any(iterator, $(_) => expression) -for example:: - - each(foo)._any(_ < 5) diff --git a/doc/source/stdlib/detail/function_annotation-linq_boost-_count.rst b/doc/source/stdlib/detail/function_annotation-linq_boost-_count.rst deleted file mode 100644 index c697af1c6a..0000000000 --- a/doc/source/stdlib/detail/function_annotation-linq_boost-_count.rst +++ /dev/null @@ -1,5 +0,0 @@ -implements _count(iterator, expression) shorthand notation -that expands into count(iterator, $(_) => expression) -for example:: - - each(foo)._count(_ > 3) diff --git a/doc/source/stdlib/detail/function_annotation-linq_boost-_distinct_by.rst b/doc/source/stdlib/detail/function_annotation-linq_boost-_distinct_by.rst deleted file mode 100644 index 3b4769863d..0000000000 --- a/doc/source/stdlib/detail/function_annotation-linq_boost-_distinct_by.rst +++ /dev/null @@ -1,5 +0,0 @@ -implements _distinct_by(iterator, expression) shorthand notation -that expands into distinct_by(iterator, $(_) => expression) -for example:: - - each(foo)._distinct_by(_.id) diff --git a/doc/source/stdlib/detail/function_annotation-linq_boost-_distinct_by_to_array.rst b/doc/source/stdlib/detail/function_annotation-linq_boost-_distinct_by_to_array.rst deleted file mode 100644 index 7bade395a8..0000000000 --- a/doc/source/stdlib/detail/function_annotation-linq_boost-_distinct_by_to_array.rst +++ /dev/null @@ -1,5 +0,0 @@ -implements _distinct_by_to_array(iterator, expression) shorthand notation -that expands into distinct_by_to_array(iterator, $(_) => expression) -for example:: - - each(foo)._distinct_by_to_array(_.id) diff --git a/doc/source/stdlib/detail/function_annotation-linq_boost-_except_by.rst b/doc/source/stdlib/detail/function_annotation-linq_boost-_except_by.rst deleted file mode 100644 index 1fa164d370..0000000000 --- a/doc/source/stdlib/detail/function_annotation-linq_boost-_except_by.rst +++ /dev/null @@ -1,5 +0,0 @@ -implements _except_by(iterator1, iterator2, expression) shorthand notation -that expands into except_by(iterator1, iterator2, $(_) => expression) -for example:: - - each(foo1)._except_by(each(foo2), _.id) diff --git a/doc/source/stdlib/detail/function_annotation-linq_boost-_except_by_to_array.rst b/doc/source/stdlib/detail/function_annotation-linq_boost-_except_by_to_array.rst deleted file mode 100644 index bccbcf2f5e..0000000000 --- a/doc/source/stdlib/detail/function_annotation-linq_boost-_except_by_to_array.rst +++ /dev/null @@ -1,5 +0,0 @@ -implements _except_by_to_array(iterator1, iterator2, expression) shorthand notation -that expands into except_by_to_array(iterator1, iterator2, $(_) => expression) -for example:: - - each(foo1)._except_by_to_array(each(foo2), _.id) diff --git a/doc/source/stdlib/detail/function_annotation-linq_boost-_fold.rst b/doc/source/stdlib/detail/function_annotation-linq_boost-_fold.rst deleted file mode 100644 index 50adfbf00a..0000000000 --- a/doc/source/stdlib/detail/function_annotation-linq_boost-_fold.rst +++ /dev/null @@ -1,6 +0,0 @@ -implements _fold(expression) that folds LINQ expressions into optimized sequnences -for example:: - - _fold(each(foo)._where(_ > 5)._select(_ * 2)) - -expands into a single comprehension that does all operations in one pass diff --git a/doc/source/stdlib/detail/function_annotation-linq_boost-_intersect_by.rst b/doc/source/stdlib/detail/function_annotation-linq_boost-_intersect_by.rst deleted file mode 100644 index 0cf91c6a9d..0000000000 --- a/doc/source/stdlib/detail/function_annotation-linq_boost-_intersect_by.rst +++ /dev/null @@ -1,5 +0,0 @@ -implements _intersect_by(iterator1, iterator2, expression) shorthand notation -that expands into intersect_by(iterator1, iterator2, $(_) => expression) -for example:: - - each(foo1)._intersect_by(each(foo2), _.id) diff --git a/doc/source/stdlib/detail/function_annotation-linq_boost-_intersect_by_to_array.rst b/doc/source/stdlib/detail/function_annotation-linq_boost-_intersect_by_to_array.rst deleted file mode 100644 index 63aa6f7c9b..0000000000 --- a/doc/source/stdlib/detail/function_annotation-linq_boost-_intersect_by_to_array.rst +++ /dev/null @@ -1,5 +0,0 @@ -implements _intersect_by_to_array(iterator1, iterator2, expression) shorthand notation -that expands into intersect_by_to_array(iterator1, iterator2, $(_) => expression) -for example:: - - each(foo1)._intersect_by_to_array(each(foo2), _.id) diff --git a/doc/source/stdlib/detail/function_annotation-linq_boost-_max_by.rst b/doc/source/stdlib/detail/function_annotation-linq_boost-_max_by.rst deleted file mode 100644 index 6c30372a31..0000000000 --- a/doc/source/stdlib/detail/function_annotation-linq_boost-_max_by.rst +++ /dev/null @@ -1,5 +0,0 @@ -implements _max_by(iterator, expression) shorthand notation -that expands into max_by(iterator, $(_) => expression) -for example:: - - each(foo)._max_by(_.value) diff --git a/doc/source/stdlib/detail/function_annotation-linq_boost-_min_by.rst b/doc/source/stdlib/detail/function_annotation-linq_boost-_min_by.rst deleted file mode 100644 index 6bce2fb451..0000000000 --- a/doc/source/stdlib/detail/function_annotation-linq_boost-_min_by.rst +++ /dev/null @@ -1,5 +0,0 @@ -implements _min_by(iterator, expression) shorthand notation -that expands into min_by(iterator, $(_) => expression) -for example:: - - each(foo)._min_by(_.value) diff --git a/doc/source/stdlib/detail/function_annotation-linq_boost-_min_max_average_by.rst b/doc/source/stdlib/detail/function_annotation-linq_boost-_min_max_average_by.rst deleted file mode 100644 index 3e8838acfc..0000000000 --- a/doc/source/stdlib/detail/function_annotation-linq_boost-_min_max_average_by.rst +++ /dev/null @@ -1,5 +0,0 @@ -implements _min_max_average_by(iterator, expression) shorthand notation -that expands into min_max_average_by(iterator, $(_) => expression) -for example:: - - each(foo)._min_max_average_by(_.value) diff --git a/doc/source/stdlib/detail/function_annotation-linq_boost-_min_max_by.rst b/doc/source/stdlib/detail/function_annotation-linq_boost-_min_max_by.rst deleted file mode 100644 index 470f84438d..0000000000 --- a/doc/source/stdlib/detail/function_annotation-linq_boost-_min_max_by.rst +++ /dev/null @@ -1,5 +0,0 @@ -implements _min_max_by(iterator, expression) shorthand notation -that expands into min_max_by(iterator, $(_) => expression) -for example:: - - each(foo)._min_max_by(_.value) diff --git a/doc/source/stdlib/detail/function_annotation-linq_boost-_order_by.rst b/doc/source/stdlib/detail/function_annotation-linq_boost-_order_by.rst deleted file mode 100644 index 5b9573b87f..0000000000 --- a/doc/source/stdlib/detail/function_annotation-linq_boost-_order_by.rst +++ /dev/null @@ -1,5 +0,0 @@ -implements _order_by(iterator, expression) shorthand notation -that expands into order_by(iterator, $(_) => expression) -for example:: - - each(foo)._order_by(_.id) diff --git a/doc/source/stdlib/detail/function_annotation-linq_boost-_order_by_descending.rst b/doc/source/stdlib/detail/function_annotation-linq_boost-_order_by_descending.rst deleted file mode 100644 index 936d796c7a..0000000000 --- a/doc/source/stdlib/detail/function_annotation-linq_boost-_order_by_descending.rst +++ /dev/null @@ -1,5 +0,0 @@ -implements _order_by_descending(iterator, expression) shorthand notation -that expands into order_by_descending(iterator, $(_) => expression) -for example:: - - each(foo)._order_by_descending(_.id) diff --git a/doc/source/stdlib/detail/function_annotation-linq_boost-_order_by_descending_to_array.rst b/doc/source/stdlib/detail/function_annotation-linq_boost-_order_by_descending_to_array.rst deleted file mode 100644 index 5b68db4883..0000000000 --- a/doc/source/stdlib/detail/function_annotation-linq_boost-_order_by_descending_to_array.rst +++ /dev/null @@ -1,5 +0,0 @@ -implements _order_by_descending_to_array(iterator, expression) shorthand notation -that expands into order_by_descending_to_array(iterator, $(_) => expression) -for example:: - - each(foo)._order_by_descending_to_array(_.id) diff --git a/doc/source/stdlib/detail/function_annotation-linq_boost-_order_by_to_array.rst b/doc/source/stdlib/detail/function_annotation-linq_boost-_order_by_to_array.rst deleted file mode 100644 index e72b138775..0000000000 --- a/doc/source/stdlib/detail/function_annotation-linq_boost-_order_by_to_array.rst +++ /dev/null @@ -1,5 +0,0 @@ -implements _order_by_to_array(iterator, expression) shorthand notation -that expands into order_by_to_array(iterator, $(_) => expression) -for example:: - - each(foo)._order_by_to_array(_.id) diff --git a/doc/source/stdlib/detail/function_annotation-linq_boost-_select.rst b/doc/source/stdlib/detail/function_annotation-linq_boost-_select.rst deleted file mode 100644 index 22bb9040cb..0000000000 --- a/doc/source/stdlib/detail/function_annotation-linq_boost-_select.rst +++ /dev/null @@ -1,5 +0,0 @@ -implements _select(iterator, expression) shorthand notation -that expands into select(iterator, $(_) => expression) -for example:: - - each(foo)._select(_ * 2) diff --git a/doc/source/stdlib/detail/function_annotation-linq_boost-_select_to_array.rst b/doc/source/stdlib/detail/function_annotation-linq_boost-_select_to_array.rst deleted file mode 100644 index 8c91a01c2c..0000000000 --- a/doc/source/stdlib/detail/function_annotation-linq_boost-_select_to_array.rst +++ /dev/null @@ -1,5 +0,0 @@ -implements _select_to_array(iterator, expression) shorthand notation -that expands into select_to_array(iterator, $(_) => expression) -for example:: - - each(foo)._select_to_array(_ * 2) diff --git a/doc/source/stdlib/detail/function_annotation-linq_boost-_sequence_equal_by.rst b/doc/source/stdlib/detail/function_annotation-linq_boost-_sequence_equal_by.rst deleted file mode 100644 index deed7f056c..0000000000 --- a/doc/source/stdlib/detail/function_annotation-linq_boost-_sequence_equal_by.rst +++ /dev/null @@ -1,5 +0,0 @@ -implements _sequence_equal_by(iterator1, iterator2, expression) shorthand notation -that expands into sequence_equal_by(iterator1, iterator2, $(_) => expression) -for example:: - - each(foo1)._sequence_equal_by(each(foo2), _.id) diff --git a/doc/source/stdlib/detail/function_annotation-linq_boost-_skip_while.rst b/doc/source/stdlib/detail/function_annotation-linq_boost-_skip_while.rst deleted file mode 100644 index 4682abb7dd..0000000000 --- a/doc/source/stdlib/detail/function_annotation-linq_boost-_skip_while.rst +++ /dev/null @@ -1,5 +0,0 @@ -implements _skip_while(iterator, expression) shorthand notation -that expands into skip_while(iterator, $(_) => expression) -for example:: - - each(foo)._skip_while(_ < 5) diff --git a/doc/source/stdlib/detail/function_annotation-linq_boost-_take_while.rst b/doc/source/stdlib/detail/function_annotation-linq_boost-_take_while.rst deleted file mode 100644 index 42047bc27e..0000000000 --- a/doc/source/stdlib/detail/function_annotation-linq_boost-_take_while.rst +++ /dev/null @@ -1,5 +0,0 @@ -implements _take_while(iterator, expression) shorthand notation -that expands into take_while(iterator, $(_) => expression) -for example:: - - each(foo)._take_while(_ < 5) diff --git a/doc/source/stdlib/detail/function_annotation-linq_boost-_union_by.rst b/doc/source/stdlib/detail/function_annotation-linq_boost-_union_by.rst deleted file mode 100644 index 263dc20d00..0000000000 --- a/doc/source/stdlib/detail/function_annotation-linq_boost-_union_by.rst +++ /dev/null @@ -1,5 +0,0 @@ -implements _union_by(iterator1, iterator2, expression) shorthand notation -that expands into union_by(iterator1, iterator2, $(_) => expression) -for example:: - - each(foo1)._union_by(each(foo2), _.id) diff --git a/doc/source/stdlib/detail/function_annotation-linq_boost-_union_by_to_array.rst b/doc/source/stdlib/detail/function_annotation-linq_boost-_union_by_to_array.rst deleted file mode 100644 index fc9b836be4..0000000000 --- a/doc/source/stdlib/detail/function_annotation-linq_boost-_union_by_to_array.rst +++ /dev/null @@ -1,5 +0,0 @@ -implements _union_by_to_array(iterator1, iterator2, expression) shorthand notation -that expands into union_by_to_array(iterator1, iterator2, $(_) => expression) -for example:: - - each(foo1)._union_by_to_array(each(foo2), _.id) diff --git a/doc/source/stdlib/detail/function_annotation-linq_boost-_unique_by.rst b/doc/source/stdlib/detail/function_annotation-linq_boost-_unique_by.rst deleted file mode 100644 index c263f81c3f..0000000000 --- a/doc/source/stdlib/detail/function_annotation-linq_boost-_unique_by.rst +++ /dev/null @@ -1,5 +0,0 @@ -implements _unique_by(iterator, expression) shorthand notation -that expands into unique_by(iterator, $(_) => expression) -for example:: - - each(foo)._unique_by(_.id) diff --git a/doc/source/stdlib/detail/function_annotation-linq_boost-_unique_by_to_array.rst b/doc/source/stdlib/detail/function_annotation-linq_boost-_unique_by_to_array.rst deleted file mode 100644 index fbfef91584..0000000000 --- a/doc/source/stdlib/detail/function_annotation-linq_boost-_unique_by_to_array.rst +++ /dev/null @@ -1,5 +0,0 @@ -implements _unique_by_to_array(iterator, expression) shorthand notation -that expands into unique_by_to_array(iterator, $(_) => expression) -for example:: - - each(foo)._unique_by_to_array(_.id) diff --git a/doc/source/stdlib/detail/function_annotation-linq_boost-_where.rst b/doc/source/stdlib/detail/function_annotation-linq_boost-_where.rst deleted file mode 100644 index 12b62259c6..0000000000 --- a/doc/source/stdlib/detail/function_annotation-linq_boost-_where.rst +++ /dev/null @@ -1,5 +0,0 @@ -implements _where(iterator, expression) shorthand notation -that expands into where_(iterator, $(_) => expression) -for example:: - - each(foo)._where(_ < 5) diff --git a/doc/source/stdlib/detail/function_annotation-linq_boost-_where_to_array.rst b/doc/source/stdlib/detail/function_annotation-linq_boost-_where_to_array.rst deleted file mode 100644 index a9131ed26d..0000000000 --- a/doc/source/stdlib/detail/function_annotation-linq_boost-_where_to_array.rst +++ /dev/null @@ -1,5 +0,0 @@ -implements _where_to_array(iterator, expression) shorthand notation -that expands into where_to_array(iterator, $(_) => expression) -for example:: - - each(foo)._where_to_array(_ < 5) diff --git a/doc/source/stdlib/detail/function_annotation-lpipe-lpipe.rst b/doc/source/stdlib/detail/function_annotation-lpipe-lpipe.rst deleted file mode 100644 index 8a1e89a625..0000000000 --- a/doc/source/stdlib/detail/function_annotation-lpipe-lpipe.rst +++ /dev/null @@ -1,10 +0,0 @@ -This macro will implement the lpipe function. It allows piping blocks the previous line call. For example:: - - def take2(a,b:block) - invoke(a) - invoke(b) - ... - take2 <| - print("block1\n") - lpipe <| // this block will pipe into take2 - print("block2\n") diff --git a/doc/source/stdlib/detail/function_annotation-macro_boost-MacroVerifyMacro.rst b/doc/source/stdlib/detail/function_annotation-macro_boost-MacroVerifyMacro.rst deleted file mode 100644 index fd6dc40d50..0000000000 --- a/doc/source/stdlib/detail/function_annotation-macro_boost-MacroVerifyMacro.rst +++ /dev/null @@ -1,4 +0,0 @@ -This macro convert macro_verify(expr,message,prog,at) to the following code:: - if !expr - macro_error(prog,at,message) - return [[ExpressionPtr]] diff --git a/doc/source/stdlib/detail/function_annotation-macro_boost-return_skip_lockcheck.rst b/doc/source/stdlib/detail/function_annotation-macro_boost-return_skip_lockcheck.rst deleted file mode 100644 index d5776e373a..0000000000 --- a/doc/source/stdlib/detail/function_annotation-macro_boost-return_skip_lockcheck.rst +++ /dev/null @@ -1 +0,0 @@ -this is similar to regular return <-, but it does not check for locks diff --git a/doc/source/stdlib/detail/function_annotation-match-match.rst b/doc/source/stdlib/detail/function_annotation-match-match.rst deleted file mode 100644 index 3202db9f55..0000000000 --- a/doc/source/stdlib/detail/function_annotation-match-match.rst +++ /dev/null @@ -1 +0,0 @@ -Implements `match` macro. diff --git a/doc/source/stdlib/detail/function_annotation-match-multi_match.rst b/doc/source/stdlib/detail/function_annotation-match-multi_match.rst deleted file mode 100644 index 60bc660a1a..0000000000 --- a/doc/source/stdlib/detail/function_annotation-match-multi_match.rst +++ /dev/null @@ -1 +0,0 @@ -Implements `multi_match` macro. diff --git a/doc/source/stdlib/detail/function_annotation-match-static_match.rst b/doc/source/stdlib/detail/function_annotation-match-static_match.rst deleted file mode 100644 index 47b33a89e5..0000000000 --- a/doc/source/stdlib/detail/function_annotation-match-static_match.rst +++ /dev/null @@ -1 +0,0 @@ -Implements `static_match` macro. diff --git a/doc/source/stdlib/detail/function_annotation-match-static_multi_match.rst b/doc/source/stdlib/detail/function_annotation-match-static_multi_match.rst deleted file mode 100644 index 746a8652c4..0000000000 --- a/doc/source/stdlib/detail/function_annotation-match-static_multi_match.rst +++ /dev/null @@ -1 +0,0 @@ -Implements `static_multi_match` macro. diff --git a/doc/source/stdlib/detail/function_annotation-refactor-ExtractMethodMacro.rst b/doc/source/stdlib/detail/function_annotation-refactor-ExtractMethodMacro.rst deleted file mode 100644 index f00f315ae3..0000000000 --- a/doc/source/stdlib/detail/function_annotation-refactor-ExtractMethodMacro.rst +++ /dev/null @@ -1 +0,0 @@ -Function annotation implementing extract-method refactoring. diff --git a/doc/source/stdlib/detail/function_annotation-refactor-ExtractVariableFunction.rst b/doc/source/stdlib/detail/function_annotation-refactor-ExtractVariableFunction.rst deleted file mode 100644 index b3e7842918..0000000000 --- a/doc/source/stdlib/detail/function_annotation-refactor-ExtractVariableFunction.rst +++ /dev/null @@ -1 +0,0 @@ -Function annotation for extract-variable target functions. diff --git a/doc/source/stdlib/detail/function_annotation-refactor-extract_variable.rst b/doc/source/stdlib/detail/function_annotation-refactor-extract_variable.rst deleted file mode 100644 index 578dc3daea..0000000000 --- a/doc/source/stdlib/detail/function_annotation-refactor-extract_variable.rst +++ /dev/null @@ -1 +0,0 @@ -Call macro implementing extract-variable refactoring. diff --git a/doc/source/stdlib/detail/function_annotation-remove_call_args-remove_call_args.rst b/doc/source/stdlib/detail/function_annotation-remove_call_args-remove_call_args.rst deleted file mode 100644 index c7faca0777..0000000000 --- a/doc/source/stdlib/detail/function_annotation-remove_call_args-remove_call_args.rst +++ /dev/null @@ -1 +0,0 @@ -This macro removes all arguments by given indices [remove_call_args(arg=(1,2,3))] diff --git a/doc/source/stdlib/detail/function_annotation-safe_addr-SafeAddrMacro.rst b/doc/source/stdlib/detail/function_annotation-safe_addr-SafeAddrMacro.rst deleted file mode 100644 index 61ad7f9bb1..0000000000 --- a/doc/source/stdlib/detail/function_annotation-safe_addr-SafeAddrMacro.rst +++ /dev/null @@ -1,2 +0,0 @@ -This macro reports an error if safe_addr is attempted on the object, which is not local to the scope. -I.e. if the object can `expire` while in scope, with delete, garbage collection, or on the C++ side. diff --git a/doc/source/stdlib/detail/function_annotation-safe_addr-SharedAddrMacro.rst b/doc/source/stdlib/detail/function_annotation-safe_addr-SharedAddrMacro.rst deleted file mode 100644 index 7efe121929..0000000000 --- a/doc/source/stdlib/detail/function_annotation-safe_addr-SharedAddrMacro.rst +++ /dev/null @@ -1,2 +0,0 @@ -This macro reports an error if shared_addr is attempted on anything other that shared global variables. -I.e. only global variables are safe to use with shared_addr. diff --git a/doc/source/stdlib/detail/function_annotation-safe_addr-TempValueMacro.rst b/doc/source/stdlib/detail/function_annotation-safe_addr-TempValueMacro.rst deleted file mode 100644 index 997c99c43f..0000000000 --- a/doc/source/stdlib/detail/function_annotation-safe_addr-TempValueMacro.rst +++ /dev/null @@ -1 +0,0 @@ -This macro reports an error if temp_value is attempted outside of function arguments. diff --git a/doc/source/stdlib/detail/function_annotation-soa-SoaCallMacro.rst b/doc/source/stdlib/detail/function_annotation-soa-SoaCallMacro.rst deleted file mode 100644 index dbb2a6ec4c..0000000000 --- a/doc/source/stdlib/detail/function_annotation-soa-SoaCallMacro.rst +++ /dev/null @@ -1,3 +0,0 @@ -Rewrites ``soa[index].field`` into ``soa.field[index]`` at compile time. -This is the core of the SOA access pattern — it transforms AOS-style element access -into column-wise array indexing for better cache locality. diff --git a/doc/source/stdlib/detail/function_annotation-sort_boost-qsort.rst b/doc/source/stdlib/detail/function_annotation-sort_boost-qsort.rst deleted file mode 100644 index c0e567a648..0000000000 --- a/doc/source/stdlib/detail/function_annotation-sort_boost-qsort.rst +++ /dev/null @@ -1,3 +0,0 @@ -Implements `qsort` macro. It's `qsort(value,block)`. -For the regular array<> or dim it's replaced with `sort(value,block)`. -For the handled types like das`vector its replaced with `sort(temp_array(value),block)`. diff --git a/doc/source/stdlib/detail/function_annotation-static_let-StaticLetMacro.rst b/doc/source/stdlib/detail/function_annotation-static_let-StaticLetMacro.rst deleted file mode 100644 index a7e3f7b96b..0000000000 --- a/doc/source/stdlib/detail/function_annotation-static_let-StaticLetMacro.rst +++ /dev/null @@ -1 +0,0 @@ -This macro implements the `static_let` and `static_let_finalize` functions. diff --git a/doc/source/stdlib/detail/function_annotation-temp_strings-TempStringMacro.rst b/doc/source/stdlib/detail/function_annotation-temp_strings-TempStringMacro.rst deleted file mode 100644 index 1d724bfc70..0000000000 --- a/doc/source/stdlib/detail/function_annotation-temp_strings-TempStringMacro.rst +++ /dev/null @@ -1 +0,0 @@ -Function annotation that enables temporary string optimization. diff --git a/doc/source/stdlib/detail/function_annotation-templates-decltype.rst b/doc/source/stdlib/detail/function_annotation-templates-decltype.rst deleted file mode 100644 index 7055d08e43..0000000000 --- a/doc/source/stdlib/detail/function_annotation-templates-decltype.rst +++ /dev/null @@ -1,5 +0,0 @@ -This macro returns ast::TypeDecl for the corresponding expression. For example:: - - let x = 1 - let y <- decltype(x) // [[TypeDecl() baseType==Type tInt, flags=TypeDeclFlags constant | TypeDeclFlags ref]] - diff --git a/doc/source/stdlib/detail/function_annotation-templates-decltype_noref.rst b/doc/source/stdlib/detail/function_annotation-templates-decltype_noref.rst deleted file mode 100644 index cd2039ab46..0000000000 --- a/doc/source/stdlib/detail/function_annotation-templates-decltype_noref.rst +++ /dev/null @@ -1 +0,0 @@ -This macro returns TypeDecl for the corresponding expression, minus the ref (&) portion. diff --git a/doc/source/stdlib/detail/function_annotation-templates-template.rst b/doc/source/stdlib/detail/function_annotation-templates-template.rst deleted file mode 100644 index f677f21227..0000000000 --- a/doc/source/stdlib/detail/function_annotation-templates-template.rst +++ /dev/null @@ -1,11 +0,0 @@ -This macro is used to remove unused (template) arguments from the instantiation of the generic function. -When [template(x)] is specified, the argument x is removed from the function call, but the type of the instance remains. -The call where the function is instanciated is adjusted as well. -For example:: - - [template (a), sideeffects] - def boo ( x : int; a : auto(TT) ) // when boo(1,type) - return "{x}_{typeinfo(typename type)}" - ... - boo(1,type) // will be replaced with boo(1). instace will print "1_int" - diff --git a/doc/source/stdlib/detail/function_annotation-templates_boost-qmacro.rst b/doc/source/stdlib/detail/function_annotation-templates_boost-qmacro.rst deleted file mode 100644 index a5a21f4f94..0000000000 --- a/doc/source/stdlib/detail/function_annotation-templates_boost-qmacro.rst +++ /dev/null @@ -1 +0,0 @@ -This macro implements expression reification 'qmacro' diff --git a/doc/source/stdlib/detail/function_annotation-templates_boost-qmacro_block.rst b/doc/source/stdlib/detail/function_annotation-templates_boost-qmacro_block.rst deleted file mode 100644 index 95db0bf036..0000000000 --- a/doc/source/stdlib/detail/function_annotation-templates_boost-qmacro_block.rst +++ /dev/null @@ -1 +0,0 @@ -This macro implements expression block reification 'qmacro_block' diff --git a/doc/source/stdlib/detail/function_annotation-templates_boost-qmacro_block_to_array.rst b/doc/source/stdlib/detail/function_annotation-templates_boost-qmacro_block_to_array.rst deleted file mode 100644 index 3848b93d1e..0000000000 --- a/doc/source/stdlib/detail/function_annotation-templates_boost-qmacro_block_to_array.rst +++ /dev/null @@ -1 +0,0 @@ -This macro implements expression block to array reification 'qmacro_block_to_array' diff --git a/doc/source/stdlib/detail/function_annotation-templates_boost-qmacro_expr.rst b/doc/source/stdlib/detail/function_annotation-templates_boost-qmacro_expr.rst deleted file mode 100644 index f337db58c9..0000000000 --- a/doc/source/stdlib/detail/function_annotation-templates_boost-qmacro_expr.rst +++ /dev/null @@ -1 +0,0 @@ -This macro implements first line of the expression block reification 'qmacro_expr' diff --git a/doc/source/stdlib/detail/function_annotation-templates_boost-qmacro_function.rst b/doc/source/stdlib/detail/function_annotation-templates_boost-qmacro_function.rst deleted file mode 100644 index 16e1e83525..0000000000 --- a/doc/source/stdlib/detail/function_annotation-templates_boost-qmacro_function.rst +++ /dev/null @@ -1 +0,0 @@ -This macro implements expression reification for functions. diff --git a/doc/source/stdlib/detail/function_annotation-templates_boost-qmacro_method.rst b/doc/source/stdlib/detail/function_annotation-templates_boost-qmacro_method.rst deleted file mode 100644 index 5b048f1e4d..0000000000 --- a/doc/source/stdlib/detail/function_annotation-templates_boost-qmacro_method.rst +++ /dev/null @@ -1 +0,0 @@ -This macro implements expression reification for class methods. diff --git a/doc/source/stdlib/detail/function_annotation-templates_boost-qmacro_template_class.rst b/doc/source/stdlib/detail/function_annotation-templates_boost-qmacro_template_class.rst deleted file mode 100644 index 7101809104..0000000000 --- a/doc/source/stdlib/detail/function_annotation-templates_boost-qmacro_template_class.rst +++ /dev/null @@ -1,2 +0,0 @@ -Call macro for quoting named template class methods. -This macro implements expression reification for the named expressions (function, variable, etc.) diff --git a/doc/source/stdlib/detail/function_annotation-templates_boost-qmacro_template_function.rst b/doc/source/stdlib/detail/function_annotation-templates_boost-qmacro_template_function.rst deleted file mode 100644 index 3dc28f95c4..0000000000 --- a/doc/source/stdlib/detail/function_annotation-templates_boost-qmacro_template_function.rst +++ /dev/null @@ -1,2 +0,0 @@ -Call macro for quoting named template functions. -This macro implements expression reification for the named expressions (function, variable, etc.) diff --git a/doc/source/stdlib/detail/function_annotation-templates_boost-qmacro_type.rst b/doc/source/stdlib/detail/function_annotation-templates_boost-qmacro_type.rst deleted file mode 100644 index 15c2826fd6..0000000000 --- a/doc/source/stdlib/detail/function_annotation-templates_boost-qmacro_type.rst +++ /dev/null @@ -1 +0,0 @@ -This macro implements type declaration reification 'qmacro_type' diff --git a/doc/source/stdlib/detail/function_annotation-templates_boost-qmacro_variable.rst b/doc/source/stdlib/detail/function_annotation-templates_boost-qmacro_variable.rst deleted file mode 100644 index 823966c66f..0000000000 --- a/doc/source/stdlib/detail/function_annotation-templates_boost-qmacro_variable.rst +++ /dev/null @@ -1 +0,0 @@ -This macro implements expression reification for variables. diff --git a/doc/source/stdlib/detail/function_annotation-type_traits-is_subclass_of.rst b/doc/source/stdlib/detail/function_annotation-type_traits-is_subclass_of.rst deleted file mode 100644 index 79bd8e5df3..0000000000 --- a/doc/source/stdlib/detail/function_annotation-type_traits-is_subclass_of.rst +++ /dev/null @@ -1 +0,0 @@ -Converts to 'true' if the first type is a subclass of the second type. diff --git a/doc/source/stdlib/detail/function_annotation-typemacro_boost-typemacro_function.rst b/doc/source/stdlib/detail/function_annotation-typemacro_boost-typemacro_function.rst deleted file mode 100644 index 6d725380f2..0000000000 --- a/doc/source/stdlib/detail/function_annotation-typemacro_boost-typemacro_function.rst +++ /dev/null @@ -1 +0,0 @@ -This macro converts function into a type macro. diff --git a/doc/source/stdlib/detail/function_annotation-typemacro_boost-typemacro_template_function.rst b/doc/source/stdlib/detail/function_annotation-typemacro_boost-typemacro_template_function.rst deleted file mode 100644 index 75a9aa4bd6..0000000000 --- a/doc/source/stdlib/detail/function_annotation-typemacro_boost-typemacro_template_function.rst +++ /dev/null @@ -1,3 +0,0 @@ -This one converts function into a type macro that uses template arguments. -For example [typemacro_template(TFlatHashTable)] def makeFlatHashTable ( macroArgument, passArgument : TypeDeclPtr; KeyType, ValueType : TypeDeclPtr; hashFunctionName : string) : TypeDeclPtr { ... } -We generate the body that handles template argument inference and instantiation. diff --git a/doc/source/stdlib/detail/function_annotation-unroll-UnrollMacro.rst b/doc/source/stdlib/detail/function_annotation-unroll-UnrollMacro.rst deleted file mode 100644 index bdb552a2d1..0000000000 --- a/doc/source/stdlib/detail/function_annotation-unroll-UnrollMacro.rst +++ /dev/null @@ -1,9 +0,0 @@ -This macro implements loop unrolling in the form of `unroll` function. -Unroll function expects block with the single for loop in it. -Moveover only range for is supported, and only with the fixed range. -For example::: - - var n : float4[9] - unroll <| // contents of the loop will be replaced with 9 image load instructions. - for i in range(9) - n[i] = imageLoad(c_bloom_htex, xy + int2(0,i-4)) diff --git a/doc/source/stdlib/detail/function_annotation-validate_code-verify_completion.rst b/doc/source/stdlib/detail/function_annotation-validate_code-verify_completion.rst deleted file mode 100644 index 20dbcfcf92..0000000000 --- a/doc/source/stdlib/detail/function_annotation-validate_code-verify_completion.rst +++ /dev/null @@ -1,4 +0,0 @@ -Verify that the function completes without infinite loops or recursion -This annotation checks for potential infinite loops and recursive calls -within the annotated function. If any are detected, a compile-time error -is generated, preventing the code from compiling. diff --git a/doc/source/stdlib/detail/functional.rst b/doc/source/stdlib/detail/functional.rst deleted file mode 100644 index 50408faee0..0000000000 --- a/doc/source/stdlib/detail/functional.rst +++ /dev/null @@ -1,58 +0,0 @@ -.. |detail/function-functional-filter| replace:: to be documented in |detail/function-functional-filter|.rst - -.. |detail/function-functional-map| replace:: to be documented in |detail/function-functional-map|.rst - -.. |detail/function-functional-reduce| replace:: to be documented in |detail/function-functional-reduce|.rst - -.. |detail/function-functional-sum| replace:: to be documented in |detail/function-functional-sum|.rst - -.. |detail/function-functional-any| replace:: to be documented in |detail/function-functional-any|.rst - -.. |detail/function-functional-all| replace:: to be documented in |detail/function-functional-all|.rst - -.. |detail/function-functional-cycle| replace:: to be documented in |detail/function-functional-cycle|.rst - -.. |detail/function-functional-islice| replace:: to be documented in |detail/function-functional-islice|.rst - -.. |detail/function-functional-repeat_ref| replace:: to be documented in |detail/function-functional-repeat_ref|.rst - -.. |detail/function-functional-repeat| replace:: to be documented in |detail/function-functional-repeat|.rst - -.. |detail/function-functional-is_equal| replace:: to be documented in |detail/function-functional-is_equal|.rst - -.. |detail/function-functional-is_not_equal| replace:: to be documented in |detail/function-functional-is_not_equal|.rst - -.. |detail/function-functional-not| replace:: to be documented in |detail/function-functional-not|.rst - -.. |detail/function-functional-echo| replace:: to be documented in |detail/function-functional-echo|.rst - -.. |detail/function-functional-flatten| replace:: to be documented in |detail/function-functional-flatten|.rst - -.. |detail/function-functional-sorted| replace:: to be documented in |detail/function-functional-sorted|.rst - -.. |detail/function-functional-reduce_or_default| replace:: to be documented in |detail/function-functional-reduce_or_default|.rst - -.. |detail/function-functional-fold| replace:: to be documented in |detail/function-functional-fold|.rst - -.. |detail/function-functional-scan| replace:: to be documented in |detail/function-functional-scan|.rst - -.. |detail/function-functional-enumerate| replace:: to be documented in |detail/function-functional-enumerate|.rst - -.. |detail/function-functional-for_each| replace:: to be documented in |detail/function-functional-for_each|.rst - -.. |detail/function-functional-find| replace:: to be documented in |detail/function-functional-find|.rst - -.. |detail/function-functional-find_index| replace:: to be documented in |detail/function-functional-find_index|.rst - -.. |detail/function-functional-partition| replace:: to be documented in |detail/function-functional-partition|.rst - -.. |detail/function-functional-tap| replace:: to be documented in |detail/function-functional-tap|.rst - -.. |detail/function-functional-iterate| replace:: to be documented in |detail/function-functional-iterate|.rst - -.. |detail/function-functional-chain| replace:: to be documented in |detail/function-functional-chain|.rst - -.. |detail/function-functional-pairwise| replace:: to be documented in |detail/function-functional-pairwise|.rst - -.. |detail/function-functional-flat_map| replace:: to be documented in |detail/function-functional-flat_map|.rst - diff --git a/doc/source/stdlib/detail/fuzzer.rst b/doc/source/stdlib/detail/fuzzer.rst deleted file mode 100644 index 02bc580176..0000000000 --- a/doc/source/stdlib/detail/fuzzer.rst +++ /dev/null @@ -1,54 +0,0 @@ -.. |detail/function-fuzzer-fuzz| replace:: to be documented in |detail/function-fuzzer-fuzz|.rst - -.. |detail/function-fuzzer-fuzz_debug| replace:: to be documented in |detail/function-fuzzer-fuzz_debug|.rst - -.. |detail/function-fuzzer-fuzz_numeric_and_vector_op1| replace:: to be documented in |detail/function-fuzzer-fuzz_numeric_and_vector_op1|.rst - -.. |detail/function-fuzzer-fuzz_numeric_and_vector_signed_op1| replace:: to be documented in |detail/function-fuzzer-fuzz_numeric_and_vector_signed_op1|.rst - -.. |detail/function-fuzzer-fuzz_numeric_op1| replace:: to be documented in |detail/function-fuzzer-fuzz_numeric_op1|.rst - -.. |detail/function-fuzzer-fuzz_numeric_and_storage_op1| replace:: to be documented in |detail/function-fuzzer-fuzz_numeric_and_storage_op1|.rst - -.. |detail/function-fuzzer-fuzz_all_ints_op1| replace:: to be documented in |detail/function-fuzzer-fuzz_all_ints_op1|.rst - -.. |detail/function-fuzzer-fuzz_all_unsigned_ints_op1| replace:: to be documented in |detail/function-fuzzer-fuzz_all_unsigned_ints_op1|.rst - -.. |detail/function-fuzzer-fuzz_float_double_or_float_vec_op1| replace:: to be documented in |detail/function-fuzzer-fuzz_float_double_or_float_vec_op1|.rst - -.. |detail/function-fuzzer-fuzz_float_or_float_vec_op1| replace:: to be documented in |detail/function-fuzzer-fuzz_float_or_float_vec_op1|.rst - -.. |detail/function-fuzzer-fuzz_float_or_float_vec_op2| replace:: to be documented in |detail/function-fuzzer-fuzz_float_or_float_vec_op2|.rst - -.. |detail/function-fuzzer-fuzz_float_double_or_float_vec_op2| replace:: to be documented in |detail/function-fuzzer-fuzz_float_double_or_float_vec_op2|.rst - -.. |detail/function-fuzzer-fuzz_numeric_and_vector_op2| replace:: to be documented in |detail/function-fuzzer-fuzz_numeric_and_vector_op2|.rst - -.. |detail/function-fuzzer-fuzz_numeric_and_vector_op2_no_unint_vec| replace:: to be documented in |detail/function-fuzzer-fuzz_numeric_and_vector_op2_no_unint_vec|.rst - -.. |detail/function-fuzzer-fuzz_numeric_op2| replace:: to be documented in |detail/function-fuzzer-fuzz_numeric_op2|.rst - -.. |detail/function-fuzzer-fuzz_compareable_op2| replace:: to be documented in |detail/function-fuzzer-fuzz_compareable_op2|.rst - -.. |detail/function-fuzzer-fuzz_eq_neq_op2| replace:: to be documented in |detail/function-fuzzer-fuzz_eq_neq_op2|.rst - -.. |detail/function-fuzzer-fuzz_numeric_vec_scal_op2| replace:: to be documented in |detail/function-fuzzer-fuzz_numeric_vec_scal_op2|.rst - -.. |detail/function-fuzzer-fuzz_numeric_scal_vec_op2| replace:: to be documented in |detail/function-fuzzer-fuzz_numeric_scal_vec_op2|.rst - -.. |detail/function-fuzzer-fuzz_int_vector_op2| replace:: to be documented in |detail/function-fuzzer-fuzz_int_vector_op2|.rst - -.. |detail/function-fuzzer-fuzz_shift_op2| replace:: to be documented in |detail/function-fuzzer-fuzz_shift_op2|.rst - -.. |detail/function-fuzzer-fuzz_rotate_op2| replace:: to be documented in |detail/function-fuzzer-fuzz_rotate_op2|.rst - -.. |detail/function-fuzzer-fuzz_numeric_op3| replace:: to be documented in |detail/function-fuzzer-fuzz_numeric_op3|.rst - -.. |detail/function-fuzzer-fuzz_vec_op3| replace:: to be documented in |detail/function-fuzzer-fuzz_vec_op3|.rst - -.. |detail/function-fuzzer-fuzz_vec_mad_op3| replace:: to be documented in |detail/function-fuzzer-fuzz_vec_mad_op3|.rst - -.. |detail/function-fuzzer-fuzz_float_double_or_float_vec_op3| replace:: to be documented in |detail/function-fuzzer-fuzz_float_double_or_float_vec_op3|.rst - -.. |detail/function-fuzzer-fuzz_numeric_op4| replace:: to be documented in |detail/function-fuzzer-fuzz_numeric_op4|.rst - diff --git a/doc/source/stdlib/detail/generic_return.rst b/doc/source/stdlib/detail/generic_return.rst deleted file mode 100644 index 077145cb57..0000000000 --- a/doc/source/stdlib/detail/generic_return.rst +++ /dev/null @@ -1,4 +0,0 @@ -.. |detail/class-generic_return-GenericReturn| replace:: to be documented in |detail/class-generic_return-GenericReturn|.rst - -.. |detail/method-generic_return-GenericReturn.visit| replace:: to be documented in |detail/method-generic_return-GenericReturn.visit|.rst - diff --git a/doc/source/stdlib/detail/if_not_null.rst b/doc/source/stdlib/detail/if_not_null.rst deleted file mode 100644 index 609da2f493..0000000000 --- a/doc/source/stdlib/detail/if_not_null.rst +++ /dev/null @@ -1,4 +0,0 @@ -.. |detail/class-if_not_null-ApplyMacro| replace:: to be documented in |detail/class-if_not_null-ApplyMacro|.rst - -.. |detail/method-if_not_null-ApplyMacro.visit| replace:: to be documented in |detail/method-if_not_null-ApplyMacro.visit|.rst - diff --git a/doc/source/stdlib/detail/instance_function.rst b/doc/source/stdlib/detail/instance_function.rst deleted file mode 100644 index 3ca4883d0c..0000000000 --- a/doc/source/stdlib/detail/instance_function.rst +++ /dev/null @@ -1,4 +0,0 @@ -.. |detail/class-instance_function-InstanceFunctionAnnotation| replace:: to be documented in |detail/class-instance_function-InstanceFunctionAnnotation|.rst - -.. |detail/method-instance_function-InstanceFunctionAnnotation.apply| replace:: to be documented in |detail/method-instance_function-InstanceFunctionAnnotation.apply|.rst - diff --git a/doc/source/stdlib/detail/interfaces.rst b/doc/source/stdlib/detail/interfaces.rst deleted file mode 100644 index 9674952c81..0000000000 --- a/doc/source/stdlib/detail/interfaces.rst +++ /dev/null @@ -1,18 +0,0 @@ -.. |detail/class-interfaces-InterfaceMacro| replace:: to be documented in |detail/class-interfaces-InterfaceMacro|.rst - -.. |detail/method-interfaces-InterfaceMacro.finish| replace:: to be documented in |detail/method-interfaces-InterfaceMacro.finish|.rst - -.. |detail/class-interfaces-ImplementsMacro| replace:: to be documented in |detail/class-interfaces-ImplementsMacro|.rst - -.. |detail/method-interfaces-ImplementsMacro.apply| replace:: to be documented in |detail/method-interfaces-ImplementsMacro.apply|.rst - -.. |detail/method-interfaces-ImplementsMacro.finish| replace:: to be documented in |detail/method-interfaces-ImplementsMacro.finish|.rst - -.. |detail/class-interfaces-InterfaceAsIs| replace:: to be documented in |detail/class-interfaces-InterfaceAsIs|.rst - -.. |detail/method-interfaces-InterfaceAsIs.visitExprIsVariant| replace:: to be documented in |detail/method-interfaces-InterfaceAsIs.visitExprIsVariant|.rst - -.. |detail/method-interfaces-InterfaceAsIs.visitExprAsVariant| replace:: to be documented in |detail/method-interfaces-InterfaceAsIs.visitExprAsVariant|.rst - -.. |detail/method-interfaces-InterfaceAsIs.visitExprSafeAsVariant| replace:: to be documented in |detail/method-interfaces-InterfaceAsIs.visitExprSafeAsVariant|.rst - diff --git a/doc/source/stdlib/detail/is_local.rst b/doc/source/stdlib/detail/is_local.rst deleted file mode 100644 index 5b1870f710..0000000000 --- a/doc/source/stdlib/detail/is_local.rst +++ /dev/null @@ -1,10 +0,0 @@ -.. |detail/function-is_local-is_temp_safe| replace:: to be documented in |detail/function-is_local-is_temp_safe|.rst - -.. |detail/function-is_local-is_shared_expr| replace:: to be documented in |detail/function-is_local-is_shared_expr|.rst - -.. |detail/function-is_local-is_local_expr| replace:: to be documented in |detail/function-is_local-is_local_expr|.rst - -.. |detail/function-is_local-is_local_or_global_expr| replace:: to be documented in |detail/function-is_local-is_local_or_global_expr|.rst - -.. |detail/function-is_local-is_scope_expr| replace:: to be documented in |detail/function-is_local-is_scope_expr|.rst - diff --git a/doc/source/stdlib/detail/jobque.rst b/doc/source/stdlib/detail/jobque.rst deleted file mode 100644 index f29bebeb6d..0000000000 --- a/doc/source/stdlib/detail/jobque.rst +++ /dev/null @@ -1,74 +0,0 @@ -.. |handmade/function-jobque-atomic32_create| replace:: to be documented in |handmade/function-jobque-atomic32_create|.rst - -.. |handmade/function-jobque-atomic32_remove| replace:: to be documented in |handmade/function-jobque-atomic32_remove|.rst - -.. |handmade/function-jobque-with_atomic32| replace:: to be documented in |handmade/function-jobque-with_atomic32|.rst - -.. |handmade/function-jobque-set| replace:: to be documented in |handmade/function-jobque-set|.rst - -.. |handmade/function-jobque-get| replace:: to be documented in |handmade/function-jobque-get|.rst - -.. |handmade/function-jobque-inc| replace:: to be documented in |handmade/function-jobque-inc|.rst - -.. |handmade/function-jobque-dec| replace:: to be documented in |handmade/function-jobque-dec|.rst - -.. |handmade/function-jobque-atomic64_create| replace:: to be documented in |handmade/function-jobque-atomic64_create|.rst - -.. |handmade/function-jobque-atomic64_remove| replace:: to be documented in |handmade/function-jobque-atomic64_remove|.rst - -.. |handmade/function-jobque-with_atomic64| replace:: to be documented in |handmade/function-jobque-with_atomic64|.rst - -.. |handmade/function-jobque-lock_box_create| replace:: to be documented in |handmade/function-jobque-lock_box_create|.rst - -.. |handmade/function-jobque-lock_box_remove| replace:: to be documented in |handmade/function-jobque-lock_box_remove|.rst - -.. |handmade/function-jobque-with_lock_box| replace:: to be documented in |handmade/function-jobque-with_lock_box|.rst - -.. |handmade/function-jobque-append| replace:: to be documented in |handmade/function-jobque-append|.rst - -.. |handmade/function-jobque-with_channel| replace:: to be documented in |handmade/function-jobque-with_channel|.rst - -.. |handmade/function-jobque-channel_create| replace:: to be documented in |handmade/function-jobque-channel_create|.rst - -.. |handmade/function-jobque-channel_remove| replace:: to be documented in |handmade/function-jobque-channel_remove|.rst - -.. |handmade/function-jobque-with_job_status| replace:: to be documented in |handmade/function-jobque-with_job_status|.rst - -.. |handmade/function-jobque-add_ref| replace:: to be documented in |handmade/function-jobque-add_ref|.rst - -.. |handmade/function-jobque-release| replace:: to be documented in |handmade/function-jobque-release|.rst - -.. |handmade/function-jobque-join| replace:: to be documented in |handmade/function-jobque-join|.rst - -.. |handmade/function-jobque-notify| replace:: to be documented in |handmade/function-jobque-notify|.rst - -.. |handmade/function-jobque-notify_and_release| replace:: to be documented in |handmade/function-jobque-notify_and_release|.rst - -.. |handmade/function-jobque-job_status_create| replace:: to be documented in |handmade/function-jobque-job_status_create|.rst - -.. |handmade/function-jobque-job_status_remove| replace:: to be documented in |handmade/function-jobque-job_status_remove|.rst - -.. |handmade/function-jobque-new_job_invoke| replace:: to be documented in |handmade/function-jobque-new_job_invoke|.rst - -.. |handmade/function-jobque-with_job_que| replace:: to be documented in |handmade/function-jobque-with_job_que|.rst - -.. |handmade/function-jobque-get_total_hw_jobs| replace:: to be documented in |handmade/function-jobque-get_total_hw_jobs|.rst - -.. |handmade/function-jobque-get_total_hw_threads| replace:: to be documented in |handmade/function-jobque-get_total_hw_threads|.rst - -.. |handmade/function-jobque-new_thread_invoke| replace:: to be documented in |handmade/function-jobque-new_thread_invoke|.rst - -.. |handmade/function-jobque-new_debugger_thread| replace:: to be documented in |handmade/function-jobque-new_debugger_thread|.rst - -.. |handmade/function-jobque-is_job_que_shutting_down| replace:: to be documented in |handmade/function-jobque-is_job_que_shutting_down|.rst - -.. |handmade/structure_annotation-jobque-JobStatus| replace:: to be documented in |handmade/structure_annotation-jobque-JobStatus|.rst - -.. |handmade/structure_annotation-jobque-Channel| replace:: to be documented in |handmade/structure_annotation-jobque-Channel|.rst - -.. |handmade/structure_annotation-jobque-LockBox| replace:: to be documented in |handmade/structure_annotation-jobque-LockBox|.rst - -.. |handmade/structure_annotation-jobque-Atomic32| replace:: to be documented in |handmade/structure_annotation-jobque-Atomic32|.rst - -.. |handmade/structure_annotation-jobque-Atomic64| replace:: to be documented in |handmade/structure_annotation-jobque-Atomic64|.rst - diff --git a/doc/source/stdlib/detail/jobque_boost.rst b/doc/source/stdlib/detail/jobque_boost.rst deleted file mode 100644 index e5f8360e42..0000000000 --- a/doc/source/stdlib/detail/jobque_boost.rst +++ /dev/null @@ -1,98 +0,0 @@ -.. |detail/class-jobque_boost-NewJobMacro| replace:: to be documented in |detail/class-jobque_boost-NewJobMacro|.rst - -.. |detail/method-jobque_boost-NewJobMacro.transform| replace:: to be documented in |detail/method-jobque_boost-NewJobMacro.transform|.rst - -.. |detail/class-jobque_boost-ParallelForJobMacro| replace:: to be documented in |detail/class-jobque_boost-ParallelForJobMacro|.rst - -.. |detail/method-jobque_boost-ParallelForJobMacro.transform| replace:: to be documented in |detail/method-jobque_boost-ParallelForJobMacro.transform|.rst - -.. |detail/class-jobque_boost-ParallelForEachJobMacro| replace:: to be documented in |detail/class-jobque_boost-ParallelForEachJobMacro|.rst - -.. |detail/class-jobque_boost-ParallelMapJobMacro| replace:: to be documented in |detail/class-jobque_boost-ParallelMapJobMacro|.rst - -.. |detail/class-jobque_boost-ChannelAndStatusCapture| replace:: to be documented in |detail/class-jobque_boost-ChannelAndStatusCapture|.rst - -.. |detail/method-jobque_boost-ChannelAndStatusCapture.captureExpression| replace:: to be documented in |detail/method-jobque_boost-ChannelAndStatusCapture.captureExpression|.rst - -.. |detail/method-jobque_boost-ChannelAndStatusCapture.captureFunction| replace:: to be documented in |detail/method-jobque_boost-ChannelAndStatusCapture.captureFunction|.rst - -.. |detail/method-jobque_boost-ChannelAndStatusCapture.make_capture_call| replace:: to be documented in |detail/method-jobque_boost-ChannelAndStatusCapture.make_capture_call|.rst - -.. |detail/method-jobque_boost-ChannelAndStatusCapture.make_release_call| replace:: to be documented in |detail/method-jobque_boost-ChannelAndStatusCapture.make_release_call|.rst - -.. |detail/function-jobque_boost-new_job| replace:: to be documented in |detail/function-jobque_boost-new_job|.rst - -.. |detail/function-jobque_boost-new_thread| replace:: to be documented in |detail/function-jobque_boost-new_thread|.rst - -.. |detail/function-jobque_boost-with_wait_group| replace:: to be documented in |detail/function-jobque_boost-with_wait_group|.rst - -.. |detail/function-jobque_boost-done| replace:: to be documented in |detail/function-jobque_boost-done|.rst - -.. |detail/function-jobque_boost-_parallel_for| replace:: to be documented in |detail/function-jobque_boost-_parallel_for|.rst - -.. |detail/function-jobque_boost-parallel_for| replace:: to be documented in |detail/function-jobque_boost-parallel_for|.rst - -.. |detail/function-jobque_boost-capture_jobque_channel| replace:: to be documented in |detail/function-jobque_boost-capture_jobque_channel|.rst - -.. |detail/function-jobque_boost-capture_jobque_job_status| replace:: to be documented in |detail/function-jobque_boost-capture_jobque_job_status|.rst - -.. |detail/function-jobque_boost-capture_jobque_lock_box| replace:: to be documented in |detail/function-jobque_boost-capture_jobque_lock_box|.rst - -.. |detail/function-jobque_boost-release_capture_jobque_channel| replace:: to be documented in |detail/function-jobque_boost-release_capture_jobque_channel|.rst - -.. |detail/function-jobque_boost-release_capture_jobque_job_status| replace:: to be documented in |detail/function-jobque_boost-release_capture_jobque_job_status|.rst - -.. |detail/function-jobque_boost-release_capture_jobque_lock_box| replace:: to be documented in |detail/function-jobque_boost-release_capture_jobque_lock_box|.rst - -.. |detail/function-jobque_boost-gather| replace:: to be documented in |detail/function-jobque_boost-gather|.rst - -.. |detail/function-jobque_boost-gather_ex| replace:: to be documented in |detail/function-jobque_boost-gather_ex|.rst - -.. |detail/function-jobque_boost-gather_and_forward| replace:: to be documented in |detail/function-jobque_boost-gather_and_forward|.rst - -.. |detail/function-jobque_boost-peek| replace:: to be documented in |detail/function-jobque_boost-peek|.rst - -.. |detail/function-jobque_boost-for_each| replace:: to be documented in |detail/function-jobque_boost-for_each|.rst - -.. |detail/function-jobque_boost-for_each_clone| replace:: to be documented in |detail/function-jobque_boost-for_each_clone|.rst - -.. |detail/function-jobque_boost-pop_one| replace:: to be documented in |detail/function-jobque_boost-pop_one|.rst - -.. |detail/function-jobque_boost-pop_and_clone_one| replace:: to be documented in |detail/function-jobque_boost-pop_and_clone_one|.rst - -.. |detail/function-jobque_boost-try_pop| replace:: to be documented in |detail/function-jobque_boost-try_pop|.rst - -.. |detail/function-jobque_boost-try_pop_clone| replace:: to be documented in |detail/function-jobque_boost-try_pop_clone|.rst - -.. |detail/function-jobque_boost-pop_with_timeout| replace:: to be documented in |detail/function-jobque_boost-pop_with_timeout|.rst - -.. |detail/function-jobque_boost-pop_with_timeout_clone| replace:: to be documented in |detail/function-jobque_boost-pop_with_timeout_clone|.rst - -.. |detail/function-jobque_boost-push_clone| replace:: to be documented in |detail/function-jobque_boost-push_clone|.rst - -.. |detail/function-jobque_boost-push| replace:: to be documented in |detail/function-jobque_boost-push|.rst - -.. |detail/function-jobque_boost-push_batch_clone| replace:: to be documented in |detail/function-jobque_boost-push_batch_clone|.rst - -.. |detail/function-jobque_boost-push_batch| replace:: to be documented in |detail/function-jobque_boost-push_batch|.rst - -.. |detail/function-jobque_boost-set| replace:: to be documented in |detail/function-jobque_boost-set|.rst - -.. |detail/function-jobque_boost-get| replace:: to be documented in |detail/function-jobque_boost-get|.rst - -.. |detail/function-jobque_boost-update| replace:: to be documented in |detail/function-jobque_boost-update|.rst - -.. |detail/function-jobque_boost-clear| replace:: to be documented in |detail/function-jobque_boost-clear|.rst - -.. |detail/function-jobque_boost-each| replace:: to be documented in |detail/function-jobque_boost-each|.rst - -.. |detail/function-jobque_boost-each_clone| replace:: to be documented in |detail/function-jobque_boost-each_clone|.rst - -.. |detail/function-jobque_boost-_parallel_for_each| replace:: to be documented in |detail/function-jobque_boost-_parallel_for_each|.rst - -.. |detail/function-jobque_boost-parallel_for_each| replace:: to be documented in |detail/function-jobque_boost-parallel_for_each|.rst - -.. |detail/function-jobque_boost-_parallel_map| replace:: to be documented in |detail/function-jobque_boost-_parallel_map|.rst - -.. |detail/function-jobque_boost-parallel_map| replace:: to be documented in |detail/function-jobque_boost-parallel_map|.rst - diff --git a/doc/source/stdlib/detail/json.rst b/doc/source/stdlib/detail/json.rst deleted file mode 100644 index 6745f4e8e2..0000000000 --- a/doc/source/stdlib/detail/json.rst +++ /dev/null @@ -1,24 +0,0 @@ -.. |detail/typedef-json-JsValue| replace:: to be documented in |detail/typedef-json-JsValue|.rst - -.. |detail/typedef-json-Token| replace:: to be documented in |detail/typedef-json-Token|.rst - -.. |detail/structure-json-JsonValue| replace:: to be documented in |detail/structure-json-JsonValue|.rst - -.. |detail/structure-json-TokenAt| replace:: to be documented in |detail/structure-json-TokenAt|.rst - -.. |detail/function-json-JVNull| replace:: to be documented in |detail/function-json-JVNull|.rst - -.. |detail/function-json-JV| replace:: to be documented in |detail/function-json-JV|.rst - -.. |detail/function-json-read_json| replace:: to be documented in |detail/function-json-read_json|.rst - -.. |detail/function-json-set_no_trailing_zeros| replace:: to be documented in |detail/function-json-set_no_trailing_zeros|.rst - -.. |detail/function-json-set_no_empty_arrays| replace:: to be documented in |detail/function-json-set_no_empty_arrays|.rst - -.. |detail/function-json-set_allow_duplicate_keys| replace:: to be documented in |detail/function-json-set_allow_duplicate_keys|.rst - -.. |detail/function-json-write_json| replace:: to be documented in |detail/function-json-write_json|.rst - -.. |detail/function-json-try_fixing_broken_json| replace:: to be documented in |detail/function-json-try_fixing_broken_json|.rst - diff --git a/doc/source/stdlib/detail/json_boost.rst b/doc/source/stdlib/detail/json_boost.rst deleted file mode 100644 index 33fa59158a..0000000000 --- a/doc/source/stdlib/detail/json_boost.rst +++ /dev/null @@ -1,30 +0,0 @@ -.. |detail/class-json_boost-BetterJsonMacro| replace:: to be documented in |detail/class-json_boost-BetterJsonMacro|.rst - -.. |detail/method-json_boost-BetterJsonMacro.visitExprIsVariant| replace:: to be documented in |detail/method-json_boost-BetterJsonMacro.visitExprIsVariant|.rst - -.. |detail/method-json_boost-BetterJsonMacro.visitExprAsVariant| replace:: to be documented in |detail/method-json_boost-BetterJsonMacro.visitExprAsVariant|.rst - -.. |detail/method-json_boost-BetterJsonMacro.visitExprSafeAsVariant| replace:: to be documented in |detail/method-json_boost-BetterJsonMacro.visitExprSafeAsVariant|.rst - -.. |detail/class-json_boost-JsonReader| replace:: to be documented in |detail/class-json_boost-JsonReader|.rst - -.. |detail/method-json_boost-JsonReader.accept| replace:: to be documented in |detail/method-json_boost-JsonReader.accept|.rst - -.. |detail/method-json_boost-JsonReader.visit| replace:: to be documented in |detail/method-json_boost-JsonReader.visit|.rst - -.. |detail/structure-json_boost-JsonFieldState| replace:: to be documented in |detail/structure-json_boost-JsonFieldState|.rst - -.. |detail/function-json_boost-?[]| replace:: to be documented in |detail/function-json_boost-?[]|.rst - -.. |detail/function-json_boost-?.| replace:: to be documented in |detail/function-json_boost-?.|.rst - -.. |detail/function-json_boost-??| replace:: to be documented in |detail/function-json_boost-??|.rst - -.. |detail/function-json_boost-?.`value| replace:: to be documented in |detail/function-json_boost-?.`value|.rst - -.. |detail/function-json_boost-parse_json_annotation| replace:: to be documented in |detail/function-json_boost-parse_json_annotation|.rst - -.. |detail/function-json_boost-from_JV| replace:: to be documented in |detail/function-json_boost-from_JV|.rst - -.. |detail/function-json_boost-JV| replace:: to be documented in |detail/function-json_boost-JV|.rst - diff --git a/doc/source/stdlib/detail/linq.rst b/doc/source/stdlib/detail/linq.rst deleted file mode 100644 index f8447a9e42..0000000000 --- a/doc/source/stdlib/detail/linq.rst +++ /dev/null @@ -1,234 +0,0 @@ -.. |detail/function-linq-range_sequence| replace:: to be documented in |detail/function-linq-range_sequence|.rst - -.. |detail/function-linq-to_sequence| replace:: to be documented in |detail/function-linq-to_sequence|.rst - -.. |detail/function-linq-to_sequence_move| replace:: to be documented in |detail/function-linq-to_sequence_move|.rst - -.. |detail/function-linq-to_table| replace:: to be documented in |detail/function-linq-to_table|.rst - -.. |detail/function-linq-concat| replace:: to be documented in |detail/function-linq-concat|.rst - -.. |detail/function-linq-concat_to_array| replace:: to be documented in |detail/function-linq-concat_to_array|.rst - -.. |detail/function-linq-concat_inplace| replace:: to be documented in |detail/function-linq-concat_inplace|.rst - -.. |detail/function-linq-reverse_inplace| replace:: to be documented in |detail/function-linq-reverse_inplace|.rst - -.. |detail/function-linq-reverse| replace:: to be documented in |detail/function-linq-reverse|.rst - -.. |detail/function-linq-reverse_to_array| replace:: to be documented in |detail/function-linq-reverse_to_array|.rst - -.. |detail/function-linq-order_inplace| replace:: to be documented in |detail/function-linq-order_inplace|.rst - -.. |detail/function-linq-order| replace:: to be documented in |detail/function-linq-order|.rst - -.. |detail/function-linq-order_to_array| replace:: to be documented in |detail/function-linq-order_to_array|.rst - -.. |detail/function-linq-order_descending_inplace| replace:: to be documented in |detail/function-linq-order_descending_inplace|.rst - -.. |detail/function-linq-order_descending| replace:: to be documented in |detail/function-linq-order_descending|.rst - -.. |detail/function-linq-order_descending_to_array| replace:: to be documented in |detail/function-linq-order_descending_to_array|.rst - -.. |detail/function-linq-less| replace:: to be documented in |detail/function-linq-less|.rst - -.. |detail/function-linq-order_by_inplace| replace:: to be documented in |detail/function-linq-order_by_inplace|.rst - -.. |detail/function-linq-order_by| replace:: to be documented in |detail/function-linq-order_by|.rst - -.. |detail/function-linq-order_by_to_array| replace:: to be documented in |detail/function-linq-order_by_to_array|.rst - -.. |detail/function-linq-order_by_descending_inplace| replace:: to be documented in |detail/function-linq-order_by_descending_inplace|.rst - -.. |detail/function-linq-order_by_descending| replace:: to be documented in |detail/function-linq-order_by_descending|.rst - -.. |detail/function-linq-order_by_descending_to_array| replace:: to be documented in |detail/function-linq-order_by_descending_to_array|.rst - -.. |detail/function-linq-unique_key| replace:: to be documented in |detail/function-linq-unique_key|.rst - -.. |detail/function-linq-distinct| replace:: to be documented in |detail/function-linq-distinct|.rst - -.. |detail/function-linq-distinct_to_array| replace:: to be documented in |detail/function-linq-distinct_to_array|.rst - -.. |detail/function-linq-distinct_inplace| replace:: to be documented in |detail/function-linq-distinct_inplace|.rst - -.. |detail/function-linq-distinct_by| replace:: to be documented in |detail/function-linq-distinct_by|.rst - -.. |detail/function-linq-distinct_by_to_array| replace:: to be documented in |detail/function-linq-distinct_by_to_array|.rst - -.. |detail/function-linq-distinct_by_inplace| replace:: to be documented in |detail/function-linq-distinct_by_inplace|.rst - -.. |detail/function-linq-unique| replace:: to be documented in |detail/function-linq-unique|.rst - -.. |detail/function-linq-unique_to_array| replace:: to be documented in |detail/function-linq-unique_to_array|.rst - -.. |detail/function-linq-unique_inplace| replace:: to be documented in |detail/function-linq-unique_inplace|.rst - -.. |detail/function-linq-unique_by| replace:: to be documented in |detail/function-linq-unique_by|.rst - -.. |detail/function-linq-unique_by_to_array| replace:: to be documented in |detail/function-linq-unique_by_to_array|.rst - -.. |detail/function-linq-unique_by_inplace| replace:: to be documented in |detail/function-linq-unique_by_inplace|.rst - -.. |detail/function-linq-count| replace:: to be documented in |detail/function-linq-count|.rst - -.. |detail/function-linq-long_count| replace:: to be documented in |detail/function-linq-long_count|.rst - -.. |detail/function-linq-where_| replace:: to be documented in |detail/function-linq-where_|.rst - -.. |detail/function-linq-where_to_array| replace:: to be documented in |detail/function-linq-where_to_array|.rst - -.. |detail/function-linq-skip| replace:: to be documented in |detail/function-linq-skip|.rst - -.. |detail/function-linq-skip_inplace| replace:: to be documented in |detail/function-linq-skip_inplace|.rst - -.. |detail/function-linq-skip_to_array| replace:: to be documented in |detail/function-linq-skip_to_array|.rst - -.. |detail/function-linq-skip_while| replace:: to be documented in |detail/function-linq-skip_while|.rst - -.. |detail/function-linq-skip_while_to_array| replace:: to be documented in |detail/function-linq-skip_while_to_array|.rst - -.. |detail/function-linq-take| replace:: to be documented in |detail/function-linq-take|.rst - -.. |detail/function-linq-take_inplace| replace:: to be documented in |detail/function-linq-take_inplace|.rst - -.. |detail/function-linq-take_to_array| replace:: to be documented in |detail/function-linq-take_to_array|.rst - -.. |detail/function-linq-skip_last| replace:: to be documented in |detail/function-linq-skip_last|.rst - -.. |detail/function-linq-skip_last_inplace| replace:: to be documented in |detail/function-linq-skip_last_inplace|.rst - -.. |detail/function-linq-skip_last_to_array| replace:: to be documented in |detail/function-linq-skip_last_to_array|.rst - -.. |detail/function-linq-take_last| replace:: to be documented in |detail/function-linq-take_last|.rst - -.. |detail/function-linq-take_last_inplace| replace:: to be documented in |detail/function-linq-take_last_inplace|.rst - -.. |detail/function-linq-take_last_to_array| replace:: to be documented in |detail/function-linq-take_last_to_array|.rst - -.. |detail/function-linq-take_while| replace:: to be documented in |detail/function-linq-take_while|.rst - -.. |detail/function-linq-take_while_to_array| replace:: to be documented in |detail/function-linq-take_while_to_array|.rst - -.. |detail/function-linq-min| replace:: to be documented in |detail/function-linq-min|.rst - -.. |detail/function-linq-min_by| replace:: to be documented in |detail/function-linq-min_by|.rst - -.. |detail/function-linq-max| replace:: to be documented in |detail/function-linq-max|.rst - -.. |detail/function-linq-max_by| replace:: to be documented in |detail/function-linq-max_by|.rst - -.. |detail/function-linq-min_max| replace:: to be documented in |detail/function-linq-min_max|.rst - -.. |detail/function-linq-min_max_by| replace:: to be documented in |detail/function-linq-min_max_by|.rst - -.. |detail/function-linq-aggregate| replace:: to be documented in |detail/function-linq-aggregate|.rst - -.. |detail/function-linq-sum| replace:: to be documented in |detail/function-linq-sum|.rst - -.. |detail/function-linq-average| replace:: to be documented in |detail/function-linq-average|.rst - -.. |detail/function-linq-min_max_average| replace:: to be documented in |detail/function-linq-min_max_average|.rst - -.. |detail/function-linq-min_max_average_by| replace:: to be documented in |detail/function-linq-min_max_average_by|.rst - -.. |detail/function-linq-join| replace:: to be documented in |detail/function-linq-join|.rst - -.. |detail/function-linq-join_to_array| replace:: to be documented in |detail/function-linq-join_to_array|.rst - -.. |detail/function-linq-group_join| replace:: to be documented in |detail/function-linq-group_join|.rst - -.. |detail/function-linq-group_join_to_array| replace:: to be documented in |detail/function-linq-group_join_to_array|.rst - -.. |detail/function-linq-group_by| replace:: to be documented in |detail/function-linq-group_by|.rst - -.. |detail/function-linq-group_by_to_array| replace:: to be documented in |detail/function-linq-group_by_to_array|.rst - -.. |detail/function-linq-union| replace:: to be documented in |detail/function-linq-union|.rst - -.. |detail/function-linq-union_to_array| replace:: to be documented in |detail/function-linq-union_to_array|.rst - -.. |detail/function-linq-union_by| replace:: to be documented in |detail/function-linq-union_by|.rst - -.. |detail/function-linq-union_by_to_array| replace:: to be documented in |detail/function-linq-union_by_to_array|.rst - -.. |detail/function-linq-any| replace:: to be documented in |detail/function-linq-any|.rst - -.. |detail/function-linq-all| replace:: to be documented in |detail/function-linq-all|.rst - -.. |detail/function-linq-except| replace:: to be documented in |detail/function-linq-except|.rst - -.. |detail/function-linq-except_to_array| replace:: to be documented in |detail/function-linq-except_to_array|.rst - -.. |detail/function-linq-except_by| replace:: to be documented in |detail/function-linq-except_by|.rst - -.. |detail/function-linq-except_by_to_array| replace:: to be documented in |detail/function-linq-except_by_to_array|.rst - -.. |detail/function-linq-intersect| replace:: to be documented in |detail/function-linq-intersect|.rst - -.. |detail/function-linq-intersect_to_array| replace:: to be documented in |detail/function-linq-intersect_to_array|.rst - -.. |detail/function-linq-intersect_by| replace:: to be documented in |detail/function-linq-intersect_by|.rst - -.. |detail/function-linq-intersect_by_to_array| replace:: to be documented in |detail/function-linq-intersect_by_to_array|.rst - -.. |detail/function-linq-contains| replace:: to be documented in |detail/function-linq-contains|.rst - -.. |detail/function-linq-empty| replace:: to be documented in |detail/function-linq-empty|.rst - -.. |detail/function-linq-default_empty| replace:: to be documented in |detail/function-linq-default_empty|.rst - -.. |detail/function-linq-repeat| replace:: to be documented in |detail/function-linq-repeat|.rst - -.. |detail/function-linq-sequence_equal| replace:: to be documented in |detail/function-linq-sequence_equal|.rst - -.. |detail/function-linq-sequence_equal_by| replace:: to be documented in |detail/function-linq-sequence_equal_by|.rst - -.. |detail/function-linq-element_at| replace:: to be documented in |detail/function-linq-element_at|.rst - -.. |detail/function-linq-element_at_or_default| replace:: to be documented in |detail/function-linq-element_at_or_default|.rst - -.. |detail/function-linq-first| replace:: to be documented in |detail/function-linq-first|.rst - -.. |detail/function-linq-first_or_default| replace:: to be documented in |detail/function-linq-first_or_default|.rst - -.. |detail/function-linq-last| replace:: to be documented in |detail/function-linq-last|.rst - -.. |detail/function-linq-last_or_default| replace:: to be documented in |detail/function-linq-last_or_default|.rst - -.. |detail/function-linq-single| replace:: to be documented in |detail/function-linq-single|.rst - -.. |detail/function-linq-single_or_default| replace:: to be documented in |detail/function-linq-single_or_default|.rst - -.. |detail/function-linq-prepend| replace:: to be documented in |detail/function-linq-prepend|.rst - -.. |detail/function-linq-prepend_to_array| replace:: to be documented in |detail/function-linq-prepend_to_array|.rst - -.. |detail/function-linq-prepend_inplace| replace:: to be documented in |detail/function-linq-prepend_inplace|.rst - -.. |detail/function-linq-append| replace:: to be documented in |detail/function-linq-append|.rst - -.. |detail/function-linq-append_to_array| replace:: to be documented in |detail/function-linq-append_to_array|.rst - -.. |detail/function-linq-append_inplace| replace:: to be documented in |detail/function-linq-append_inplace|.rst - -.. |detail/function-linq-select| replace:: to be documented in |detail/function-linq-select|.rst - -.. |detail/function-linq-select_to_array| replace:: to be documented in |detail/function-linq-select_to_array|.rst - -.. |detail/function-linq-chunk| replace:: to be documented in |detail/function-linq-chunk|.rst - -.. |detail/function-linq-chunk_to_array| replace:: to be documented in |detail/function-linq-chunk_to_array|.rst - -.. |detail/function-linq-select_many| replace:: to be documented in |detail/function-linq-select_many|.rst - -.. |detail/function-linq-select_many_to_array| replace:: to be documented in |detail/function-linq-select_many_to_array|.rst - -.. |detail/function-linq-zip| replace:: to be documented in |detail/function-linq-zip|.rst - -.. |detail/function-linq-zip_to_array| replace:: to be documented in |detail/function-linq-zip_to_array|.rst - -.. |detail/function-linq-order_unique_folded| replace:: to be documented in |detail/function-linq-order_unique_folded|.rst - -.. |detail/function-linq-order_unique_folded_inplace| replace:: to be documented in |detail/function-linq-order_unique_folded_inplace|.rst - diff --git a/doc/source/stdlib/detail/linq_boost.rst b/doc/source/stdlib/detail/linq_boost.rst deleted file mode 100644 index 21ccd1e2a8..0000000000 --- a/doc/source/stdlib/detail/linq_boost.rst +++ /dev/null @@ -1,72 +0,0 @@ -.. |detail/class-linq_boost-AstCallMacro_LinqPred2| replace:: to be documented in |detail/class-linq_boost-AstCallMacro_LinqPred2|.rst - -.. |detail/method-linq_boost-AstCallMacro_LinqPred2.visit| replace:: to be documented in |detail/method-linq_boost-AstCallMacro_LinqPred2.visit|.rst - -.. |detail/class-linq_boost-LinqWhere| replace:: to be documented in |detail/class-linq_boost-LinqWhere|.rst - -.. |detail/class-linq_boost-LinqWhereToArray| replace:: to be documented in |detail/class-linq_boost-LinqWhereToArray|.rst - -.. |detail/class-linq_boost-LinqSelect| replace:: to be documented in |detail/class-linq_boost-LinqSelect|.rst - -.. |detail/class-linq_boost-LinqSelectToArray| replace:: to be documented in |detail/class-linq_boost-LinqSelectToArray|.rst - -.. |detail/class-linq_boost-LinqMinBy| replace:: to be documented in |detail/class-linq_boost-LinqMinBy|.rst - -.. |detail/class-linq_boost-LinqMaxBy| replace:: to be documented in |detail/class-linq_boost-LinqMaxBy|.rst - -.. |detail/class-linq_boost-LinqMinMaxBy| replace:: to be documented in |detail/class-linq_boost-LinqMinMaxBy|.rst - -.. |detail/class-linq_boost-LinqMinMaxAverageBy| replace:: to be documented in |detail/class-linq_boost-LinqMinMaxAverageBy|.rst - -.. |detail/class-linq_boost-LinqSkipWhile| replace:: to be documented in |detail/class-linq_boost-LinqSkipWhile|.rst - -.. |detail/class-linq_boost-LinqTakeWhile| replace:: to be documented in |detail/class-linq_boost-LinqTakeWhile|.rst - -.. |detail/class-linq_boost-LinqAll| replace:: to be documented in |detail/class-linq_boost-LinqAll|.rst - -.. |detail/class-linq_boost-LinqAny| replace:: to be documented in |detail/class-linq_boost-LinqAny|.rst - -.. |detail/class-linq_boost-LinqCount| replace:: to be documented in |detail/class-linq_boost-LinqCount|.rst - -.. |detail/class-linq_boost-LinqUnique| replace:: to be documented in |detail/class-linq_boost-LinqUnique|.rst - -.. |detail/class-linq_boost-LinqUniqueToArray| replace:: to be documented in |detail/class-linq_boost-LinqUniqueToArray|.rst - -.. |detail/class-linq_boost-LinqDistinctBy| replace:: to be documented in |detail/class-linq_boost-LinqDistinctBy|.rst - -.. |detail/class-linq_boost-LinqDistinctByToArray| replace:: to be documented in |detail/class-linq_boost-LinqDistinctByToArray|.rst - -.. |detail/class-linq_boost-LinqOrderBy| replace:: to be documented in |detail/class-linq_boost-LinqOrderBy|.rst - -.. |detail/class-linq_boost-LinqOrderByToArray| replace:: to be documented in |detail/class-linq_boost-LinqOrderByToArray|.rst - -.. |detail/class-linq_boost-LinqOrderByDescending| replace:: to be documented in |detail/class-linq_boost-LinqOrderByDescending|.rst - -.. |detail/class-linq_boost-LinqOrderByDescendingToArray| replace:: to be documented in |detail/class-linq_boost-LinqOrderByDescendingToArray|.rst - -.. |detail/class-linq_boost-AstCallMacro_LinqPredII2| replace:: to be documented in |detail/class-linq_boost-AstCallMacro_LinqPredII2|.rst - -.. |detail/method-linq_boost-AstCallMacro_LinqPredII2.visit| replace:: to be documented in |detail/method-linq_boost-AstCallMacro_LinqPredII2.visit|.rst - -.. |detail/class-linq_boost-LinqPred3| replace:: to be documented in |detail/class-linq_boost-LinqPred3|.rst - -.. |detail/class-linq_boost-LinqExceptBy| replace:: to be documented in |detail/class-linq_boost-LinqExceptBy|.rst - -.. |detail/class-linq_boost-LinqExceptByToArray| replace:: to be documented in |detail/class-linq_boost-LinqExceptByToArray|.rst - -.. |detail/class-linq_boost-LinqIntersectBy| replace:: to be documented in |detail/class-linq_boost-LinqIntersectBy|.rst - -.. |detail/class-linq_boost-LinqIntersectByToArray| replace:: to be documented in |detail/class-linq_boost-LinqIntersectByToArray|.rst - -.. |detail/class-linq_boost-LinqUnionBy| replace:: to be documented in |detail/class-linq_boost-LinqUnionBy|.rst - -.. |detail/class-linq_boost-LinqUnionByToArray| replace:: to be documented in |detail/class-linq_boost-LinqUnionByToArray|.rst - -.. |detail/structure-linq_boost-LinqCall| replace:: to be documented in |detail/structure-linq_boost-LinqCall|.rst - -.. |detail/structure-linq_boost-FoldSequence| replace:: to be documented in |detail/structure-linq_boost-FoldSequence|.rst - -.. |detail/class-linq_boost-LinqFold| replace:: to be documented in |detail/class-linq_boost-LinqFold|.rst - -.. |detail/method-linq_boost-LinqFold.visit| replace:: to be documented in |detail/method-linq_boost-LinqFold.visit|.rst - diff --git a/doc/source/stdlib/detail/lint.rst b/doc/source/stdlib/detail/lint.rst deleted file mode 100644 index e5fceb1ba7..0000000000 --- a/doc/source/stdlib/detail/lint.rst +++ /dev/null @@ -1,32 +0,0 @@ -.. |detail/class-lint-LintEverything| replace:: to be documented in |detail/class-lint-LintEverything|.rst - -.. |detail/method-lint-LintEverything.apply| replace:: to be documented in |detail/method-lint-LintEverything.apply|.rst - -.. |detail/class-lint-LintVisitor| replace:: to be documented in |detail/class-lint-LintVisitor|.rst - -.. |detail/method-lint-LintVisitor.preVisitFunction| replace:: to be documented in |detail/method-lint-LintVisitor.preVisitFunction|.rst - -.. |detail/method-lint-LintVisitor.visitFunction| replace:: to be documented in |detail/method-lint-LintVisitor.visitFunction|.rst - -.. |detail/method-lint-LintVisitor.preVisitExprBlock| replace:: to be documented in |detail/method-lint-LintVisitor.preVisitExprBlock|.rst - -.. |detail/method-lint-LintVisitor.visitExprBlock| replace:: to be documented in |detail/method-lint-LintVisitor.visitExprBlock|.rst - -.. |detail/method-lint-LintVisitor.visitExprBlockExpression| replace:: to be documented in |detail/method-lint-LintVisitor.visitExprBlockExpression|.rst - -.. |detail/method-lint-LintVisitor.preVisitExprLet| replace:: to be documented in |detail/method-lint-LintVisitor.preVisitExprLet|.rst - -.. |detail/method-lint-LintVisitor.preVisitExprCall| replace:: to be documented in |detail/method-lint-LintVisitor.preVisitExprCall|.rst - -.. |detail/method-lint-LintVisitor.preVisitExprForVariable| replace:: to be documented in |detail/method-lint-LintVisitor.preVisitExprForVariable|.rst - -.. |detail/method-lint-LintVisitor.preVisitExprLabel| replace:: to be documented in |detail/method-lint-LintVisitor.preVisitExprLabel|.rst - -.. |detail/method-lint-LintVisitor.preVisitExprReturn| replace:: to be documented in |detail/method-lint-LintVisitor.preVisitExprReturn|.rst - -.. |detail/method-lint-LintVisitor.lint_error| replace:: to be documented in |detail/method-lint-LintVisitor.lint_error|.rst - -.. |detail/method-lint-LintVisitor.validate_var| replace:: to be documented in |detail/method-lint-LintVisitor.validate_var|.rst - -.. |detail/function-lint-paranoid| replace:: to be documented in |detail/function-lint-paranoid|.rst - diff --git a/doc/source/stdlib/detail/lpipe.rst b/doc/source/stdlib/detail/lpipe.rst deleted file mode 100644 index 59a1a72404..0000000000 --- a/doc/source/stdlib/detail/lpipe.rst +++ /dev/null @@ -1,4 +0,0 @@ -.. |detail/class-lpipe-LpipeMacro| replace:: to be documented in |detail/class-lpipe-LpipeMacro|.rst - -.. |detail/method-lpipe-LpipeMacro.visit| replace:: to be documented in |detail/method-lpipe-LpipeMacro.visit|.rst - diff --git a/doc/source/stdlib/detail/macro_boost.rst b/doc/source/stdlib/detail/macro_boost.rst deleted file mode 100644 index d6d3f57067..0000000000 --- a/doc/source/stdlib/detail/macro_boost.rst +++ /dev/null @@ -1,36 +0,0 @@ -.. |detail/class-macro_boost-MacroVerifyMacro| replace:: to be documented in |detail/class-macro_boost-MacroVerifyMacro|.rst - -.. |detail/method-macro_boost-MacroVerifyMacro.transform| replace:: to be documented in |detail/method-macro_boost-MacroVerifyMacro.transform|.rst - -.. |detail/class-macro_boost-CaptureBlock| replace:: to be documented in |detail/class-macro_boost-CaptureBlock|.rst - -.. |detail/method-macro_boost-CaptureBlock.preVisitExprBlockArgument| replace:: to be documented in |detail/method-macro_boost-CaptureBlock.preVisitExprBlockArgument|.rst - -.. |detail/method-macro_boost-CaptureBlock.preVisitExprLetVariable| replace:: to be documented in |detail/method-macro_boost-CaptureBlock.preVisitExprLetVariable|.rst - -.. |detail/method-macro_boost-CaptureBlock.preVisitExprForVariable| replace:: to be documented in |detail/method-macro_boost-CaptureBlock.preVisitExprForVariable|.rst - -.. |detail/method-macro_boost-CaptureBlock.preVisitExprVar| replace:: to be documented in |detail/method-macro_boost-CaptureBlock.preVisitExprVar|.rst - -.. |detail/structure-macro_boost-CapturedVariable| replace:: to be documented in |detail/structure-macro_boost-CapturedVariable|.rst - -.. |detail/class-macro_boost-ColletFinally| replace:: to be documented in |detail/class-macro_boost-ColletFinally|.rst - -.. |detail/method-macro_boost-ColletFinally.preVisitExprBlock| replace:: to be documented in |detail/method-macro_boost-ColletFinally.preVisitExprBlock|.rst - -.. |detail/method-macro_boost-ColletFinally.canVisitMakeBlockBody| replace:: to be documented in |detail/method-macro_boost-ColletFinally.canVisitMakeBlockBody|.rst - -.. |detail/class-macro_boost-ColletLabels| replace:: to be documented in |detail/class-macro_boost-ColletLabels|.rst - -.. |detail/method-macro_boost-ColletLabels.preVisitExprLabel| replace:: to be documented in |detail/method-macro_boost-ColletLabels.preVisitExprLabel|.rst - -.. |detail/method-macro_boost-ColletLabels.canVisitMakeBlockBody| replace:: to be documented in |detail/method-macro_boost-ColletLabels.canVisitMakeBlockBody|.rst - -.. |detail/function-macro_boost-macro_verify| replace:: to be documented in |detail/function-macro_boost-macro_verify|.rst - -.. |detail/function-macro_boost-capture_block| replace:: to be documented in |detail/function-macro_boost-capture_block|.rst - -.. |detail/function-macro_boost-collect_finally| replace:: to be documented in |detail/function-macro_boost-collect_finally|.rst - -.. |detail/function-macro_boost-collect_labels| replace:: to be documented in |detail/function-macro_boost-collect_labels|.rst - diff --git a/doc/source/stdlib/detail/match.rst b/doc/source/stdlib/detail/match.rst deleted file mode 100644 index 075b104b82..0000000000 --- a/doc/source/stdlib/detail/match.rst +++ /dev/null @@ -1,30 +0,0 @@ -.. |detail/enumeration-match-MatchType| replace:: to be documented in |detail/enumeration-match-MatchType|.rst - -.. |detail/structure-match-MatchError| replace:: to be documented in |detail/structure-match-MatchError|.rst - -.. |detail/structure-match-MatchTo| replace:: to be documented in |detail/structure-match-MatchTo|.rst - -.. |detail/class-match-MatchMacro| replace:: to be documented in |detail/class-match-MatchMacro|.rst - -.. |detail/method-match-MatchMacro.preVisit| replace:: to be documented in |detail/method-match-MatchMacro.preVisit|.rst - -.. |detail/method-match-MatchMacro.visit| replace:: to be documented in |detail/method-match-MatchMacro.visit|.rst - -.. |detail/method-match-MatchMacro.canVisitArgument| replace:: to be documented in |detail/method-match-MatchMacro.canVisitArgument|.rst - -.. |detail/method-match-MatchMacro.canFoldReturnResult| replace:: to be documented in |detail/method-match-MatchMacro.canFoldReturnResult|.rst - -.. |detail/class-match-StaticMatchMacro| replace:: to be documented in |detail/class-match-StaticMatchMacro|.rst - -.. |detail/class-match-MultiMatchMacro| replace:: to be documented in |detail/class-match-MultiMatchMacro|.rst - -.. |detail/class-match-StaticMultiMatchMacro| replace:: to be documented in |detail/class-match-StaticMultiMatchMacro|.rst - -.. |detail/class-match-MatchAsIs| replace:: to be documented in |detail/class-match-MatchAsIs|.rst - -.. |detail/class-match-MatchCopy| replace:: to be documented in |detail/class-match-MatchCopy|.rst - -.. |detail/function-match-match_type| replace:: to be documented in |detail/function-match-match_type|.rst - -.. |detail/function-match-match_expr| replace:: to be documented in |detail/function-match-match_expr|.rst - diff --git a/doc/source/stdlib/detail/math.rst b/doc/source/stdlib/detail/math.rst deleted file mode 100644 index d51fd9beb1..0000000000 --- a/doc/source/stdlib/detail/math.rst +++ /dev/null @@ -1,198 +0,0 @@ -.. |handmade/function-math-sin| replace:: to be documented in |handmade/function-math-sin|.rst - -.. |handmade/function-math-cos| replace:: to be documented in |handmade/function-math-cos|.rst - -.. |handmade/function-math-tan| replace:: to be documented in |handmade/function-math-tan|.rst - -.. |handmade/function-math-exp| replace:: to be documented in |handmade/function-math-exp|.rst - -.. |handmade/function-math-log| replace:: to be documented in |handmade/function-math-log|.rst - -.. |handmade/function-math-exp2| replace:: to be documented in |handmade/function-math-exp2|.rst - -.. |handmade/function-math-log2| replace:: to be documented in |handmade/function-math-log2|.rst - -.. |handmade/function-math-rcp| replace:: to be documented in |handmade/function-math-rcp|.rst - -.. |handmade/function-math-rcp_est| replace:: to be documented in |handmade/function-math-rcp_est|.rst - -.. |handmade/function-math-pow| replace:: to be documented in |handmade/function-math-pow|.rst - -.. |handmade/function-math-mad| replace:: to be documented in |handmade/function-math-mad|.rst - -.. |handmade/function-math-lerp| replace:: to be documented in |handmade/function-math-lerp|.rst - -.. |handmade/function-math-floor| replace:: to be documented in |handmade/function-math-floor|.rst - -.. |handmade/function-math-ceil| replace:: to be documented in |handmade/function-math-ceil|.rst - -.. |handmade/function-math-fract| replace:: to be documented in |handmade/function-math-fract|.rst - -.. |handmade/function-math-round| replace:: to be documented in |handmade/function-math-round|.rst - -.. |handmade/function-math-sqrt| replace:: to be documented in |handmade/function-math-sqrt|.rst - -.. |handmade/function-math-rsqrt| replace:: to be documented in |handmade/function-math-rsqrt|.rst - -.. |handmade/function-math-rsqrt_est| replace:: to be documented in |handmade/function-math-rsqrt_est|.rst - -.. |handmade/function-math-saturate| replace:: to be documented in |handmade/function-math-saturate|.rst - -.. |handmade/function-math-min| replace:: to be documented in |handmade/function-math-min|.rst - -.. |handmade/function-math-max| replace:: to be documented in |handmade/function-math-max|.rst - -.. |handmade/function-math-clamp| replace:: to be documented in |handmade/function-math-clamp|.rst - -.. |handmade/function-math-abs| replace:: to be documented in |handmade/function-math-abs|.rst - -.. |handmade/function-math-sign| replace:: to be documented in |handmade/function-math-sign|.rst - -.. |handmade/function-math-uint32_hash| replace:: to be documented in |handmade/function-math-uint32_hash|.rst - -.. |handmade/function-math-uint_noise_1D| replace:: to be documented in |handmade/function-math-uint_noise_1D|.rst - -.. |handmade/function-math-uint_noise_2D| replace:: to be documented in |handmade/function-math-uint_noise_2D|.rst - -.. |handmade/function-math-uint_noise_3D| replace:: to be documented in |handmade/function-math-uint_noise_3D|.rst - -.. |handmade/function-math-dot| replace:: to be documented in |handmade/function-math-dot|.rst - -.. |handmade/function-math-cross| replace:: to be documented in |handmade/function-math-cross|.rst - -.. |handmade/function-math-fast_normalize| replace:: to be documented in |handmade/function-math-fast_normalize|.rst - -.. |handmade/function-math-normalize| replace:: to be documented in |handmade/function-math-normalize|.rst - -.. |handmade/function-math-length| replace:: to be documented in |handmade/function-math-length|.rst - -.. |handmade/function-math-inv_length| replace:: to be documented in |handmade/function-math-inv_length|.rst - -.. |handmade/function-math-inv_length_sq| replace:: to be documented in |handmade/function-math-inv_length_sq|.rst - -.. |handmade/function-math-length_sq| replace:: to be documented in |handmade/function-math-length_sq|.rst - -.. |handmade/function-math-distance| replace:: to be documented in |handmade/function-math-distance|.rst - -.. |handmade/function-math-distance_sq| replace:: to be documented in |handmade/function-math-distance_sq|.rst - -.. |handmade/function-math-inv_distance| replace:: to be documented in |handmade/function-math-inv_distance|.rst - -.. |handmade/function-math-inv_distance_sq| replace:: to be documented in |handmade/function-math-inv_distance_sq|.rst - -.. |handmade/function-math-is_nan| replace:: to be documented in |handmade/function-math-is_nan|.rst - -.. |handmade/function-math-is_finite| replace:: to be documented in |handmade/function-math-is_finite|.rst - -.. |handmade/function-math-asin| replace:: to be documented in |handmade/function-math-asin|.rst - -.. |handmade/function-math-acos| replace:: to be documented in |handmade/function-math-acos|.rst - -.. |handmade/function-math-safe_asin| replace:: to be documented in |handmade/function-math-safe_asin|.rst - -.. |handmade/function-math-safe_acos| replace:: to be documented in |handmade/function-math-safe_acos|.rst - -.. |handmade/function-math-atan| replace:: to be documented in |handmade/function-math-atan|.rst - -.. |handmade/function-math-atan2| replace:: to be documented in |handmade/function-math-atan2|.rst - -.. |handmade/function-math-sincos| replace:: to be documented in |handmade/function-math-sincos|.rst - -.. |handmade/function-math-atan_est| replace:: to be documented in |handmade/function-math-atan_est|.rst - -.. |handmade/function-math-atan2_est| replace:: to be documented in |handmade/function-math-atan2_est|.rst - -.. |handmade/function-math-reflect| replace:: to be documented in |handmade/function-math-reflect|.rst - -.. |handmade/function-math-refract| replace:: to be documented in |handmade/function-math-refract|.rst - -.. |handmade/function-math-floori| replace:: to be documented in |handmade/function-math-floori|.rst - -.. |handmade/function-math-ceili| replace:: to be documented in |handmade/function-math-ceili|.rst - -.. |handmade/function-math-roundi| replace:: to be documented in |handmade/function-math-roundi|.rst - -.. |handmade/function-math-trunci| replace:: to be documented in |handmade/function-math-trunci|.rst - -.. |handmade/function-math-float3x3| replace:: to be documented in |handmade/function-math-float3x3|.rst - -.. |handmade/function-math-float3x4| replace:: to be documented in |handmade/function-math-float3x4|.rst - -.. |handmade/function-math-float4x4| replace:: to be documented in |handmade/function-math-float4x4|.rst - -.. |handmade/function-math-identity| replace:: to be documented in |handmade/function-math-identity|.rst - -.. |handmade/function-math-identity4x4| replace:: to be documented in |handmade/function-math-identity4x4|.rst - -.. |handmade/function-math-translation| replace:: to be documented in |handmade/function-math-translation|.rst - -.. |handmade/function-math-transpose| replace:: to be documented in |handmade/function-math-transpose|.rst - -.. |handmade/function-math-persp_forward| replace:: to be documented in |handmade/function-math-persp_forward|.rst - -.. |handmade/function-math-persp_reverse| replace:: to be documented in |handmade/function-math-persp_reverse|.rst - -.. |handmade/function-math-look_at| replace:: to be documented in |handmade/function-math-look_at|.rst - -.. |handmade/function-math-compose| replace:: to be documented in |handmade/function-math-compose|.rst - -.. |handmade/function-math-*| replace:: to be documented in |handmade/function-math-*|.rst - -.. |handmade/function-math-decompose| replace:: to be documented in |handmade/function-math-decompose|.rst - -.. |handmade/function-math-==| replace:: to be documented in |handmade/function-math-==|.rst - -.. |handmade/function-math-!=| replace:: to be documented in |handmade/function-math-!=|.rst - -.. |handmade/function-math--| replace:: to be documented in |handmade/function-math--|.rst - -.. |handmade/function-math-.[]| replace:: to be documented in |handmade/function-math-.[]|.rst - -.. |handmade/function-math-identity3x4| replace:: to be documented in |handmade/function-math-identity3x4|.rst - -.. |handmade/function-math-determinant| replace:: to be documented in |handmade/function-math-determinant|.rst - -.. |handmade/function-math-inverse| replace:: to be documented in |handmade/function-math-inverse|.rst - -.. |handmade/function-math-orthonormal_inverse| replace:: to be documented in |handmade/function-math-orthonormal_inverse|.rst - -.. |handmade/function-math-rotate| replace:: to be documented in |handmade/function-math-rotate|.rst - -.. |handmade/function-math-quat_from_unit_arc| replace:: to be documented in |handmade/function-math-quat_from_unit_arc|.rst - -.. |handmade/function-math-quat_from_unit_vec_ang| replace:: to be documented in |handmade/function-math-quat_from_unit_vec_ang|.rst - -.. |handmade/function-math-quat_from_euler| replace:: to be documented in |handmade/function-math-quat_from_euler|.rst - -.. |handmade/function-math-euler_from_quat| replace:: to be documented in |handmade/function-math-euler_from_quat|.rst - -.. |handmade/function-math-quat| replace:: to be documented in |handmade/function-math-quat|.rst - -.. |handmade/function-math-quat_mul| replace:: to be documented in |handmade/function-math-quat_mul|.rst - -.. |handmade/function-math-quat_mul_vec| replace:: to be documented in |handmade/function-math-quat_mul_vec|.rst - -.. |handmade/function-math-quat_conjugate| replace:: to be documented in |handmade/function-math-quat_conjugate|.rst - -.. |handmade/function-math-quat_slerp| replace:: to be documented in |handmade/function-math-quat_slerp|.rst - -.. |handmade/function-math-identity3x3| replace:: to be documented in |handmade/function-math-identity3x3|.rst - -.. |handmade/function-math-pack_float_to_byte| replace:: to be documented in |handmade/function-math-pack_float_to_byte|.rst - -.. |handmade/function-math-unpack_byte_to_float| replace:: to be documented in |handmade/function-math-unpack_byte_to_float|.rst - -.. |handmade/structure_annotation-math-float4x4| replace:: to be documented in |handmade/structure_annotation-math-float4x4|.rst - -.. |handmade/structure_annotation-math-float3x4| replace:: to be documented in |handmade/structure_annotation-math-float3x4|.rst - -.. |handmade/structure_annotation-math-float3x3| replace:: to be documented in |handmade/structure_annotation-math-float3x3|.rst - -.. |handmade/variable-math-PI| replace:: to be documented in |handmade/variable-math-PI|.rst - -.. |handmade/variable-math-DBL_PI| replace:: to be documented in |handmade/variable-math-DBL_PI|.rst - -.. |handmade/variable-math-FLT_EPSILON| replace:: to be documented in |handmade/variable-math-FLT_EPSILON|.rst - -.. |handmade/variable-math-DBL_EPSILON| replace:: to be documented in |handmade/variable-math-DBL_EPSILON|.rst - diff --git a/doc/source/stdlib/detail/math_bits.rst b/doc/source/stdlib/detail/math_bits.rst deleted file mode 100644 index b85180e2fe..0000000000 --- a/doc/source/stdlib/detail/math_bits.rst +++ /dev/null @@ -1,32 +0,0 @@ -.. |detail/typedef-math_bits-Vec4f| replace:: to be documented in |detail/typedef-math_bits-Vec4f|.rst - -.. |detail/function-math_bits-int_bits_to_float| replace:: to be documented in |detail/function-math_bits-int_bits_to_float|.rst - -.. |detail/function-math_bits-int64_bits_to_double| replace:: to be documented in |detail/function-math_bits-int64_bits_to_double|.rst - -.. |detail/function-math_bits-uint_bits_to_float| replace:: to be documented in |detail/function-math_bits-uint_bits_to_float|.rst - -.. |detail/function-math_bits-uint64_bits_to_double| replace:: to be documented in |detail/function-math_bits-uint64_bits_to_double|.rst - -.. |detail/function-math_bits-float_bits_to_int| replace:: to be documented in |detail/function-math_bits-float_bits_to_int|.rst - -.. |detail/function-math_bits-double_bits_to_int64| replace:: to be documented in |detail/function-math_bits-double_bits_to_int64|.rst - -.. |detail/function-math_bits-float_bits_to_uint| replace:: to be documented in |detail/function-math_bits-float_bits_to_uint|.rst - -.. |detail/function-math_bits-double_bits_to_uint64| replace:: to be documented in |detail/function-math_bits-double_bits_to_uint64|.rst - -.. |detail/function-math_bits-cast_to_vec4f| replace:: to be documented in |detail/function-math_bits-cast_to_vec4f|.rst - -.. |detail/function-math_bits-cast_to_int64| replace:: to be documented in |detail/function-math_bits-cast_to_int64|.rst - -.. |detail/function-math_bits-cast_to_int32| replace:: to be documented in |detail/function-math_bits-cast_to_int32|.rst - -.. |detail/function-math_bits-cast_to_int16| replace:: to be documented in |detail/function-math_bits-cast_to_int16|.rst - -.. |detail/function-math_bits-cast_to_int8| replace:: to be documented in |detail/function-math_bits-cast_to_int8|.rst - -.. |detail/function-math_bits-cast_to_string| replace:: to be documented in |detail/function-math_bits-cast_to_string|.rst - -.. |detail/function-math_bits-cast_to_pointer| replace:: to be documented in |detail/function-math_bits-cast_to_pointer|.rst - diff --git a/doc/source/stdlib/detail/math_boost.rst b/doc/source/stdlib/detail/math_boost.rst deleted file mode 100644 index 65f15623bb..0000000000 --- a/doc/source/stdlib/detail/math_boost.rst +++ /dev/null @@ -1,40 +0,0 @@ -.. |detail/structure-math_boost-AABR| replace:: to be documented in |detail/structure-math_boost-AABR|.rst - -.. |detail/structure-math_boost-AABB| replace:: to be documented in |detail/structure-math_boost-AABB|.rst - -.. |detail/structure-math_boost-Ray| replace:: to be documented in |detail/structure-math_boost-Ray|.rst - -.. |detail/function-math_boost-degrees| replace:: to be documented in |detail/function-math_boost-degrees|.rst - -.. |detail/function-math_boost-radians| replace:: to be documented in |detail/function-math_boost-radians|.rst - -.. |detail/function-math_boost-RGBA_TO_UCOLOR| replace:: to be documented in |detail/function-math_boost-RGBA_TO_UCOLOR|.rst - -.. |detail/function-math_boost-UCOLOR_TO_RGBA| replace:: to be documented in |detail/function-math_boost-UCOLOR_TO_RGBA|.rst - -.. |detail/function-math_boost-UCOLOR_TO_RGB| replace:: to be documented in |detail/function-math_boost-UCOLOR_TO_RGB|.rst - -.. |detail/function-math_boost-linear_to_SRGB| replace:: to be documented in |detail/function-math_boost-linear_to_SRGB|.rst - -.. |detail/function-math_boost-is_intersecting| replace:: to be documented in |detail/function-math_boost-is_intersecting|.rst - -.. |detail/function-math_boost-look_at_lh| replace:: to be documented in |detail/function-math_boost-look_at_lh|.rst - -.. |detail/function-math_boost-look_at_rh| replace:: to be documented in |detail/function-math_boost-look_at_rh|.rst - -.. |detail/function-math_boost-perspective_lh| replace:: to be documented in |detail/function-math_boost-perspective_lh|.rst - -.. |detail/function-math_boost-perspective_rh| replace:: to be documented in |detail/function-math_boost-perspective_rh|.rst - -.. |detail/function-math_boost-perspective_rh_opengl| replace:: to be documented in |detail/function-math_boost-perspective_rh_opengl|.rst - -.. |detail/function-math_boost-ortho_rh| replace:: to be documented in |detail/function-math_boost-ortho_rh|.rst - -.. |detail/function-math_boost-plane_dot| replace:: to be documented in |detail/function-math_boost-plane_dot|.rst - -.. |detail/function-math_boost-plane_normalize| replace:: to be documented in |detail/function-math_boost-plane_normalize|.rst - -.. |detail/function-math_boost-plane_from_point_normal| replace:: to be documented in |detail/function-math_boost-plane_from_point_normal|.rst - -.. |detail/function-math_boost-planar_shadow| replace:: to be documented in |detail/function-math_boost-planar_shadow|.rst - diff --git a/doc/source/stdlib/detail/network.rst b/doc/source/stdlib/detail/network.rst deleted file mode 100644 index 83f4e6a148..0000000000 --- a/doc/source/stdlib/detail/network.rst +++ /dev/null @@ -1,46 +0,0 @@ -.. |handmade/class-network-Server| replace:: to be documented in |handmade/class-network-Server|.rst - -.. |handmade/method-network-Server.make_server_adapter| replace:: to be documented in |handmade/method-network-Server.make_server_adapter|.rst - -.. |handmade/method-network-Server.init| replace:: to be documented in |handmade/method-network-Server.init|.rst - -.. |handmade/method-network-Server.restore| replace:: to be documented in |handmade/method-network-Server.restore|.rst - -.. |handmade/method-network-Server.save| replace:: to be documented in |handmade/method-network-Server.save|.rst - -.. |handmade/method-network-Server.has_session| replace:: to be documented in |handmade/method-network-Server.has_session|.rst - -.. |handmade/method-network-Server.is_open| replace:: to be documented in |handmade/method-network-Server.is_open|.rst - -.. |handmade/method-network-Server.is_connected| replace:: to be documented in |handmade/method-network-Server.is_connected|.rst - -.. |handmade/method-network-Server.tick| replace:: to be documented in |handmade/method-network-Server.tick|.rst - -.. |handmade/method-network-Server.send| replace:: to be documented in |handmade/method-network-Server.send|.rst - -.. |handmade/method-network-Server.onConnect| replace:: to be documented in |handmade/method-network-Server.onConnect|.rst - -.. |handmade/method-network-Server.onDisconnect| replace:: to be documented in |handmade/method-network-Server.onDisconnect|.rst - -.. |handmade/method-network-Server.onData| replace:: to be documented in |handmade/method-network-Server.onData|.rst - -.. |handmade/method-network-Server.onError| replace:: to be documented in |handmade/method-network-Server.onError|.rst - -.. |handmade/method-network-Server.onLog| replace:: to be documented in |handmade/method-network-Server.onLog|.rst - -.. |handmade/function-network-make_server| replace:: to be documented in |handmade/function-network-make_server|.rst - -.. |handmade/function-network-server_init| replace:: to be documented in |handmade/function-network-server_init|.rst - -.. |handmade/function-network-server_is_open| replace:: to be documented in |handmade/function-network-server_is_open|.rst - -.. |handmade/function-network-server_is_connected| replace:: to be documented in |handmade/function-network-server_is_connected|.rst - -.. |handmade/function-network-server_tick| replace:: to be documented in |handmade/function-network-server_tick|.rst - -.. |handmade/function-network-server_send| replace:: to be documented in |handmade/function-network-server_send|.rst - -.. |handmade/function-network-server_restore| replace:: to be documented in |handmade/function-network-server_restore|.rst - -.. |handmade/structure_annotation-network-NetworkServer| replace:: to be documented in |handmade/structure_annotation-network-NetworkServer|.rst - diff --git a/doc/source/stdlib/detail/profiler.rst b/doc/source/stdlib/detail/profiler.rst deleted file mode 100644 index 95fa179aa9..0000000000 --- a/doc/source/stdlib/detail/profiler.rst +++ /dev/null @@ -1,50 +0,0 @@ -.. |detail/structure-profiler-PerfNode| replace:: to be documented in |detail/structure-profiler-PerfNode|.rst - -.. |detail/structure-profiler-PerfEvent| replace:: to be documented in |detail/structure-profiler-PerfEvent|.rst - -.. |detail/structure-profiler-PerfContext| replace:: to be documented in |detail/structure-profiler-PerfContext|.rst - -.. |detail/class-profiler-ProfilerDebugAgent| replace:: to be documented in |detail/class-profiler-ProfilerDebugAgent|.rst - -.. |detail/method-profiler-ProfilerDebugAgent.onInstall| replace:: to be documented in |detail/method-profiler-ProfilerDebugAgent.onInstall|.rst - -.. |detail/method-profiler-ProfilerDebugAgent.onUninstall| replace:: to be documented in |detail/method-profiler-ProfilerDebugAgent.onUninstall|.rst - -.. |detail/method-profiler-ProfilerDebugAgent.onCreateContext| replace:: to be documented in |detail/method-profiler-ProfilerDebugAgent.onCreateContext|.rst - -.. |detail/method-profiler-ProfilerDebugAgent.onDestroyContext| replace:: to be documented in |detail/method-profiler-ProfilerDebugAgent.onDestroyContext|.rst - -.. |detail/method-profiler-ProfilerDebugAgent.onInstrumentFunction| replace:: to be documented in |detail/method-profiler-ProfilerDebugAgent.onInstrumentFunction|.rst - -.. |detail/method-profiler-ProfilerDebugAgent.is_time_unit_correct| replace:: to be documented in |detail/method-profiler-ProfilerDebugAgent.is_time_unit_correct|.rst - -.. |detail/method-profiler-ProfilerDebugAgent.convert_ns_to_unit| replace:: to be documented in |detail/method-profiler-ProfilerDebugAgent.convert_ns_to_unit|.rst - -.. |detail/method-profiler-ProfilerDebugAgent.isProfileable| replace:: to be documented in |detail/method-profiler-ProfilerDebugAgent.isProfileable|.rst - -.. |detail/method-profiler-ProfilerDebugAgent.enable_profiler| replace:: to be documented in |detail/method-profiler-ProfilerDebugAgent.enable_profiler|.rst - -.. |detail/method-profiler-ProfilerDebugAgent.enable_profiler_log| replace:: to be documented in |detail/method-profiler-ProfilerDebugAgent.enable_profiler_log|.rst - -.. |detail/method-profiler-ProfilerDebugAgent.onInstrumentFunctionWithMemory| replace:: to be documented in |detail/method-profiler-ProfilerDebugAgent.onInstrumentFunctionWithMemory|.rst - -.. |detail/method-profiler-ProfilerDebugAgent.dump| replace:: to be documented in |detail/method-profiler-ProfilerDebugAgent.dump|.rst - -.. |detail/method-profiler-ProfilerDebugAgent.write| replace:: to be documented in |detail/method-profiler-ProfilerDebugAgent.write|.rst - -.. |detail/method-profiler-ProfilerDebugAgent.dump_event| replace:: to be documented in |detail/method-profiler-ProfilerDebugAgent.dump_event|.rst - -.. |detail/method-profiler-ProfilerDebugAgent.dump_node| replace:: to be documented in |detail/method-profiler-ProfilerDebugAgent.dump_node|.rst - -.. |detail/method-profiler-ProfilerDebugAgent.dump_context_stack| replace:: to be documented in |detail/method-profiler-ProfilerDebugAgent.dump_context_stack|.rst - -.. |detail/method-profiler-ProfilerDebugAgent.dump_meta| replace:: to be documented in |detail/method-profiler-ProfilerDebugAgent.dump_meta|.rst - -.. |detail/method-profiler-ProfilerDebugAgent.dump_events| replace:: to be documented in |detail/method-profiler-ProfilerDebugAgent.dump_events|.rst - -.. |detail/method-profiler-ProfilerDebugAgent.dump_context| replace:: to be documented in |detail/method-profiler-ProfilerDebugAgent.dump_context|.rst - -.. |detail/function-profiler-set_enable_profiler| replace:: to be documented in |detail/function-profiler-set_enable_profiler|.rst - -.. |detail/function-profiler-set_enable_profiler_log| replace:: to be documented in |detail/function-profiler-set_enable_profiler_log|.rst - diff --git a/doc/source/stdlib/detail/profiler_boost.rst b/doc/source/stdlib/detail/profiler_boost.rst deleted file mode 100644 index cd01ed9784..0000000000 --- a/doc/source/stdlib/detail/profiler_boost.rst +++ /dev/null @@ -1,8 +0,0 @@ -.. |detail/function-profiler_boost-enable_profiler| replace:: to be documented in |detail/function-profiler_boost-enable_profiler|.rst - -.. |detail/function-profiler_boost-disable_profiler| replace:: to be documented in |detail/function-profiler_boost-disable_profiler|.rst - -.. |detail/function-profiler_boost-enable_profiler_log| replace:: to be documented in |detail/function-profiler_boost-enable_profiler_log|.rst - -.. |detail/function-profiler_boost-disable_profiler_log| replace:: to be documented in |detail/function-profiler_boost-disable_profiler_log|.rst - diff --git a/doc/source/stdlib/detail/pugixml.rst b/doc/source/stdlib/detail/pugixml.rst deleted file mode 100644 index fac54b19b5..0000000000 --- a/doc/source/stdlib/detail/pugixml.rst +++ /dev/null @@ -1,250 +0,0 @@ -.. |handmade/enumeration-pugixml-xml_encoding| replace:: to be documented in |handmade/enumeration-pugixml-xml_encoding|.rst - -.. |handmade/enumeration-pugixml-xml_node_type| replace:: to be documented in |handmade/enumeration-pugixml-xml_node_type|.rst - -.. |handmade/enumeration-pugixml-xml_parse_status| replace:: to be documented in |handmade/enumeration-pugixml-xml_parse_status|.rst - -.. |handmade/enumeration-pugixml-xpath_value_type| replace:: to be documented in |handmade/enumeration-pugixml-xpath_value_type|.rst - -.. |handmade/function-pugixml-xml_document| replace:: to be documented in |handmade/function-pugixml-xml_document|.rst - -.. |handmade/function-pugixml-using| replace:: to be documented in |handmade/function-pugixml-using|.rst - -.. |handmade/function-pugixml-xpath_node_set| replace:: to be documented in |handmade/function-pugixml-xpath_node_set|.rst - -.. |handmade/function-pugixml-xpath_variable_set| replace:: to be documented in |handmade/function-pugixml-xpath_variable_set|.rst - -.. |handmade/function-pugixml-document_as_node| replace:: to be documented in |handmade/function-pugixml-document_as_node|.rst - -.. |handmade/function-pugixml-load_document| replace:: to be documented in |handmade/function-pugixml-load_document|.rst - -.. |handmade/function-pugixml-load_string| replace:: to be documented in |handmade/function-pugixml-load_string|.rst - -.. |handmade/function-pugixml-.`document_element| replace:: to be documented in |handmade/function-pugixml-.`document_element|.rst - -.. |handmade/function-pugixml-save_file| replace:: to be documented in |handmade/function-pugixml-save_file|.rst - -.. |handmade/function-pugixml-save_string| replace:: to be documented in |handmade/function-pugixml-save_string|.rst - -.. |handmade/function-pugixml-reset| replace:: to be documented in |handmade/function-pugixml-reset|.rst - -.. |handmade/function-pugixml-.`ok| replace:: to be documented in |handmade/function-pugixml-.`ok|.rst - -.. |handmade/function-pugixml-child| replace:: to be documented in |handmade/function-pugixml-child|.rst - -.. |handmade/function-pugixml-attribute| replace:: to be documented in |handmade/function-pugixml-attribute|.rst - -.. |handmade/function-pugixml-.`first_child| replace:: to be documented in |handmade/function-pugixml-.`first_child|.rst - -.. |handmade/function-pugixml-.`last_child| replace:: to be documented in |handmade/function-pugixml-.`last_child|.rst - -.. |handmade/function-pugixml-.`next_sibling| replace:: to be documented in |handmade/function-pugixml-.`next_sibling|.rst - -.. |handmade/function-pugixml-next_sibling| replace:: to be documented in |handmade/function-pugixml-next_sibling|.rst - -.. |handmade/function-pugixml-.`previous_sibling| replace:: to be documented in |handmade/function-pugixml-.`previous_sibling|.rst - -.. |handmade/function-pugixml-previous_sibling| replace:: to be documented in |handmade/function-pugixml-previous_sibling|.rst - -.. |handmade/function-pugixml-.`parent| replace:: to be documented in |handmade/function-pugixml-.`parent|.rst - -.. |handmade/function-pugixml-.`root| replace:: to be documented in |handmade/function-pugixml-.`root|.rst - -.. |handmade/function-pugixml-.`first_attribute| replace:: to be documented in |handmade/function-pugixml-.`first_attribute|.rst - -.. |handmade/function-pugixml-.`last_attribute| replace:: to be documented in |handmade/function-pugixml-.`last_attribute|.rst - -.. |handmade/function-pugixml-.`text| replace:: to be documented in |handmade/function-pugixml-.`text|.rst - -.. |handmade/function-pugixml-.`child_value| replace:: to be documented in |handmade/function-pugixml-.`child_value|.rst - -.. |handmade/function-pugixml-child_value| replace:: to be documented in |handmade/function-pugixml-child_value|.rst - -.. |handmade/function-pugixml-find_child_by_attribute| replace:: to be documented in |handmade/function-pugixml-find_child_by_attribute|.rst - -.. |handmade/function-pugixml-first_element_by_path| replace:: to be documented in |handmade/function-pugixml-first_element_by_path|.rst - -.. |handmade/function-pugixml-.`offset_debug| replace:: to be documented in |handmade/function-pugixml-.`offset_debug|.rst - -.. |handmade/function-pugixml-.`hash_value| replace:: to be documented in |handmade/function-pugixml-.`hash_value|.rst - -.. |handmade/function-pugixml-path| replace:: to be documented in |handmade/function-pugixml-path|.rst - -.. |handmade/function-pugixml-print_to_string| replace:: to be documented in |handmade/function-pugixml-print_to_string|.rst - -.. |handmade/function-pugixml-==| replace:: to be documented in |handmade/function-pugixml-==|.rst - -.. |handmade/function-pugixml-!=| replace:: to be documented in |handmade/function-pugixml-!=|.rst - -.. |handmade/function-pugixml-set_name| replace:: to be documented in |handmade/function-pugixml-set_name|.rst - -.. |handmade/function-pugixml-set_value| replace:: to be documented in |handmade/function-pugixml-set_value|.rst - -.. |handmade/function-pugixml-append_child| replace:: to be documented in |handmade/function-pugixml-append_child|.rst - -.. |handmade/function-pugixml-prepend_child| replace:: to be documented in |handmade/function-pugixml-prepend_child|.rst - -.. |handmade/function-pugixml-insert_child_after| replace:: to be documented in |handmade/function-pugixml-insert_child_after|.rst - -.. |handmade/function-pugixml-insert_child_before| replace:: to be documented in |handmade/function-pugixml-insert_child_before|.rst - -.. |handmade/function-pugixml-remove_child| replace:: to be documented in |handmade/function-pugixml-remove_child|.rst - -.. |handmade/function-pugixml-remove_children| replace:: to be documented in |handmade/function-pugixml-remove_children|.rst - -.. |handmade/function-pugixml-append_attribute| replace:: to be documented in |handmade/function-pugixml-append_attribute|.rst - -.. |handmade/function-pugixml-prepend_attribute| replace:: to be documented in |handmade/function-pugixml-prepend_attribute|.rst - -.. |handmade/function-pugixml-insert_attribute_after| replace:: to be documented in |handmade/function-pugixml-insert_attribute_after|.rst - -.. |handmade/function-pugixml-insert_attribute_before| replace:: to be documented in |handmade/function-pugixml-insert_attribute_before|.rst - -.. |handmade/function-pugixml-remove_attribute| replace:: to be documented in |handmade/function-pugixml-remove_attribute|.rst - -.. |handmade/function-pugixml-remove_attributes| replace:: to be documented in |handmade/function-pugixml-remove_attributes|.rst - -.. |handmade/function-pugixml-append_copy| replace:: to be documented in |handmade/function-pugixml-append_copy|.rst - -.. |handmade/function-pugixml-prepend_copy| replace:: to be documented in |handmade/function-pugixml-prepend_copy|.rst - -.. |handmade/function-pugixml-append_move| replace:: to be documented in |handmade/function-pugixml-append_move|.rst - -.. |handmade/function-pugixml-prepend_move| replace:: to be documented in |handmade/function-pugixml-prepend_move|.rst - -.. |handmade/function-pugixml-as_string| replace:: to be documented in |handmade/function-pugixml-as_string|.rst - -.. |handmade/function-pugixml-as_int| replace:: to be documented in |handmade/function-pugixml-as_int|.rst - -.. |handmade/function-pugixml-as_uint| replace:: to be documented in |handmade/function-pugixml-as_uint|.rst - -.. |handmade/function-pugixml-as_double| replace:: to be documented in |handmade/function-pugixml-as_double|.rst - -.. |handmade/function-pugixml-as_float| replace:: to be documented in |handmade/function-pugixml-as_float|.rst - -.. |handmade/function-pugixml-as_bool| replace:: to be documented in |handmade/function-pugixml-as_bool|.rst - -.. |handmade/function-pugixml-.`next_attribute| replace:: to be documented in |handmade/function-pugixml-.`next_attribute|.rst - -.. |handmade/function-pugixml-.`previous_attribute| replace:: to be documented in |handmade/function-pugixml-.`previous_attribute|.rst - -.. |handmade/function-pugixml-set| replace:: to be documented in |handmade/function-pugixml-set|.rst - -.. |handmade/function-pugixml-as_int64| replace:: to be documented in |handmade/function-pugixml-as_int64|.rst - -.. |handmade/function-pugixml-as_uint64| replace:: to be documented in |handmade/function-pugixml-as_uint64|.rst - -.. |handmade/function-pugixml-.`data| replace:: to be documented in |handmade/function-pugixml-.`data|.rst - -.. |handmade/function-pugixml-xpath_compile| replace:: to be documented in |handmade/function-pugixml-xpath_compile|.rst - -.. |handmade/function-pugixml-.`return_type| replace:: to be documented in |handmade/function-pugixml-.`return_type|.rst - -.. |handmade/function-pugixml-.`result_description| replace:: to be documented in |handmade/function-pugixml-.`result_description|.rst - -.. |handmade/function-pugixml-.`result_offset| replace:: to be documented in |handmade/function-pugixml-.`result_offset|.rst - -.. |handmade/function-pugixml-evaluate_boolean| replace:: to be documented in |handmade/function-pugixml-evaluate_boolean|.rst - -.. |handmade/function-pugixml-evaluate_number| replace:: to be documented in |handmade/function-pugixml-evaluate_number|.rst - -.. |handmade/function-pugixml-evaluate_string| replace:: to be documented in |handmade/function-pugixml-evaluate_string|.rst - -.. |handmade/function-pugixml-evaluate_node_set| replace:: to be documented in |handmade/function-pugixml-evaluate_node_set|.rst - -.. |handmade/function-pugixml-evaluate_node| replace:: to be documented in |handmade/function-pugixml-evaluate_node|.rst - -.. |handmade/function-pugixml-select_node| replace:: to be documented in |handmade/function-pugixml-select_node|.rst - -.. |handmade/function-pugixml-select_nodes| replace:: to be documented in |handmade/function-pugixml-select_nodes|.rst - -.. |handmade/function-pugixml-.`node| replace:: to be documented in |handmade/function-pugixml-.`node|.rst - -.. |handmade/function-pugixml-.`attribute| replace:: to be documented in |handmade/function-pugixml-.`attribute|.rst - -.. |handmade/function-pugixml-.`size| replace:: to be documented in |handmade/function-pugixml-.`size|.rst - -.. |handmade/function-pugixml-.`empty| replace:: to be documented in |handmade/function-pugixml-.`empty|.rst - -.. |handmade/function-pugixml-.`first| replace:: to be documented in |handmade/function-pugixml-.`first|.rst - -.. |handmade/function-pugixml-at| replace:: to be documented in |handmade/function-pugixml-at|.rst - -.. |handmade/function-pugixml-sort| replace:: to be documented in |handmade/function-pugixml-sort|.rst - -.. |handmade/structure_annotation-pugixml-xml_attribute| replace:: to be documented in |handmade/structure_annotation-pugixml-xml_attribute|.rst - -.. |handmade/structure_annotation-pugixml-xml_text| replace:: to be documented in |handmade/structure_annotation-pugixml-xml_text|.rst - -.. |handmade/structure_annotation-pugixml-xml_node| replace:: to be documented in |handmade/structure_annotation-pugixml-xml_node|.rst - -.. |handmade/structure_annotation-pugixml-xpath_node| replace:: to be documented in |handmade/structure_annotation-pugixml-xpath_node|.rst - -.. |handmade/structure_annotation-pugixml-xpath_node_set| replace:: to be documented in |handmade/structure_annotation-pugixml-xpath_node_set|.rst - -.. |handmade/structure_annotation-pugixml-xpath_query| replace:: to be documented in |handmade/structure_annotation-pugixml-xpath_query|.rst - -.. |handmade/structure_annotation-pugixml-xpath_variable_set| replace:: to be documented in |handmade/structure_annotation-pugixml-xpath_variable_set|.rst - -.. |handmade/structure_annotation-pugixml-xml_document| replace:: to be documented in |handmade/structure_annotation-pugixml-xml_document|.rst - -.. |handmade/structure_annotation-pugixml-xml_parse_result| replace:: to be documented in |handmade/structure_annotation-pugixml-xml_parse_result|.rst - -.. |handmade/variable-pugixml-parse_minimal| replace:: to be documented in |handmade/variable-pugixml-parse_minimal|.rst - -.. |handmade/variable-pugixml-parse_pi| replace:: to be documented in |handmade/variable-pugixml-parse_pi|.rst - -.. |handmade/variable-pugixml-parse_comments| replace:: to be documented in |handmade/variable-pugixml-parse_comments|.rst - -.. |handmade/variable-pugixml-parse_cdata| replace:: to be documented in |handmade/variable-pugixml-parse_cdata|.rst - -.. |handmade/variable-pugixml-parse_ws_pcdata| replace:: to be documented in |handmade/variable-pugixml-parse_ws_pcdata|.rst - -.. |handmade/variable-pugixml-parse_escapes| replace:: to be documented in |handmade/variable-pugixml-parse_escapes|.rst - -.. |handmade/variable-pugixml-parse_eol| replace:: to be documented in |handmade/variable-pugixml-parse_eol|.rst - -.. |handmade/variable-pugixml-parse_wconv_attribute| replace:: to be documented in |handmade/variable-pugixml-parse_wconv_attribute|.rst - -.. |handmade/variable-pugixml-parse_wnorm_attribute| replace:: to be documented in |handmade/variable-pugixml-parse_wnorm_attribute|.rst - -.. |handmade/variable-pugixml-parse_declaration| replace:: to be documented in |handmade/variable-pugixml-parse_declaration|.rst - -.. |handmade/variable-pugixml-parse_doctype| replace:: to be documented in |handmade/variable-pugixml-parse_doctype|.rst - -.. |handmade/variable-pugixml-parse_ws_pcdata_single| replace:: to be documented in |handmade/variable-pugixml-parse_ws_pcdata_single|.rst - -.. |handmade/variable-pugixml-parse_trim_pcdata| replace:: to be documented in |handmade/variable-pugixml-parse_trim_pcdata|.rst - -.. |handmade/variable-pugixml-parse_fragment| replace:: to be documented in |handmade/variable-pugixml-parse_fragment|.rst - -.. |handmade/variable-pugixml-parse_embed_pcdata| replace:: to be documented in |handmade/variable-pugixml-parse_embed_pcdata|.rst - -.. |handmade/variable-pugixml-parse_merge_pcdata| replace:: to be documented in |handmade/variable-pugixml-parse_merge_pcdata|.rst - -.. |handmade/variable-pugixml-parse_default| replace:: to be documented in |handmade/variable-pugixml-parse_default|.rst - -.. |handmade/variable-pugixml-parse_full| replace:: to be documented in |handmade/variable-pugixml-parse_full|.rst - -.. |handmade/variable-pugixml-format_indent| replace:: to be documented in |handmade/variable-pugixml-format_indent|.rst - -.. |handmade/variable-pugixml-format_write_bom| replace:: to be documented in |handmade/variable-pugixml-format_write_bom|.rst - -.. |handmade/variable-pugixml-format_raw| replace:: to be documented in |handmade/variable-pugixml-format_raw|.rst - -.. |handmade/variable-pugixml-format_no_declaration| replace:: to be documented in |handmade/variable-pugixml-format_no_declaration|.rst - -.. |handmade/variable-pugixml-format_no_escapes| replace:: to be documented in |handmade/variable-pugixml-format_no_escapes|.rst - -.. |handmade/variable-pugixml-format_save_file_text| replace:: to be documented in |handmade/variable-pugixml-format_save_file_text|.rst - -.. |handmade/variable-pugixml-format_indent_attributes| replace:: to be documented in |handmade/variable-pugixml-format_indent_attributes|.rst - -.. |handmade/variable-pugixml-format_no_empty_element_tags| replace:: to be documented in |handmade/variable-pugixml-format_no_empty_element_tags|.rst - -.. |handmade/variable-pugixml-format_skip_control_chars| replace:: to be documented in |handmade/variable-pugixml-format_skip_control_chars|.rst - -.. |handmade/variable-pugixml-format_attribute_single_quote| replace:: to be documented in |handmade/variable-pugixml-format_attribute_single_quote|.rst - -.. |handmade/variable-pugixml-format_default| replace:: to be documented in |handmade/variable-pugixml-format_default|.rst - diff --git a/doc/source/stdlib/detail/quote.rst b/doc/source/stdlib/detail/quote.rst deleted file mode 100644 index 3a9192a06b..0000000000 --- a/doc/source/stdlib/detail/quote.rst +++ /dev/null @@ -1,26 +0,0 @@ -.. |detail/structure-quote-CaptureEntryInitData| replace:: to be documented in |detail/structure-quote-CaptureEntryInitData|.rst - -.. |detail/structure-quote-LineInfoInitData| replace:: to be documented in |detail/structure-quote-LineInfoInitData|.rst - -.. |detail/structure-quote-EnumEntryInitData| replace:: to be documented in |detail/structure-quote-EnumEntryInitData|.rst - -.. |detail/structure-quote-AnnotationArgumentInitData| replace:: to be documented in |detail/structure-quote-AnnotationArgumentInitData|.rst - -.. |detail/structure-quote-FileInfoInitData| replace:: to be documented in |detail/structure-quote-FileInfoInitData|.rst - -.. |detail/class-quote-QuoteConverter| replace:: to be documented in |detail/class-quote-QuoteConverter|.rst - -.. |detail/method-quote-QuoteConverter.visitExprQuote| replace:: to be documented in |detail/method-quote-QuoteConverter.visitExprQuote|.rst - -.. |detail/class-quote-QuotePass| replace:: to be documented in |detail/class-quote-QuotePass|.rst - -.. |detail/method-quote-QuotePass.apply| replace:: to be documented in |detail/method-quote-QuotePass.apply|.rst - -.. |detail/function-quote-clone| replace:: to be documented in |detail/function-quote-clone|.rst - -.. |detail/function-quote-clone_line_info| replace:: to be documented in |detail/function-quote-clone_line_info|.rst - -.. |detail/function-quote-clone_file_info| replace:: to be documented in |detail/function-quote-clone_file_info|.rst - -.. |detail/function-quote-cvt_to_mks| replace:: to be documented in |detail/function-quote-cvt_to_mks|.rst - diff --git a/doc/source/stdlib/detail/random.rst b/doc/source/stdlib/detail/random.rst deleted file mode 100644 index 4e2d878d2b..0000000000 --- a/doc/source/stdlib/detail/random.rst +++ /dev/null @@ -1,28 +0,0 @@ -.. |detail/function-random-each_random_uint| replace:: to be documented in |detail/function-random-each_random_uint|.rst - -.. |detail/function-random-random_seed| replace:: to be documented in |detail/function-random-random_seed|.rst - -.. |detail/function-random-random_seed2D| replace:: to be documented in |detail/function-random-random_seed2D|.rst - -.. |detail/function-random-random_int| replace:: to be documented in |detail/function-random-random_int|.rst - -.. |detail/function-random-random_big_int| replace:: to be documented in |detail/function-random-random_big_int|.rst - -.. |detail/function-random-random_uint| replace:: to be documented in |detail/function-random-random_uint|.rst - -.. |detail/function-random-random_int4| replace:: to be documented in |detail/function-random-random_int4|.rst - -.. |detail/function-random-random_float| replace:: to be documented in |detail/function-random-random_float|.rst - -.. |detail/function-random-random_float4| replace:: to be documented in |detail/function-random-random_float4|.rst - -.. |detail/function-random-random_unit_vector| replace:: to be documented in |detail/function-random-random_unit_vector|.rst - -.. |detail/function-random-random_in_unit_sphere| replace:: to be documented in |detail/function-random-random_in_unit_sphere|.rst - -.. |detail/function-random-random_in_unit_disk| replace:: to be documented in |detail/function-random-random_in_unit_disk|.rst - -.. |detail/variable-random-LCG_RAND_MAX| replace:: to be documented in |detail/variable-random-LCG_RAND_MAX|.rst - -.. |detail/variable-random-LCG_RAND_MAX_BIG| replace:: to be documented in |detail/variable-random-LCG_RAND_MAX_BIG|.rst - diff --git a/doc/source/stdlib/detail/reader_macro-json_boost-json.rst b/doc/source/stdlib/detail/reader_macro-json_boost-json.rst deleted file mode 100644 index ee0ee7d0f7..0000000000 --- a/doc/source/stdlib/detail/reader_macro-json_boost-json.rst +++ /dev/null @@ -1,8 +0,0 @@ -This macro implements embedding of the JSON object into the program:: - - var jsv = %json~ - { - "name": "main_window", - "value": 500, - "size": [1,2,3] - } %% diff --git a/doc/source/stdlib/detail/reader_macro-stringify-stringify.rst b/doc/source/stdlib/detail/reader_macro-stringify-stringify.rst deleted file mode 100644 index ec6cb9c7fe..0000000000 --- a/doc/source/stdlib/detail/reader_macro-stringify-stringify.rst +++ /dev/null @@ -1,7 +0,0 @@ -This macro implements embedding of the long string into the source code. :: - - var st = %stringify~ - This is a long string - with multiple lines - and special charactes like { this } and "that" - %% diff --git a/doc/source/stdlib/detail/refactor.rst b/doc/source/stdlib/detail/refactor.rst deleted file mode 100644 index 0f4e6b5615..0000000000 --- a/doc/source/stdlib/detail/refactor.rst +++ /dev/null @@ -1,26 +0,0 @@ -.. |detail/structure-refactor-ExtractMethodDesc| replace:: to be documented in |detail/structure-refactor-ExtractMethodDesc|.rst - -.. |detail/class-refactor-ExtractMethodMacro| replace:: to be documented in |detail/class-refactor-ExtractMethodMacro|.rst - -.. |detail/method-refactor-ExtractMethodMacro.verifyCall| replace:: to be documented in |detail/method-refactor-ExtractMethodMacro.verifyCall|.rst - -.. |detail/structure-refactor-ExtractVariableDesc| replace:: to be documented in |detail/structure-refactor-ExtractVariableDesc|.rst - -.. |detail/class-refactor-ExtractVariableMacro| replace:: to be documented in |detail/class-refactor-ExtractVariableMacro|.rst - -.. |detail/method-refactor-ExtractVariableMacro.visit| replace:: to be documented in |detail/method-refactor-ExtractVariableMacro.visit|.rst - -.. |detail/class-refactor-ExtractVariableFunction| replace:: to be documented in |detail/class-refactor-ExtractVariableFunction|.rst - -.. |detail/method-refactor-ExtractVariableFunction.transform| replace:: to be documented in |detail/method-refactor-ExtractVariableFunction.transform|.rst - -.. |detail/method-refactor-ExtractVariableFunction.verifyCall| replace:: to be documented in |detail/method-refactor-ExtractVariableFunction.verifyCall|.rst - -.. |detail/function-refactor-extract_method| replace:: to be documented in |detail/function-refactor-extract_method|.rst - -.. |detail/function-refactor-extract_expression| replace:: to be documented in |detail/function-refactor-extract_expression|.rst - -.. |detail/function-refactor-extract_variable_nonref| replace:: to be documented in |detail/function-refactor-extract_variable_nonref|.rst - -.. |detail/function-refactor-extract_variable_ref| replace:: to be documented in |detail/function-refactor-extract_variable_ref|.rst - diff --git a/doc/source/stdlib/detail/regex.rst b/doc/source/stdlib/detail/regex.rst deleted file mode 100644 index b39ce9256f..0000000000 --- a/doc/source/stdlib/detail/regex.rst +++ /dev/null @@ -1,44 +0,0 @@ -.. |handmade/typedef-regex-CharSet| replace:: to be documented in |handmade/typedef-regex-CharSet|.rst - -.. |handmade/typedef-regex-ReGenRandom| replace:: to be documented in |handmade/typedef-regex-ReGenRandom|.rst - -.. |handmade/typedef-regex-MaybeReNode| replace:: to be documented in |handmade/typedef-regex-MaybeReNode|.rst - -.. |handmade/enumeration-regex-ReOp| replace:: to be documented in |handmade/enumeration-regex-ReOp|.rst - -.. |handmade/structure-regex-ReNode| replace:: to be documented in |handmade/structure-regex-ReNode|.rst - -.. |handmade/structure-regex-Regex| replace:: to be documented in |handmade/structure-regex-Regex|.rst - -.. |handmade/function-regex-re_gen_get_rep_limit| replace:: to be documented in |handmade/function-regex-re_gen_get_rep_limit|.rst - -.. |handmade/function-regex-visit_top_down| replace:: to be documented in |handmade/function-regex-visit_top_down|.rst - -.. |handmade/function-regex-is_valid| replace:: to be documented in |handmade/function-regex-is_valid|.rst - -.. |handmade/function-regex-regex_compile| replace:: to be documented in |handmade/function-regex-regex_compile|.rst - -.. |handmade/function-regex-regex_match| replace:: to be documented in |handmade/function-regex-regex_match|.rst - -.. |handmade/function-regex-regex_group| replace:: to be documented in |handmade/function-regex-regex_group|.rst - -.. |handmade/function-regex-regex_foreach| replace:: to be documented in |handmade/function-regex-regex_foreach|.rst - -.. |handmade/function-regex-regex_replace| replace:: to be documented in |handmade/function-regex-regex_replace|.rst - -.. |handmade/function-regex-regex_search| replace:: to be documented in |handmade/function-regex-regex_search|.rst - -.. |handmade/function-regex-regex_split| replace:: to be documented in |handmade/function-regex-regex_split|.rst - -.. |handmade/function-regex-regex_match_all| replace:: to be documented in |handmade/function-regex-regex_match_all|.rst - -.. |handmade/function-regex-regex_group_by_name| replace:: to be documented in |handmade/function-regex-regex_group_by_name|.rst - -.. |handmade/function-regex-[]| replace:: to be documented in |handmade/function-regex-[]|.rst - -.. |handmade/function-regex-regex_debug| replace:: to be documented in |handmade/function-regex-regex_debug|.rst - -.. |handmade/function-regex-debug_set| replace:: to be documented in |handmade/function-regex-debug_set|.rst - -.. |handmade/function-regex-re_gen| replace:: to be documented in |handmade/function-regex-re_gen|.rst - diff --git a/doc/source/stdlib/detail/regex_boost.rst b/doc/source/stdlib/detail/regex_boost.rst deleted file mode 100644 index 04d787419f..0000000000 --- a/doc/source/stdlib/detail/regex_boost.rst +++ /dev/null @@ -1,6 +0,0 @@ -.. |handmade/class-regex_boost-RegexReader| replace:: to be documented in |handmade/class-regex_boost-RegexReader|.rst - -.. |handmade/method-regex_boost-RegexReader.accept| replace:: to be documented in |handmade/method-regex_boost-RegexReader.accept|.rst - -.. |handmade/method-regex_boost-RegexReader.visit| replace:: to be documented in |handmade/method-regex_boost-RegexReader.visit|.rst - diff --git a/doc/source/stdlib/detail/remove_call_args.rst b/doc/source/stdlib/detail/remove_call_args.rst deleted file mode 100644 index 076d8fc810..0000000000 --- a/doc/source/stdlib/detail/remove_call_args.rst +++ /dev/null @@ -1,6 +0,0 @@ -.. |detail/class-remove_call_args-RemoveCallArgsMacro| replace:: to be documented in |detail/class-remove_call_args-RemoveCallArgsMacro|.rst - -.. |detail/method-remove_call_args-RemoveCallArgsMacro.transform| replace:: to be documented in |detail/method-remove_call_args-RemoveCallArgsMacro.transform|.rst - -.. |detail/method-remove_call_args-RemoveCallArgsMacro.apply| replace:: to be documented in |detail/method-remove_call_args-RemoveCallArgsMacro.apply|.rst - diff --git a/doc/source/stdlib/detail/rst.rst b/doc/source/stdlib/detail/rst.rst deleted file mode 100644 index f7d5e324fe..0000000000 --- a/doc/source/stdlib/detail/rst.rst +++ /dev/null @@ -1,26 +0,0 @@ -.. |handmade/structure-rst-DocGroup| replace:: to be documented in |handmade/structure-rst-DocGroup|.rst - -.. |handmade/structure-rst-DocsHook| replace:: to be documented in |handmade/structure-rst-DocsHook|.rst - -.. |handmade/function-rst-safe_function_name| replace:: to be documented in |handmade/function-rst-safe_function_name|.rst - -.. |handmade/function-rst-make_group| replace:: to be documented in |handmade/function-rst-make_group|.rst - -.. |handmade/function-rst-document_enumerations| replace:: to be documented in |handmade/function-rst-document_enumerations|.rst - -.. |handmade/function-rst-append_to_group_by_regex| replace:: to be documented in |handmade/function-rst-append_to_group_by_regex|.rst - -.. |handmade/function-rst-group_by_regex| replace:: to be documented in |handmade/function-rst-group_by_regex|.rst - -.. |handmade/function-rst-hide_group| replace:: to be documented in |handmade/function-rst-hide_group|.rst - -.. |handmade/function-rst-document| replace:: to be documented in |handmade/function-rst-document|.rst - -.. |handmade/function-rst-documents| replace:: to be documented in |handmade/function-rst-documents|.rst - -.. |handmade/function-rst-function_label_file| replace:: to be documented in |handmade/function-rst-function_label_file|.rst - -.. |handmade/function-rst-describe_short| replace:: to be documented in |handmade/function-rst-describe_short|.rst - -.. |handmade/function-rst-document_enumeration| replace:: to be documented in |handmade/function-rst-document_enumeration|.rst - diff --git a/doc/source/stdlib/detail/rtti.rst b/doc/source/stdlib/detail/rtti.rst deleted file mode 100644 index 68ce98ba08..0000000000 --- a/doc/source/stdlib/detail/rtti.rst +++ /dev/null @@ -1,224 +0,0 @@ -.. |handmade/typedef-rtti-ProgramFlags| replace:: to be documented in |handmade/typedef-rtti-ProgramFlags|.rst - -.. |handmade/typedef-rtti-context_category_flags| replace:: to be documented in |handmade/typedef-rtti-context_category_flags|.rst - -.. |handmade/typedef-rtti-TypeInfoFlags| replace:: to be documented in |handmade/typedef-rtti-TypeInfoFlags|.rst - -.. |handmade/typedef-rtti-StructInfoFlags| replace:: to be documented in |handmade/typedef-rtti-StructInfoFlags|.rst - -.. |handmade/typedef-rtti-ModuleFlags| replace:: to be documented in |handmade/typedef-rtti-ModuleFlags|.rst - -.. |handmade/typedef-rtti-AnnotationDeclarationFlags| replace:: to be documented in |handmade/typedef-rtti-AnnotationDeclarationFlags|.rst - -.. |handmade/typedef-rtti-SimFunctionFlags| replace:: to be documented in |handmade/typedef-rtti-SimFunctionFlags|.rst - -.. |handmade/typedef-rtti-LocalVariableInfoFlags| replace:: to be documented in |handmade/typedef-rtti-LocalVariableInfoFlags|.rst - -.. |handmade/typedef-rtti-RttiValue| replace:: to be documented in |handmade/typedef-rtti-RttiValue|.rst - -.. |handmade/typedef-rtti-FileAccessPtr| replace:: to be documented in |handmade/typedef-rtti-FileAccessPtr|.rst - -.. |handmade/enumeration-rtti-CompilationError| replace:: to be documented in |handmade/enumeration-rtti-CompilationError|.rst - -.. |handmade/enumeration-rtti-ConstMatters| replace:: to be documented in |handmade/enumeration-rtti-ConstMatters|.rst - -.. |handmade/enumeration-rtti-RefMatters| replace:: to be documented in |handmade/enumeration-rtti-RefMatters|.rst - -.. |handmade/enumeration-rtti-TemporaryMatters| replace:: to be documented in |handmade/enumeration-rtti-TemporaryMatters|.rst - -.. |handmade/enumeration-rtti-Type| replace:: to be documented in |handmade/enumeration-rtti-Type|.rst - -.. |handmade/function-rtti-CodeOfPolicies| replace:: to be documented in |handmade/function-rtti-CodeOfPolicies|.rst - -.. |handmade/function-rtti-using| replace:: to be documented in |handmade/function-rtti-using|.rst - -.. |handmade/function-rtti-LineInfo| replace:: to be documented in |handmade/function-rtti-LineInfo|.rst - -.. |handmade/function-rtti-get_dim| replace:: to be documented in |handmade/function-rtti-get_dim|.rst - -.. |handmade/function-rtti-get_total_functions| replace:: to be documented in |handmade/function-rtti-get_total_functions|.rst - -.. |handmade/function-rtti-get_total_variables| replace:: to be documented in |handmade/function-rtti-get_total_variables|.rst - -.. |handmade/function-rtti-get_function_info| replace:: to be documented in |handmade/function-rtti-get_function_info|.rst - -.. |handmade/function-rtti-get_variable_info| replace:: to be documented in |handmade/function-rtti-get_variable_info|.rst - -.. |handmade/function-rtti-get_this_module| replace:: to be documented in |handmade/function-rtti-get_this_module|.rst - -.. |handmade/function-rtti-get_module| replace:: to be documented in |handmade/function-rtti-get_module|.rst - -.. |handmade/function-rtti-has_module| replace:: to be documented in |handmade/function-rtti-has_module|.rst - -.. |handmade/function-rtti-compile| replace:: to be documented in |handmade/function-rtti-compile|.rst - -.. |handmade/function-rtti-compile_file| replace:: to be documented in |handmade/function-rtti-compile_file|.rst - -.. |handmade/function-rtti-for_each_expected_error| replace:: to be documented in |handmade/function-rtti-for_each_expected_error|.rst - -.. |handmade/function-rtti-for_each_require_declaration| replace:: to be documented in |handmade/function-rtti-for_each_require_declaration|.rst - -.. |handmade/function-rtti-simulate| replace:: to be documented in |handmade/function-rtti-simulate|.rst - -.. |handmade/function-rtti-make_file_access| replace:: to be documented in |handmade/function-rtti-make_file_access|.rst - -.. |handmade/function-rtti-set_file_source| replace:: to be documented in |handmade/function-rtti-set_file_source|.rst - -.. |handmade/function-rtti-add_file_access_root| replace:: to be documented in |handmade/function-rtti-add_file_access_root|.rst - -.. |handmade/function-rtti-program_for_each_module| replace:: to be documented in |handmade/function-rtti-program_for_each_module|.rst - -.. |handmade/function-rtti-module_for_each_dependency| replace:: to be documented in |handmade/function-rtti-module_for_each_dependency|.rst - -.. |handmade/function-rtti-program_for_each_registered_module| replace:: to be documented in |handmade/function-rtti-program_for_each_registered_module|.rst - -.. |handmade/function-rtti-module_for_each_structure| replace:: to be documented in |handmade/function-rtti-module_for_each_structure|.rst - -.. |handmade/function-rtti-get_variable_value| replace:: to be documented in |handmade/function-rtti-get_variable_value|.rst - -.. |handmade/function-rtti-get_annotation_argument_value| replace:: to be documented in |handmade/function-rtti-get_annotation_argument_value|.rst - -.. |handmade/function-rtti-module_for_each_enumeration| replace:: to be documented in |handmade/function-rtti-module_for_each_enumeration|.rst - -.. |handmade/function-rtti-module_for_each_function| replace:: to be documented in |handmade/function-rtti-module_for_each_function|.rst - -.. |handmade/function-rtti-module_for_each_generic| replace:: to be documented in |handmade/function-rtti-module_for_each_generic|.rst - -.. |handmade/function-rtti-module_for_each_global| replace:: to be documented in |handmade/function-rtti-module_for_each_global|.rst - -.. |handmade/function-rtti-module_for_each_annotation| replace:: to be documented in |handmade/function-rtti-module_for_each_annotation|.rst - -.. |handmade/function-rtti-rtti_builtin_structure_for_each_annotation| replace:: to be documented in |handmade/function-rtti-rtti_builtin_structure_for_each_annotation|.rst - -.. |handmade/function-rtti-basic_struct_for_each_field| replace:: to be documented in |handmade/function-rtti-basic_struct_for_each_field|.rst - -.. |handmade/function-rtti-basic_struct_for_each_parent| replace:: to be documented in |handmade/function-rtti-basic_struct_for_each_parent|.rst - -.. |handmade/function-rtti-builtin_is_same_type| replace:: to be documented in |handmade/function-rtti-builtin_is_same_type|.rst - -.. |handmade/function-rtti-get_type_size| replace:: to be documented in |handmade/function-rtti-get_type_size|.rst - -.. |handmade/function-rtti-get_type_align| replace:: to be documented in |handmade/function-rtti-get_type_align|.rst - -.. |handmade/function-rtti-get_tuple_field_offset| replace:: to be documented in |handmade/function-rtti-get_tuple_field_offset|.rst - -.. |handmade/function-rtti-get_variant_field_offset| replace:: to be documented in |handmade/function-rtti-get_variant_field_offset|.rst - -.. |handmade/function-rtti-is_compatible_cast| replace:: to be documented in |handmade/function-rtti-is_compatible_cast|.rst - -.. |handmade/function-rtti-get_das_type_name| replace:: to be documented in |handmade/function-rtti-get_das_type_name|.rst - -.. |handmade/function-rtti-add_annotation_argument| replace:: to be documented in |handmade/function-rtti-add_annotation_argument|.rst - -.. |handmade/function-rtti-sprint_data| replace:: to be documented in |handmade/function-rtti-sprint_data|.rst - -.. |handmade/function-rtti-describe| replace:: to be documented in |handmade/function-rtti-describe|.rst - -.. |handmade/function-rtti-get_mangled_name| replace:: to be documented in |handmade/function-rtti-get_mangled_name|.rst - -.. |handmade/function-rtti-get_function_by_mnh| replace:: to be documented in |handmade/function-rtti-get_function_by_mnh|.rst - -.. |handmade/function-rtti-get_line_info| replace:: to be documented in |handmade/function-rtti-get_line_info|.rst - -.. |handmade/function-rtti-this_context| replace:: to be documented in |handmade/function-rtti-this_context|.rst - -.. |handmade/function-rtti-get_function_by_mangled_name_hash| replace:: to be documented in |handmade/function-rtti-get_function_by_mangled_name_hash|.rst - -.. |handmade/function-rtti-get_function_mangled_name_hash| replace:: to be documented in |handmade/function-rtti-get_function_mangled_name_hash|.rst - -.. |handmade/function-rtti-lock_this_context| replace:: to be documented in |handmade/function-rtti-lock_this_context|.rst - -.. |handmade/function-rtti-lock_context| replace:: to be documented in |handmade/function-rtti-lock_context|.rst - -.. |handmade/function-rtti-lock_mutex| replace:: to be documented in |handmade/function-rtti-lock_mutex|.rst - -.. |handmade/function-rtti-get_function_address| replace:: to be documented in |handmade/function-rtti-get_function_address|.rst - -.. |handmade/function-rtti-get_table_key_index| replace:: to be documented in |handmade/function-rtti-get_table_key_index|.rst - -.. |handmade/function-rtti-each| replace:: to be documented in |handmade/function-rtti-each|.rst - -.. |handmade/function-rtti-structure_for_each_annotation| replace:: to be documented in |handmade/function-rtti-structure_for_each_annotation|.rst - -.. |handmade/function-rtti-is_same_type| replace:: to be documented in |handmade/function-rtti-is_same_type|.rst - -.. |handmade/function-rtti-context_for_each_function| replace:: to be documented in |handmade/function-rtti-context_for_each_function|.rst - -.. |handmade/function-rtti-context_for_each_variable| replace:: to be documented in |handmade/function-rtti-context_for_each_variable|.rst - -.. |handmade/function-rtti-each_dim| replace:: to be documented in |handmade/function-rtti-each_dim|.rst - -.. |handmade/function-rtti-arg_types| replace:: to be documented in |handmade/function-rtti-arg_types|.rst - -.. |handmade/function-rtti-arg_names| replace:: to be documented in |handmade/function-rtti-arg_names|.rst - -.. |handmade/function-rtti-class_info| replace:: to be documented in |handmade/function-rtti-class_info|.rst - -.. |handmade/function-rtti-type_info| replace:: to be documented in |handmade/function-rtti-type_info|.rst - -.. |handmade/function-rtti-RttiValue_nothing| replace:: to be documented in |handmade/function-rtti-RttiValue_nothing|.rst - -.. |handmade/structure_annotation-rtti-CodeOfPolicies| replace:: to be documented in |handmade/structure_annotation-rtti-CodeOfPolicies|.rst - -.. |handmade/structure_annotation-rtti-FileInfo| replace:: to be documented in |handmade/structure_annotation-rtti-FileInfo|.rst - -.. |handmade/structure_annotation-rtti-LineInfo| replace:: to be documented in |handmade/structure_annotation-rtti-LineInfo|.rst - -.. |handmade/any_annotation-rtti-recursive_mutex| replace:: to be documented in |handmade/any_annotation-rtti-recursive_mutex|.rst - -.. |handmade/structure_annotation-rtti-Context| replace:: to be documented in |handmade/structure_annotation-rtti-Context|.rst - -.. |handmade/structure_annotation-rtti-Error| replace:: to be documented in |handmade/structure_annotation-rtti-Error|.rst - -.. |handmade/structure_annotation-rtti-FileAccess| replace:: to be documented in |handmade/structure_annotation-rtti-FileAccess|.rst - -.. |handmade/structure_annotation-rtti-Module| replace:: to be documented in |handmade/structure_annotation-rtti-Module|.rst - -.. |handmade/structure_annotation-rtti-ModuleGroup| replace:: to be documented in |handmade/structure_annotation-rtti-ModuleGroup|.rst - -.. |handmade/structure_annotation-rtti-AnnotationArgument| replace:: to be documented in |handmade/structure_annotation-rtti-AnnotationArgument|.rst - -.. |handmade/any_annotation-rtti-AnnotationArguments| replace:: to be documented in |handmade/any_annotation-rtti-AnnotationArguments|.rst - -.. |handmade/any_annotation-rtti-AnnotationArgumentList| replace:: to be documented in |handmade/any_annotation-rtti-AnnotationArgumentList|.rst - -.. |handmade/structure_annotation-rtti-Program| replace:: to be documented in |handmade/structure_annotation-rtti-Program|.rst - -.. |handmade/structure_annotation-rtti-Annotation| replace:: to be documented in |handmade/structure_annotation-rtti-Annotation|.rst - -.. |handmade/structure_annotation-rtti-AnnotationDeclaration| replace:: to be documented in |handmade/structure_annotation-rtti-AnnotationDeclaration|.rst - -.. |handmade/any_annotation-rtti-AnnotationList| replace:: to be documented in |handmade/any_annotation-rtti-AnnotationList|.rst - -.. |handmade/structure_annotation-rtti-TypeAnnotation| replace:: to be documented in |handmade/structure_annotation-rtti-TypeAnnotation|.rst - -.. |handmade/structure_annotation-rtti-BasicStructureAnnotation| replace:: to be documented in |handmade/structure_annotation-rtti-BasicStructureAnnotation|.rst - -.. |handmade/structure_annotation-rtti-EnumValueInfo| replace:: to be documented in |handmade/structure_annotation-rtti-EnumValueInfo|.rst - -.. |handmade/structure_annotation-rtti-EnumInfo| replace:: to be documented in |handmade/structure_annotation-rtti-EnumInfo|.rst - -.. |handmade/structure_annotation-rtti-StructInfo| replace:: to be documented in |handmade/structure_annotation-rtti-StructInfo|.rst - -.. |handmade/structure_annotation-rtti-TypeInfo| replace:: to be documented in |handmade/structure_annotation-rtti-TypeInfo|.rst - -.. |handmade/structure_annotation-rtti-VarInfo| replace:: to be documented in |handmade/structure_annotation-rtti-VarInfo|.rst - -.. |handmade/structure_annotation-rtti-LocalVariableInfo| replace:: to be documented in |handmade/structure_annotation-rtti-LocalVariableInfo|.rst - -.. |handmade/structure_annotation-rtti-FuncInfo| replace:: to be documented in |handmade/structure_annotation-rtti-FuncInfo|.rst - -.. |handmade/structure_annotation-rtti-SimFunction| replace:: to be documented in |handmade/structure_annotation-rtti-SimFunction|.rst - -.. |handmade/structure_annotation-rtti-DebugInfoHelper| replace:: to be documented in |handmade/structure_annotation-rtti-DebugInfoHelper|.rst - -.. |handmade/variable-rtti-FUNCINFO_INIT| replace:: to be documented in |handmade/variable-rtti-FUNCINFO_INIT|.rst - -.. |handmade/variable-rtti-FUNCINFO_BUILTIN| replace:: to be documented in |handmade/variable-rtti-FUNCINFO_BUILTIN|.rst - -.. |handmade/variable-rtti-FUNCINFO_PRIVATE| replace:: to be documented in |handmade/variable-rtti-FUNCINFO_PRIVATE|.rst - -.. |handmade/variable-rtti-FUNCINFO_SHUTDOWN| replace:: to be documented in |handmade/variable-rtti-FUNCINFO_SHUTDOWN|.rst - -.. |handmade/variable-rtti-FUNCINFO_LATE_INIT| replace:: to be documented in |handmade/variable-rtti-FUNCINFO_LATE_INIT|.rst - diff --git a/doc/source/stdlib/detail/safe_addr.rst b/doc/source/stdlib/detail/safe_addr.rst deleted file mode 100644 index 4567d7b963..0000000000 --- a/doc/source/stdlib/detail/safe_addr.rst +++ /dev/null @@ -1,20 +0,0 @@ -.. |detail/class-safe_addr-SafeAddrMacro| replace:: to be documented in |detail/class-safe_addr-SafeAddrMacro|.rst - -.. |detail/method-safe_addr-SafeAddrMacro.transform| replace:: to be documented in |detail/method-safe_addr-SafeAddrMacro.transform|.rst - -.. |detail/class-safe_addr-SharedAddrMacro| replace:: to be documented in |detail/class-safe_addr-SharedAddrMacro|.rst - -.. |detail/method-safe_addr-SharedAddrMacro.verifyCall| replace:: to be documented in |detail/method-safe_addr-SharedAddrMacro.verifyCall|.rst - -.. |detail/class-safe_addr-TempValueMacro| replace:: to be documented in |detail/class-safe_addr-TempValueMacro|.rst - -.. |detail/method-safe_addr-TempValueMacro.verifyCall| replace:: to be documented in |detail/method-safe_addr-TempValueMacro.verifyCall|.rst - -.. |detail/function-safe_addr-safe_addr| replace:: to be documented in |detail/function-safe_addr-safe_addr|.rst - -.. |detail/function-safe_addr-temp_ptr| replace:: to be documented in |detail/function-safe_addr-temp_ptr|.rst - -.. |detail/function-safe_addr-shared_addr| replace:: to be documented in |detail/function-safe_addr-shared_addr|.rst - -.. |detail/function-safe_addr-temp_value| replace:: to be documented in |detail/function-safe_addr-temp_value|.rst - diff --git a/doc/source/stdlib/detail/soa.rst b/doc/source/stdlib/detail/soa.rst deleted file mode 100644 index 3b014e398e..0000000000 --- a/doc/source/stdlib/detail/soa.rst +++ /dev/null @@ -1,46 +0,0 @@ -.. |detail/structure-soa-SOA_INDEX| replace:: to be documented in |detail/structure-soa-SOA_INDEX|.rst - -.. |detail/class-soa-SoaCallMacro| replace:: to be documented in |detail/class-soa-SoaCallMacro|.rst - -.. |detail/method-soa-SoaCallMacro.transform| replace:: to be documented in |detail/method-soa-SoaCallMacro.transform|.rst - -.. |detail/class-soa-SoaStructMacro| replace:: to be documented in |detail/class-soa-SoaStructMacro|.rst - -.. |detail/method-soa-SoaStructMacro.apply| replace:: to be documented in |detail/method-soa-SoaStructMacro.apply|.rst - -.. |detail/method-soa-SoaStructMacro.make_field_type| replace:: to be documented in |detail/method-soa-SoaStructMacro.make_field_type|.rst - -.. |detail/method-soa-SoaStructMacro.make_soa_type| replace:: to be documented in |detail/method-soa-SoaStructMacro.make_soa_type|.rst - -.. |detail/method-soa-SoaStructMacro.make_index_op| replace:: to be documented in |detail/method-soa-SoaStructMacro.make_index_op|.rst - -.. |detail/method-soa-SoaStructMacro.make_length| replace:: to be documented in |detail/method-soa-SoaStructMacro.make_length|.rst - -.. |detail/method-soa-SoaStructMacro.make_any_named_call| replace:: to be documented in |detail/method-soa-SoaStructMacro.make_any_named_call|.rst - -.. |detail/method-soa-SoaStructMacro.make_erase| replace:: to be documented in |detail/method-soa-SoaStructMacro.make_erase|.rst - -.. |detail/method-soa-SoaStructMacro.make_named_call| replace:: to be documented in |detail/method-soa-SoaStructMacro.make_named_call|.rst - -.. |detail/method-soa-SoaStructMacro.make_int_call| replace:: to be documented in |detail/method-soa-SoaStructMacro.make_int_call|.rst - -.. |detail/method-soa-SoaStructMacro.make_no_arg_call| replace:: to be documented in |detail/method-soa-SoaStructMacro.make_no_arg_call|.rst - -.. |detail/method-soa-SoaStructMacro.make_capacity| replace:: to be documented in |detail/method-soa-SoaStructMacro.make_capacity|.rst - -.. |detail/method-soa-SoaStructMacro.make_swap| replace:: to be documented in |detail/method-soa-SoaStructMacro.make_swap|.rst - -.. |detail/method-soa-SoaStructMacro.make_from_array| replace:: to be documented in |detail/method-soa-SoaStructMacro.make_from_array|.rst - -.. |detail/method-soa-SoaStructMacro.make_to_array| replace:: to be documented in |detail/method-soa-SoaStructMacro.make_to_array|.rst - -.. |detail/class-soa-CollectAndReplaceIteratorFields| replace:: to be documented in |detail/class-soa-CollectAndReplaceIteratorFields|.rst - -.. |detail/method-soa-CollectAndReplaceIteratorFields.visitExprField| replace:: to be documented in |detail/method-soa-CollectAndReplaceIteratorFields.visitExprField|.rst - -.. |detail/class-soa-SoaForLoop| replace:: to be documented in |detail/class-soa-SoaForLoop|.rst - -.. |detail/method-soa-SoaForLoop.visitExprFor| replace:: to be documented in |detail/method-soa-SoaForLoop.visitExprFor|.rst - -.. |detail/function-soa-.| replace:: to be documented in |detail/function-soa-.|.rst - diff --git a/doc/source/stdlib/detail/sort_boost.rst b/doc/source/stdlib/detail/sort_boost.rst deleted file mode 100644 index b3f18de97a..0000000000 --- a/doc/source/stdlib/detail/sort_boost.rst +++ /dev/null @@ -1,4 +0,0 @@ -.. |detail/class-sort_boost-QsortMacro| replace:: to be documented in |detail/class-sort_boost-QsortMacro|.rst - -.. |detail/method-sort_boost-QsortMacro.visit| replace:: to be documented in |detail/method-sort_boost-QsortMacro.visit|.rst - diff --git a/doc/source/stdlib/detail/static_let.rst b/doc/source/stdlib/detail/static_let.rst deleted file mode 100644 index f304836cb2..0000000000 --- a/doc/source/stdlib/detail/static_let.rst +++ /dev/null @@ -1,8 +0,0 @@ -.. |detail/class-static_let-StaticLetMacro| replace:: to be documented in |detail/class-static_let-StaticLetMacro|.rst - -.. |detail/method-static_let-StaticLetMacro.transform| replace:: to be documented in |detail/method-static_let-StaticLetMacro.transform|.rst - -.. |detail/function-static_let-static_let| replace:: to be documented in |detail/function-static_let-static_let|.rst - -.. |detail/function-static_let-static_let_finalize| replace:: to be documented in |detail/function-static_let-static_let_finalize|.rst - diff --git a/doc/source/stdlib/detail/stringify.rst b/doc/source/stdlib/detail/stringify.rst deleted file mode 100644 index 51eab2bca0..0000000000 --- a/doc/source/stdlib/detail/stringify.rst +++ /dev/null @@ -1,6 +0,0 @@ -.. |detail/class-stringify-LongStringReader| replace:: to be documented in |detail/class-stringify-LongStringReader|.rst - -.. |detail/method-stringify-LongStringReader.accept| replace:: to be documented in |detail/method-stringify-LongStringReader.accept|.rst - -.. |detail/method-stringify-LongStringReader.visit| replace:: to be documented in |detail/method-stringify-LongStringReader.visit|.rst - diff --git a/doc/source/stdlib/detail/strings.rst b/doc/source/stdlib/detail/strings.rst deleted file mode 100644 index 53a023676f..0000000000 --- a/doc/source/stdlib/detail/strings.rst +++ /dev/null @@ -1,156 +0,0 @@ -.. |handmade/enumeration-strings-ConversionResult| replace:: to be documented in |handmade/enumeration-strings-ConversionResult|.rst - -.. |handmade/function-strings-delete_string| replace:: to be documented in |handmade/function-strings-delete_string|.rst - -.. |handmade/function-strings-build_string| replace:: to be documented in |handmade/function-strings-build_string|.rst - -.. |handmade/function-strings-build_hash| replace:: to be documented in |handmade/function-strings-build_hash|.rst - -.. |handmade/function-strings-peek_data| replace:: to be documented in |handmade/function-strings-peek_data|.rst - -.. |handmade/function-strings-modify_data| replace:: to be documented in |handmade/function-strings-modify_data|.rst - -.. |handmade/function-strings-write| replace:: to be documented in |handmade/function-strings-write|.rst - -.. |handmade/function-strings-write_char| replace:: to be documented in |handmade/function-strings-write_char|.rst - -.. |handmade/function-strings-write_chars| replace:: to be documented in |handmade/function-strings-write_chars|.rst - -.. |handmade/function-strings-write_escape_string| replace:: to be documented in |handmade/function-strings-write_escape_string|.rst - -.. |handmade/function-strings-fmt| replace:: to be documented in |handmade/function-strings-fmt|.rst - -.. |handmade/function-strings-format| replace:: to be documented in |handmade/function-strings-format|.rst - -.. |handmade/function-strings-string| replace:: to be documented in |handmade/function-strings-string|.rst - -.. |handmade/function-strings-builtin_strdup| replace:: to be documented in |handmade/function-strings-builtin_strdup|.rst - -.. |handmade/function-strings-character_at| replace:: to be documented in |handmade/function-strings-character_at|.rst - -.. |handmade/function-strings-character_uat| replace:: to be documented in |handmade/function-strings-character_uat|.rst - -.. |handmade/function-strings-repeat| replace:: to be documented in |handmade/function-strings-repeat|.rst - -.. |handmade/function-strings-to_char| replace:: to be documented in |handmade/function-strings-to_char|.rst - -.. |handmade/function-strings-ends_with| replace:: to be documented in |handmade/function-strings-ends_with|.rst - -.. |handmade/function-strings-starts_with| replace:: to be documented in |handmade/function-strings-starts_with|.rst - -.. |handmade/function-strings-strip| replace:: to be documented in |handmade/function-strings-strip|.rst - -.. |handmade/function-strings-strip_right| replace:: to be documented in |handmade/function-strings-strip_right|.rst - -.. |handmade/function-strings-strip_left| replace:: to be documented in |handmade/function-strings-strip_left|.rst - -.. |handmade/function-strings-chop| replace:: to be documented in |handmade/function-strings-chop|.rst - -.. |handmade/function-strings-slice| replace:: to be documented in |handmade/function-strings-slice|.rst - -.. |handmade/function-strings-find| replace:: to be documented in |handmade/function-strings-find|.rst - -.. |handmade/function-strings-rfind| replace:: to be documented in |handmade/function-strings-rfind|.rst - -.. |handmade/function-strings-length| replace:: to be documented in |handmade/function-strings-length|.rst - -.. |handmade/function-strings-reverse| replace:: to be documented in |handmade/function-strings-reverse|.rst - -.. |handmade/function-strings-append| replace:: to be documented in |handmade/function-strings-append|.rst - -.. |handmade/function-strings-resize| replace:: to be documented in |handmade/function-strings-resize|.rst - -.. |handmade/function-strings-to_upper| replace:: to be documented in |handmade/function-strings-to_upper|.rst - -.. |handmade/function-strings-to_lower| replace:: to be documented in |handmade/function-strings-to_lower|.rst - -.. |handmade/function-strings-to_lower_in_place| replace:: to be documented in |handmade/function-strings-to_lower_in_place|.rst - -.. |handmade/function-strings-to_upper_in_place| replace:: to be documented in |handmade/function-strings-to_upper_in_place|.rst - -.. |handmade/function-strings-builtin_string_split_by_char| replace:: to be documented in |handmade/function-strings-builtin_string_split_by_char|.rst - -.. |handmade/function-strings-builtin_string_split| replace:: to be documented in |handmade/function-strings-builtin_string_split|.rst - -.. |handmade/function-strings-int8| replace:: to be documented in |handmade/function-strings-int8|.rst - -.. |handmade/function-strings-uint8| replace:: to be documented in |handmade/function-strings-uint8|.rst - -.. |handmade/function-strings-int16| replace:: to be documented in |handmade/function-strings-int16|.rst - -.. |handmade/function-strings-uint16| replace:: to be documented in |handmade/function-strings-uint16|.rst - -.. |handmade/function-strings-int| replace:: to be documented in |handmade/function-strings-int|.rst - -.. |handmade/function-strings-uint| replace:: to be documented in |handmade/function-strings-uint|.rst - -.. |handmade/function-strings-int64| replace:: to be documented in |handmade/function-strings-int64|.rst - -.. |handmade/function-strings-uint64| replace:: to be documented in |handmade/function-strings-uint64|.rst - -.. |handmade/function-strings-float| replace:: to be documented in |handmade/function-strings-float|.rst - -.. |handmade/function-strings-double| replace:: to be documented in |handmade/function-strings-double|.rst - -.. |handmade/function-strings-to_int8| replace:: to be documented in |handmade/function-strings-to_int8|.rst - -.. |handmade/function-strings-to_uint8| replace:: to be documented in |handmade/function-strings-to_uint8|.rst - -.. |handmade/function-strings-to_int16| replace:: to be documented in |handmade/function-strings-to_int16|.rst - -.. |handmade/function-strings-to_uint16| replace:: to be documented in |handmade/function-strings-to_uint16|.rst - -.. |handmade/function-strings-to_int| replace:: to be documented in |handmade/function-strings-to_int|.rst - -.. |handmade/function-strings-to_uint| replace:: to be documented in |handmade/function-strings-to_uint|.rst - -.. |handmade/function-strings-to_int64| replace:: to be documented in |handmade/function-strings-to_int64|.rst - -.. |handmade/function-strings-to_uint64| replace:: to be documented in |handmade/function-strings-to_uint64|.rst - -.. |handmade/function-strings-to_cpp_float| replace:: to be documented in |handmade/function-strings-to_cpp_float|.rst - -.. |handmade/function-strings-to_float| replace:: to be documented in |handmade/function-strings-to_float|.rst - -.. |handmade/function-strings-to_double| replace:: to be documented in |handmade/function-strings-to_double|.rst - -.. |handmade/function-strings-escape| replace:: to be documented in |handmade/function-strings-escape|.rst - -.. |handmade/function-strings-unescape| replace:: to be documented in |handmade/function-strings-unescape|.rst - -.. |handmade/function-strings-safe_unescape| replace:: to be documented in |handmade/function-strings-safe_unescape|.rst - -.. |handmade/function-strings-replace| replace:: to be documented in |handmade/function-strings-replace|.rst - -.. |handmade/function-strings-rtrim| replace:: to be documented in |handmade/function-strings-rtrim|.rst - -.. |handmade/function-strings-ltrim| replace:: to be documented in |handmade/function-strings-ltrim|.rst - -.. |handmade/function-strings-trim| replace:: to be documented in |handmade/function-strings-trim|.rst - -.. |handmade/function-strings-is_alpha| replace:: to be documented in |handmade/function-strings-is_alpha|.rst - -.. |handmade/function-strings-is_alnum| replace:: to be documented in |handmade/function-strings-is_alnum|.rst - -.. |handmade/function-strings-is_hex| replace:: to be documented in |handmade/function-strings-is_hex|.rst - -.. |handmade/function-strings-is_tab_or_space| replace:: to be documented in |handmade/function-strings-is_tab_or_space|.rst - -.. |handmade/function-strings-is_new_line| replace:: to be documented in |handmade/function-strings-is_new_line|.rst - -.. |handmade/function-strings-is_white_space| replace:: to be documented in |handmade/function-strings-is_white_space|.rst - -.. |handmade/function-strings-is_number| replace:: to be documented in |handmade/function-strings-is_number|.rst - -.. |handmade/function-strings-is_char_in_set| replace:: to be documented in |handmade/function-strings-is_char_in_set|.rst - -.. |handmade/function-strings-set_total| replace:: to be documented in |handmade/function-strings-set_total|.rst - -.. |handmade/function-strings-set_element| replace:: to be documented in |handmade/function-strings-set_element|.rst - -.. |handmade/function-strings-compare_ignore_case| replace:: to be documented in |handmade/function-strings-compare_ignore_case|.rst - -.. |handmade/function-strings-reserve_string_buffer| replace:: to be documented in |handmade/function-strings-reserve_string_buffer|.rst - -.. |handmade/structure_annotation-strings-StringBuilderWriter| replace:: to be documented in |handmade/structure_annotation-strings-StringBuilderWriter|.rst - diff --git a/doc/source/stdlib/detail/strings_boost.rst b/doc/source/stdlib/detail/strings_boost.rst deleted file mode 100644 index af99353fbb..0000000000 --- a/doc/source/stdlib/detail/strings_boost.rst +++ /dev/null @@ -1,38 +0,0 @@ -.. |handmade/function-strings_boost-wide| replace:: to be documented in |handmade/function-strings_boost-wide|.rst - -.. |handmade/function-strings_boost-split| replace:: to be documented in |handmade/function-strings_boost-split|.rst - -.. |handmade/function-strings_boost-split_by_chars| replace:: to be documented in |handmade/function-strings_boost-split_by_chars|.rst - -.. |handmade/function-strings_boost-levenshtein_distance| replace:: to be documented in |handmade/function-strings_boost-levenshtein_distance|.rst - -.. |handmade/function-strings_boost-levenshtein_distance_fast| replace:: to be documented in |handmade/function-strings_boost-levenshtein_distance_fast|.rst - -.. |handmade/function-strings_boost-replace_multiple| replace:: to be documented in |handmade/function-strings_boost-replace_multiple|.rst - -.. |handmade/function-strings_boost-contains| replace:: to be documented in |handmade/function-strings_boost-contains|.rst - -.. |handmade/function-strings_boost-count| replace:: to be documented in |handmade/function-strings_boost-count|.rst - -.. |handmade/function-strings_boost-last_index_of| replace:: to be documented in |handmade/function-strings_boost-last_index_of|.rst - -.. |handmade/function-strings_boost-pad_right| replace:: to be documented in |handmade/function-strings_boost-pad_right|.rst - -.. |handmade/function-strings_boost-pad_left| replace:: to be documented in |handmade/function-strings_boost-pad_left|.rst - -.. |handmade/function-strings_boost-trim_prefix| replace:: to be documented in |handmade/function-strings_boost-trim_prefix|.rst - -.. |handmade/function-strings_boost-trim_suffix| replace:: to be documented in |handmade/function-strings_boost-trim_suffix|.rst - -.. |handmade/function-strings_boost-capitalize| replace:: to be documented in |handmade/function-strings_boost-capitalize|.rst - -.. |handmade/function-strings_boost-is_null_or_whitespace| replace:: to be documented in |handmade/function-strings_boost-is_null_or_whitespace|.rst - -.. |handmade/function-strings_boost-glob_match| replace:: to be documented in |handmade/function-strings_boost-glob_match|.rst - -.. |handmade/function-strings_boost-join| replace:: to be documented in |handmade/function-strings_boost-join|.rst - -.. |handmade/function-strings_boost-is_character_at| replace:: to be documented in |handmade/function-strings_boost-is_character_at|.rst - -.. |handmade/function-strings_boost-eq| replace:: to be documented in |handmade/function-strings_boost-eq|.rst - diff --git a/doc/source/stdlib/detail/structure-archive-Archive.rst b/doc/source/stdlib/detail/structure-archive-Archive.rst deleted file mode 100644 index f44d731b90..0000000000 --- a/doc/source/stdlib/detail/structure-archive-Archive.rst +++ /dev/null @@ -1,4 +0,0 @@ -Archive is a combination of serialization stream, and state (version, and reading status). -Version of the archive format. -True if the archive is for reading, false for writing. -Serialization stream. diff --git a/doc/source/stdlib/detail/structure-ast_cursor-CursorHit.rst b/doc/source/stdlib/detail/structure-ast_cursor-CursorHit.rst deleted file mode 100644 index e5f133874a..0000000000 --- a/doc/source/stdlib/detail/structure-ast_cursor-CursorHit.rst +++ /dev/null @@ -1,4 +0,0 @@ -Raw pointer to the expression node (valid while the program lives). -Enclosing function, or null for expressions in global scope. -Extracted name for named nodes (variable name, call name, field name, operator). -Expression RTTI type string: "ExprVar", "ExprCall", "ExprField", etc. diff --git a/doc/source/stdlib/detail/structure-ast_used-OnlyUsedTypes.rst b/doc/source/stdlib/detail/structure-ast_used-OnlyUsedTypes.rst deleted file mode 100644 index 5988cfef24..0000000000 --- a/doc/source/stdlib/detail/structure-ast_used-OnlyUsedTypes.rst +++ /dev/null @@ -1,3 +0,0 @@ -Collection of all structure and enumeration types that are used in the AST. -all structure types used -all enumeration types used diff --git a/doc/source/stdlib/detail/structure-bool_array-BoolArray.rst b/doc/source/stdlib/detail/structure-bool_array-BoolArray.rst deleted file mode 100644 index e726da3cf0..0000000000 --- a/doc/source/stdlib/detail/structure-bool_array-BoolArray.rst +++ /dev/null @@ -1 +0,0 @@ -A dynamic array of booleans, stored as bits. diff --git a/doc/source/stdlib/detail/structure-cuckoo_hash_table-TCuckooHashTable.rst b/doc/source/stdlib/detail/structure-cuckoo_hash_table-TCuckooHashTable.rst deleted file mode 100644 index 0c345504b9..0000000000 --- a/doc/source/stdlib/detail/structure-cuckoo_hash_table-TCuckooHashTable.rst +++ /dev/null @@ -1 +0,0 @@ -Cuckoo hash table using two hash functions for collision resolution. diff --git a/doc/source/stdlib/detail/structure-dap-Breakpoint.rst b/doc/source/stdlib/detail/structure-dap-Breakpoint.rst deleted file mode 100644 index 61684d6e9a..0000000000 --- a/doc/source/stdlib/detail/structure-dap-Breakpoint.rst +++ /dev/null @@ -1,6 +0,0 @@ -A breakpoint with verification status and location. -Unique identifier for the breakpoint. -Whether the breakpoint has been verified by the debugger. -Source file containing the breakpoint. -Actual line number of the breakpoint. -Optional message about the breakpoint state. diff --git a/doc/source/stdlib/detail/structure-dap-BreakpointEvent.rst b/doc/source/stdlib/detail/structure-dap-BreakpointEvent.rst deleted file mode 100644 index eb7cbc1754..0000000000 --- a/doc/source/stdlib/detail/structure-dap-BreakpointEvent.rst +++ /dev/null @@ -1,3 +0,0 @@ -Event body indicating a breakpoint status change. -Reason for the event: changed, new, or removed. -The breakpoint whose status changed. diff --git a/doc/source/stdlib/detail/structure-dap-Capabilities.rst b/doc/source/stdlib/detail/structure-dap-Capabilities.rst deleted file mode 100644 index 277659d6bc..0000000000 --- a/doc/source/stdlib/detail/structure-dap-Capabilities.rst +++ /dev/null @@ -1,9 +0,0 @@ -Debugger capabilities reported in the initialize response. -Whether the adapter supports the configurationDone request. -Whether the adapter supports the restart request. -Whether the adapter supports terminating the debuggee. -Whether the adapter supports the terminate request. -Whether the adapter supports exception options. -Whether the adapter supports exception filter options. -Whether the adapter supports delayed stack trace loading. -Whether the adapter supports data breakpoints. diff --git a/doc/source/stdlib/detail/structure-dap-ContinueArguments.rst b/doc/source/stdlib/detail/structure-dap-ContinueArguments.rst deleted file mode 100644 index 5cc58c4255..0000000000 --- a/doc/source/stdlib/detail/structure-dap-ContinueArguments.rst +++ /dev/null @@ -1,2 +0,0 @@ -Arguments for the continue request. -Thread to continue. diff --git a/doc/source/stdlib/detail/structure-dap-DataBreakpoint.rst b/doc/source/stdlib/detail/structure-dap-DataBreakpoint.rst deleted file mode 100644 index 789b11d9c1..0000000000 --- a/doc/source/stdlib/detail/structure-dap-DataBreakpoint.rst +++ /dev/null @@ -1,7 +0,0 @@ -A data breakpoint that triggers on memory access. -Identifier for the data to watch. -Access type that triggers the breakpoint: read, write, or readWrite. -Optional expression condition for the breakpoint. -Optional hit count condition for the breakpoint. -Human-readable description of the breakpoint. -Whether the breakpoint is enabled. diff --git a/doc/source/stdlib/detail/structure-dap-DataBreakpointInfoArguments.rst b/doc/source/stdlib/detail/structure-dap-DataBreakpointInfoArguments.rst deleted file mode 100644 index 61cdf70139..0000000000 --- a/doc/source/stdlib/detail/structure-dap-DataBreakpointInfoArguments.rst +++ /dev/null @@ -1,3 +0,0 @@ -Arguments for the dataBreakpointInfo request. -Reference to the variable container. -Name of the variable. diff --git a/doc/source/stdlib/detail/structure-dap-DataBreakpointInfoResponse.rst b/doc/source/stdlib/detail/structure-dap-DataBreakpointInfoResponse.rst deleted file mode 100644 index 0e808405e1..0000000000 --- a/doc/source/stdlib/detail/structure-dap-DataBreakpointInfoResponse.rst +++ /dev/null @@ -1,3 +0,0 @@ -Response body for the dataBreakpointInfo request. -Identifier for the data, used when setting a data breakpoint. -Human-readable description of the data. diff --git a/doc/source/stdlib/detail/structure-dap-DisconnectArguments.rst b/doc/source/stdlib/detail/structure-dap-DisconnectArguments.rst deleted file mode 100644 index 6470ff8e28..0000000000 --- a/doc/source/stdlib/detail/structure-dap-DisconnectArguments.rst +++ /dev/null @@ -1,4 +0,0 @@ -Arguments for the DAP disconnect request. -Whether to restart the debuggee after disconnecting. -Whether to terminate the debuggee when disconnecting. -Whether to suspend the debuggee when disconnecting. diff --git a/doc/source/stdlib/detail/structure-dap-EvaluateArguments.rst b/doc/source/stdlib/detail/structure-dap-EvaluateArguments.rst deleted file mode 100644 index e0e0f8c7e5..0000000000 --- a/doc/source/stdlib/detail/structure-dap-EvaluateArguments.rst +++ /dev/null @@ -1,4 +0,0 @@ -Arguments for the evaluate request. -Expression to evaluate. -Stack frame in which to evaluate the expression. -Context in which the expression is evaluated (e.g. watch, repl, hover). diff --git a/doc/source/stdlib/detail/structure-dap-EvaluateResponse.rst b/doc/source/stdlib/detail/structure-dap-EvaluateResponse.rst deleted file mode 100644 index ec95db4898..0000000000 --- a/doc/source/stdlib/detail/structure-dap-EvaluateResponse.rst +++ /dev/null @@ -1,5 +0,0 @@ -Response body for the evaluate request. -Type of the evaluation result. -String representation of the evaluation result. -Reference to child variables of the result, if any. -Number of indexed child variables in the result. diff --git a/doc/source/stdlib/detail/structure-dap-InitializeRequestArguments.rst b/doc/source/stdlib/detail/structure-dap-InitializeRequestArguments.rst deleted file mode 100644 index c423826b0d..0000000000 --- a/doc/source/stdlib/detail/structure-dap-InitializeRequestArguments.rst +++ /dev/null @@ -1 +0,0 @@ -Arguments for the DAP initialize request. diff --git a/doc/source/stdlib/detail/structure-dap-NextArguments.rst b/doc/source/stdlib/detail/structure-dap-NextArguments.rst deleted file mode 100644 index 7a1ed6af71..0000000000 --- a/doc/source/stdlib/detail/structure-dap-NextArguments.rst +++ /dev/null @@ -1,2 +0,0 @@ -Arguments for the next (step over) request. -Thread to step over. diff --git a/doc/source/stdlib/detail/structure-dap-OutputEventBody.rst b/doc/source/stdlib/detail/structure-dap-OutputEventBody.rst deleted file mode 100644 index 06ae28da5c..0000000000 --- a/doc/source/stdlib/detail/structure-dap-OutputEventBody.rst +++ /dev/null @@ -1,3 +0,0 @@ -Body of the output event for debugger console messages. -Category of the output (e.g. console, stdout, stderr). -The output text. diff --git a/doc/source/stdlib/detail/structure-dap-PauseArguments.rst b/doc/source/stdlib/detail/structure-dap-PauseArguments.rst deleted file mode 100644 index f8eb6f02c7..0000000000 --- a/doc/source/stdlib/detail/structure-dap-PauseArguments.rst +++ /dev/null @@ -1,2 +0,0 @@ -Arguments for the pause request. -Thread to pause. diff --git a/doc/source/stdlib/detail/structure-dap-Scope.rst b/doc/source/stdlib/detail/structure-dap-Scope.rst deleted file mode 100644 index a2a0afde9d..0000000000 --- a/doc/source/stdlib/detail/structure-dap-Scope.rst +++ /dev/null @@ -1,3 +0,0 @@ -A named variable scope with a variables reference. -Name of the scope (e.g. Locals, Arguments). -Reference used to retrieve the variables of this scope. diff --git a/doc/source/stdlib/detail/structure-dap-ScopesArguments.rst b/doc/source/stdlib/detail/structure-dap-ScopesArguments.rst deleted file mode 100644 index 0b159f5efe..0000000000 --- a/doc/source/stdlib/detail/structure-dap-ScopesArguments.rst +++ /dev/null @@ -1,2 +0,0 @@ -Arguments for the scopes request. -Stack frame for which to retrieve scopes. diff --git a/doc/source/stdlib/detail/structure-dap-ScopesResponseBody.rst b/doc/source/stdlib/detail/structure-dap-ScopesResponseBody.rst deleted file mode 100644 index b4bacac33a..0000000000 --- a/doc/source/stdlib/detail/structure-dap-ScopesResponseBody.rst +++ /dev/null @@ -1,2 +0,0 @@ -Response body for the scopes request. -Array of scopes for the given frame. diff --git a/doc/source/stdlib/detail/structure-dap-SetBreakpointsArguments.rst b/doc/source/stdlib/detail/structure-dap-SetBreakpointsArguments.rst deleted file mode 100644 index c605f0cdff..0000000000 --- a/doc/source/stdlib/detail/structure-dap-SetBreakpointsArguments.rst +++ /dev/null @@ -1,4 +0,0 @@ -Arguments for the setBreakpoints request. -Source file for which breakpoints are set. -Array of source breakpoints to set. -Whether the source has been modified since last build. diff --git a/doc/source/stdlib/detail/structure-dap-SetBreakpointsResponse.rst b/doc/source/stdlib/detail/structure-dap-SetBreakpointsResponse.rst deleted file mode 100644 index cf0b3a90bc..0000000000 --- a/doc/source/stdlib/detail/structure-dap-SetBreakpointsResponse.rst +++ /dev/null @@ -1,2 +0,0 @@ -Response body for the setBreakpoints request. -Array of breakpoints with their verification status. diff --git a/doc/source/stdlib/detail/structure-dap-SetDataBreakpointsArguments.rst b/doc/source/stdlib/detail/structure-dap-SetDataBreakpointsArguments.rst deleted file mode 100644 index 3931f5734f..0000000000 --- a/doc/source/stdlib/detail/structure-dap-SetDataBreakpointsArguments.rst +++ /dev/null @@ -1,2 +0,0 @@ -Arguments for the setDataBreakpoints request. -Array of data breakpoints to set. diff --git a/doc/source/stdlib/detail/structure-dap-Source.rst b/doc/source/stdlib/detail/structure-dap-Source.rst deleted file mode 100644 index 7fb7631e5c..0000000000 --- a/doc/source/stdlib/detail/structure-dap-Source.rst +++ /dev/null @@ -1,3 +0,0 @@ -A source file descriptor with name and path. -Short name of the source. -Full file-system path of the source. diff --git a/doc/source/stdlib/detail/structure-dap-SourceBreakpoint.rst b/doc/source/stdlib/detail/structure-dap-SourceBreakpoint.rst deleted file mode 100644 index 354d7e4f55..0000000000 --- a/doc/source/stdlib/detail/structure-dap-SourceBreakpoint.rst +++ /dev/null @@ -1,2 +0,0 @@ -A breakpoint specified by source location line number. -Line number of the breakpoint. diff --git a/doc/source/stdlib/detail/structure-dap-StackFrame.rst b/doc/source/stdlib/detail/structure-dap-StackFrame.rst deleted file mode 100644 index 76c1333ac1..0000000000 --- a/doc/source/stdlib/detail/structure-dap-StackFrame.rst +++ /dev/null @@ -1,6 +0,0 @@ -A stack frame with source location and identifier. -Unique identifier for the stack frame. -Name of the frame, typically the function name. -Source file of the frame. -Line number in the source file. -Column number in the source file. diff --git a/doc/source/stdlib/detail/structure-dap-StackTraceArguments.rst b/doc/source/stdlib/detail/structure-dap-StackTraceArguments.rst deleted file mode 100644 index 51d68bac55..0000000000 --- a/doc/source/stdlib/detail/structure-dap-StackTraceArguments.rst +++ /dev/null @@ -1,4 +0,0 @@ -Arguments for the stackTrace request. -Thread for which to retrieve the stack trace. -Index of the first frame to return. -Maximum number of frames to return. diff --git a/doc/source/stdlib/detail/structure-dap-StackTraceResponseBody.rst b/doc/source/stdlib/detail/structure-dap-StackTraceResponseBody.rst deleted file mode 100644 index 734d011b83..0000000000 --- a/doc/source/stdlib/detail/structure-dap-StackTraceResponseBody.rst +++ /dev/null @@ -1,3 +0,0 @@ -Response body for the stackTrace request. -Array of stack frames. -Total number of frames available. diff --git a/doc/source/stdlib/detail/structure-dap-StepInArguments.rst b/doc/source/stdlib/detail/structure-dap-StepInArguments.rst deleted file mode 100644 index 63cac45c46..0000000000 --- a/doc/source/stdlib/detail/structure-dap-StepInArguments.rst +++ /dev/null @@ -1,2 +0,0 @@ -Arguments for the stepIn request. -Thread to step into. diff --git a/doc/source/stdlib/detail/structure-dap-StepOutArguments.rst b/doc/source/stdlib/detail/structure-dap-StepOutArguments.rst deleted file mode 100644 index 49e1fb7841..0000000000 --- a/doc/source/stdlib/detail/structure-dap-StepOutArguments.rst +++ /dev/null @@ -1,2 +0,0 @@ -Arguments for the stepOut request. -Thread to step out of. diff --git a/doc/source/stdlib/detail/structure-dap-Thread.rst b/doc/source/stdlib/detail/structure-dap-Thread.rst deleted file mode 100644 index 56ba203cf8..0000000000 --- a/doc/source/stdlib/detail/structure-dap-Thread.rst +++ /dev/null @@ -1,3 +0,0 @@ -A thread with an identifier and name. -Unique identifier for the thread. -Human-readable name of the thread. diff --git a/doc/source/stdlib/detail/structure-dap-ThreadEvent.rst b/doc/source/stdlib/detail/structure-dap-ThreadEvent.rst deleted file mode 100644 index 2e39fc9cb5..0000000000 --- a/doc/source/stdlib/detail/structure-dap-ThreadEvent.rst +++ /dev/null @@ -1,3 +0,0 @@ -Event body indicating a thread started or exited. -Reason for the event: started or exited. -Thread identifier. diff --git a/doc/source/stdlib/detail/structure-dap-ThreadsResponseBody.rst b/doc/source/stdlib/detail/structure-dap-ThreadsResponseBody.rst deleted file mode 100644 index ef44b6c4b3..0000000000 --- a/doc/source/stdlib/detail/structure-dap-ThreadsResponseBody.rst +++ /dev/null @@ -1,2 +0,0 @@ -Response body for the threads request. -Array of threads. diff --git a/doc/source/stdlib/detail/structure-dap-Variable.rst b/doc/source/stdlib/detail/structure-dap-Variable.rst deleted file mode 100644 index b08c8e6c32..0000000000 --- a/doc/source/stdlib/detail/structure-dap-Variable.rst +++ /dev/null @@ -1,6 +0,0 @@ -A variable with name, value, and type information. -Name of the variable. -String representation of the variable's value. -Reference to child variables, if any. -Type of the variable. -Number of indexed child variables. diff --git a/doc/source/stdlib/detail/structure-dap-VariablesArguments.rst b/doc/source/stdlib/detail/structure-dap-VariablesArguments.rst deleted file mode 100644 index bba1443214..0000000000 --- a/doc/source/stdlib/detail/structure-dap-VariablesArguments.rst +++ /dev/null @@ -1,4 +0,0 @@ -Arguments for the variables request. -Reference to the variable container to expand. -Start index of variables to return (for paging). -Number of variables to return (for paging). diff --git a/doc/source/stdlib/detail/structure-dap-VariablesResponseBody.rst b/doc/source/stdlib/detail/structure-dap-VariablesResponseBody.rst deleted file mode 100644 index 363404825e..0000000000 --- a/doc/source/stdlib/detail/structure-dap-VariablesResponseBody.rst +++ /dev/null @@ -1,2 +0,0 @@ -Response body for the variables request. -Array of variables. diff --git a/doc/source/stdlib/detail/structure-das_source_formatter-FormatterCtx.rst b/doc/source/stdlib/detail/structure-das_source_formatter-FormatterCtx.rst deleted file mode 100644 index c78936a93c..0000000000 --- a/doc/source/stdlib/detail/structure-das_source_formatter-FormatterCtx.rst +++ /dev/null @@ -1 +0,0 @@ -Formatting context tracking indentation and state. diff --git a/doc/source/stdlib/detail/structure-das_source_formatter-FormatterToken.rst b/doc/source/stdlib/detail/structure-das_source_formatter-FormatterToken.rst deleted file mode 100644 index d2d5fe47fc..0000000000 --- a/doc/source/stdlib/detail/structure-das_source_formatter-FormatterToken.rst +++ /dev/null @@ -1 +0,0 @@ -An output token with text and formatting metadata. diff --git a/doc/source/stdlib/detail/structure-das_source_formatter-ParenCounter.rst b/doc/source/stdlib/detail/structure-das_source_formatter-ParenCounter.rst deleted file mode 100644 index 8fa36a7164..0000000000 --- a/doc/source/stdlib/detail/structure-das_source_formatter-ParenCounter.rst +++ /dev/null @@ -1 +0,0 @@ -Parenthesis/bracket depth counter for formatting. diff --git a/doc/source/stdlib/detail/structure-das_source_formatter-Token.rst b/doc/source/stdlib/detail/structure-das_source_formatter-Token.rst deleted file mode 100644 index 8c21b73b72..0000000000 --- a/doc/source/stdlib/detail/structure-das_source_formatter-Token.rst +++ /dev/null @@ -1 +0,0 @@ -A parsed source token with type, text, and position. diff --git a/doc/source/stdlib/detail/structure-das_source_formatter-TokenTemplate.rst b/doc/source/stdlib/detail/structure-das_source_formatter-TokenTemplate.rst deleted file mode 100644 index 033d232832..0000000000 --- a/doc/source/stdlib/detail/structure-das_source_formatter-TokenTemplate.rst +++ /dev/null @@ -1 +0,0 @@ -Pattern describing a token for template matching. diff --git a/doc/source/stdlib/detail/structure-debug_eval-Result.rst b/doc/source/stdlib/detail/structure-debug_eval-Result.rst deleted file mode 100644 index ffacb05a8c..0000000000 --- a/doc/source/stdlib/detail/structure-debug_eval-Result.rst +++ /dev/null @@ -1,5 +0,0 @@ -Result of evaluating a debug expression. -Type information of the result. -Raw value storage for the result. -Pointer to the result data, if available. -Error message, empty if evaluation succeeded. diff --git a/doc/source/stdlib/detail/structure-debug_eval-TokenStream.rst b/doc/source/stdlib/detail/structure-debug_eval-TokenStream.rst deleted file mode 100644 index 39304fb49a..0000000000 --- a/doc/source/stdlib/detail/structure-debug_eval-TokenStream.rst +++ /dev/null @@ -1,5 +0,0 @@ -Token stream for parsing debug expressions. -Iterator over lexed tokens. -Buffered array of tokens. -Accumulated parsing errors. -Named variable lookup table for expression evaluation. diff --git a/doc/source/stdlib/detail/structure-decs-Archetype.rst b/doc/source/stdlib/detail/structure-decs-Archetype.rst deleted file mode 100644 index 24a6399f22..0000000000 --- a/doc/source/stdlib/detail/structure-decs-Archetype.rst +++ /dev/null @@ -1,5 +0,0 @@ -ECS archetype. Archetype is unique combination of components. -hash of the archetype (combination of component hashes) -list of components in the archetype -number of entities in the archetype -index of the 'eid' component in the components array diff --git a/doc/source/stdlib/detail/structure-decs-CTypeInfo.rst b/doc/source/stdlib/detail/structure-decs-CTypeInfo.rst deleted file mode 100644 index 20d0f49c92..0000000000 --- a/doc/source/stdlib/detail/structure-decs-CTypeInfo.rst +++ /dev/null @@ -1,13 +0,0 @@ -Type information for the individual component subtype. -Consists of type name and collection of type-specific routines to control type values during its lifetime, serialization, etc. -basic type of the component -mangled name of the type -full name of the type -hash of the type -size of the type -function to erase component value -function to clone component value -function to serialize component value -function to dump component value as text -function to make TypeInfo for the component type -function to perform GC marking on the component value diff --git a/doc/source/stdlib/detail/structure-decs-Component.rst b/doc/source/stdlib/detail/structure-decs-Component.rst deleted file mode 100644 index 24e1790fc8..0000000000 --- a/doc/source/stdlib/detail/structure-decs-Component.rst +++ /dev/null @@ -1,7 +0,0 @@ -Single ECS component. Contains component name, data, and data layout. -name of the component -hash of the component -stride of the component data -raw data of the component -type information of the component -this is here so that GC can find real representation of data diff --git a/doc/source/stdlib/detail/structure-decs-ComponentValue.rst b/doc/source/stdlib/detail/structure-decs-ComponentValue.rst deleted file mode 100644 index 56a4df9af8..0000000000 --- a/doc/source/stdlib/detail/structure-decs-ComponentValue.rst +++ /dev/null @@ -1,4 +0,0 @@ -Value of the component during creation or transformation. -name of the component -type information of the component -raw data of the component diff --git a/doc/source/stdlib/detail/structure-decs-DecsPass.rst b/doc/source/stdlib/detail/structure-decs-DecsPass.rst deleted file mode 100644 index c8ce489bb6..0000000000 --- a/doc/source/stdlib/detail/structure-decs-DecsPass.rst +++ /dev/null @@ -1,4 +0,0 @@ -Individual pass of the update of the ECS system. -Contains pass name and list of all pass callbacks. -name of the pass -list of all pass callbacks diff --git a/doc/source/stdlib/detail/structure-decs-DecsState.rst b/doc/source/stdlib/detail/structure-decs-DecsState.rst deleted file mode 100644 index 587a2d9fe4..0000000000 --- a/doc/source/stdlib/detail/structure-decs-DecsState.rst +++ /dev/null @@ -1,9 +0,0 @@ -Entire state of the ECS system. -Contains archetypes, entities and entity free-list, entity lookup table, all archetypes and archetype lookups, etc. -lookup of archetype by its hash -all archetypes in the system -list of free entity IDs -lookup of entity by its ID -lookup of component type info by its name -all ECS requests -lookup of ECS request by its hash diff --git a/doc/source/stdlib/detail/structure-decs-DeferAction.rst b/doc/source/stdlib/detail/structure-decs-DeferAction.rst deleted file mode 100644 index 318f03cf3e..0000000000 --- a/doc/source/stdlib/detail/structure-decs-DeferAction.rst +++ /dev/null @@ -1,3 +0,0 @@ -Individual deferred action. -entity id involved in the action -deferred action lambda diff --git a/doc/source/stdlib/detail/structure-decs-EcsRequest.rst b/doc/source/stdlib/detail/structure-decs-EcsRequest.rst deleted file mode 100644 index caa7dd98ae..0000000000 --- a/doc/source/stdlib/detail/structure-decs-EcsRequest.rst +++ /dev/null @@ -1,7 +0,0 @@ -Individual ECS requests. Contains list of required components, list of components which are required to be absent. -Caches list of archetypes, which match the request. -hash of the request -required components -required components which are not present -sorted list of matching archetypes -location of the request in the code diff --git a/doc/source/stdlib/detail/structure-decs-EcsRequestPos.rst b/doc/source/stdlib/detail/structure-decs-EcsRequestPos.rst deleted file mode 100644 index d9aec9f664..0000000000 --- a/doc/source/stdlib/detail/structure-decs-EcsRequestPos.rst +++ /dev/null @@ -1,3 +0,0 @@ -Location of the ECS request in the code (source file and line number). -source file -line number diff --git a/doc/source/stdlib/detail/structure-decs-EntityId.rst b/doc/source/stdlib/detail/structure-decs-EntityId.rst deleted file mode 100644 index 8cc0387ab4..0000000000 --- a/doc/source/stdlib/detail/structure-decs-EntityId.rst +++ /dev/null @@ -1,2 +0,0 @@ -Unique identifier of the entity. Consists of id (index in the data array) and generation. -index of the entity diff --git a/doc/source/stdlib/detail/structure-decs_state-EcsArchetypeView.rst b/doc/source/stdlib/detail/structure-decs_state-EcsArchetypeView.rst deleted file mode 100644 index d440af6a52..0000000000 --- a/doc/source/stdlib/detail/structure-decs_state-EcsArchetypeView.rst +++ /dev/null @@ -1 +0,0 @@ -Read-only view of an ECS archetype for debug inspection. diff --git a/doc/source/stdlib/detail/structure-decs_state-EcsComponentView.rst b/doc/source/stdlib/detail/structure-decs_state-EcsComponentView.rst deleted file mode 100644 index 36f3fb8ad5..0000000000 --- a/doc/source/stdlib/detail/structure-decs_state-EcsComponentView.rst +++ /dev/null @@ -1 +0,0 @@ -Read-only view of an ECS component for debug inspection. diff --git a/doc/source/stdlib/detail/structure-decs_state-EcsRequestView.rst b/doc/source/stdlib/detail/structure-decs_state-EcsRequestView.rst deleted file mode 100644 index 216a0756f9..0000000000 --- a/doc/source/stdlib/detail/structure-decs_state-EcsRequestView.rst +++ /dev/null @@ -1 +0,0 @@ -Read-only view of an ECS request for debug inspection. diff --git a/doc/source/stdlib/detail/structure-faker-Faker.rst b/doc/source/stdlib/detail/structure-faker-Faker.rst deleted file mode 100644 index 025a2e3f5d..0000000000 --- a/doc/source/stdlib/detail/structure-faker-Faker.rst +++ /dev/null @@ -1,5 +0,0 @@ -Instance of the faker with all the settings inside. -minimal faker's year -faker year's range -fakers random number generator -maximal length of generated string diff --git a/doc/source/stdlib/detail/structure-faker-MonthNameAndDay.rst b/doc/source/stdlib/detail/structure-faker-MonthNameAndDay.rst deleted file mode 100644 index 297ad6add0..0000000000 --- a/doc/source/stdlib/detail/structure-faker-MonthNameAndDay.rst +++ /dev/null @@ -1 +0,0 @@ -Month name with its number of days. diff --git a/doc/source/stdlib/detail/structure-flat_hash_table-TFlatHashTable.rst b/doc/source/stdlib/detail/structure-flat_hash_table-TFlatHashTable.rst deleted file mode 100644 index 0a4d9710da..0000000000 --- a/doc/source/stdlib/detail/structure-flat_hash_table-TFlatHashTable.rst +++ /dev/null @@ -1 +0,0 @@ -Open-addressing hash table with linear probing. diff --git a/doc/source/stdlib/detail/structure-json-JsonValue.rst b/doc/source/stdlib/detail/structure-json-JsonValue.rst deleted file mode 100644 index 9d80fe4665..0000000000 --- a/doc/source/stdlib/detail/structure-json-JsonValue.rst +++ /dev/null @@ -1,2 +0,0 @@ -JSON value, wraps any JSON element. -value of the JSON element diff --git a/doc/source/stdlib/detail/structure-json-TokenAt.rst b/doc/source/stdlib/detail/structure-json-TokenAt.rst deleted file mode 100644 index 1d782cd66d..0000000000 --- a/doc/source/stdlib/detail/structure-json-TokenAt.rst +++ /dev/null @@ -1,4 +0,0 @@ -JSON parsing token. Contains token and its position. -token value -token position in the input stream -token position in the input stream diff --git a/doc/source/stdlib/detail/structure-json_boost-JsonFieldState.rst b/doc/source/stdlib/detail/structure-json_boost-JsonFieldState.rst deleted file mode 100644 index 40d74b30dd..0000000000 --- a/doc/source/stdlib/detail/structure-json_boost-JsonFieldState.rst +++ /dev/null @@ -1,6 +0,0 @@ -Per-field serialization options for JSON struct conversion. -name of the field in JSON -whether to parse enum as integer -whether to unescape strings -whether to embed the field -whether the field is optional diff --git a/doc/source/stdlib/detail/structure-linq_boost-FoldSequence.rst b/doc/source/stdlib/detail/structure-linq_boost-FoldSequence.rst deleted file mode 100644 index ecd23e7583..0000000000 --- a/doc/source/stdlib/detail/structure-linq_boost-FoldSequence.rst +++ /dev/null @@ -1 +0,0 @@ -Internal struct representing a fold operation sequence. diff --git a/doc/source/stdlib/detail/structure-linq_boost-LinqCall.rst b/doc/source/stdlib/detail/structure-linq_boost-LinqCall.rst deleted file mode 100644 index 8dfc46e698..0000000000 --- a/doc/source/stdlib/detail/structure-linq_boost-LinqCall.rst +++ /dev/null @@ -1 +0,0 @@ -Internal struct representing a chained LINQ method call. diff --git a/doc/source/stdlib/detail/structure-macro_boost-CapturedVariable.rst b/doc/source/stdlib/detail/structure-macro_boost-CapturedVariable.rst deleted file mode 100644 index fa4dcadfbf..0000000000 --- a/doc/source/stdlib/detail/structure-macro_boost-CapturedVariable.rst +++ /dev/null @@ -1,4 +0,0 @@ -Stored captured variable together with the `ExprVar` which uses it -captured variable -expression which uses the variable -this one indicates if its used by reference and does not come from argument. its only used in JIT diff --git a/doc/source/stdlib/detail/structure-match-MatchError.rst b/doc/source/stdlib/detail/structure-match-MatchError.rst deleted file mode 100644 index df9c904d5f..0000000000 --- a/doc/source/stdlib/detail/structure-match-MatchError.rst +++ /dev/null @@ -1,3 +0,0 @@ -Stores a single pattern-matching compilation error with its source location. -error message text -source location of the error diff --git a/doc/source/stdlib/detail/structure-match-MatchTo.rst b/doc/source/stdlib/detail/structure-match-MatchTo.rst deleted file mode 100644 index d8d27dff39..0000000000 --- a/doc/source/stdlib/detail/structure-match-MatchTo.rst +++ /dev/null @@ -1,6 +0,0 @@ -Accumulates the result of pattern analysis for one match arm. -boolean conditions that must all be true for the arm to match -captured variables (name → access expression) -prefix statements (e.g. temporaries for match_copy) -errors encountered during pattern analysis -true if a hard error occurred (unresolved types etc.) diff --git a/doc/source/stdlib/detail/structure-math_boost-AABB.rst b/doc/source/stdlib/detail/structure-math_boost-AABB.rst deleted file mode 100644 index 183ee17f91..0000000000 --- a/doc/source/stdlib/detail/structure-math_boost-AABB.rst +++ /dev/null @@ -1,3 +0,0 @@ -axis aligned bounding box -min coordinates -max coordinates diff --git a/doc/source/stdlib/detail/structure-math_boost-AABR.rst b/doc/source/stdlib/detail/structure-math_boost-AABR.rst deleted file mode 100644 index 18e34753bb..0000000000 --- a/doc/source/stdlib/detail/structure-math_boost-AABR.rst +++ /dev/null @@ -1,3 +0,0 @@ -axis aligned bounding rectangle -min coordinates -max coordinates diff --git a/doc/source/stdlib/detail/structure-math_boost-Ray.rst b/doc/source/stdlib/detail/structure-math_boost-Ray.rst deleted file mode 100644 index 9e7ef34caa..0000000000 --- a/doc/source/stdlib/detail/structure-math_boost-Ray.rst +++ /dev/null @@ -1,3 +0,0 @@ -ray (direction and origin) -direction -origin diff --git a/doc/source/stdlib/detail/structure-profiler-PerfContext.rst b/doc/source/stdlib/detail/structure-profiler-PerfContext.rst deleted file mode 100644 index b12193b32e..0000000000 --- a/doc/source/stdlib/detail/structure-profiler-PerfContext.rst +++ /dev/null @@ -1 +0,0 @@ -Per-context profiling data with event history. diff --git a/doc/source/stdlib/detail/structure-profiler-PerfEvent.rst b/doc/source/stdlib/detail/structure-profiler-PerfEvent.rst deleted file mode 100644 index 77f8829962..0000000000 --- a/doc/source/stdlib/detail/structure-profiler-PerfEvent.rst +++ /dev/null @@ -1 +0,0 @@ -Recorded performance event with mangled name. diff --git a/doc/source/stdlib/detail/structure-profiler-PerfNode.rst b/doc/source/stdlib/detail/structure-profiler-PerfNode.rst deleted file mode 100644 index 3aeaf02952..0000000000 --- a/doc/source/stdlib/detail/structure-profiler-PerfNode.rst +++ /dev/null @@ -1 +0,0 @@ -Performance tree node with timing data. diff --git a/doc/source/stdlib/detail/structure-quote-AnnotationArgumentInitData.rst b/doc/source/stdlib/detail/structure-quote-AnnotationArgumentInitData.rst deleted file mode 100644 index 4bb0b45266..0000000000 --- a/doc/source/stdlib/detail/structure-quote-AnnotationArgumentInitData.rst +++ /dev/null @@ -1 +0,0 @@ -Initialization data for a quoted annotation argument. diff --git a/doc/source/stdlib/detail/structure-quote-CaptureEntryInitData.rst b/doc/source/stdlib/detail/structure-quote-CaptureEntryInitData.rst deleted file mode 100644 index c22d144c05..0000000000 --- a/doc/source/stdlib/detail/structure-quote-CaptureEntryInitData.rst +++ /dev/null @@ -1 +0,0 @@ -Initialization data for a captured variable entry. diff --git a/doc/source/stdlib/detail/structure-quote-EnumEntryInitData.rst b/doc/source/stdlib/detail/structure-quote-EnumEntryInitData.rst deleted file mode 100644 index 0219ea4f86..0000000000 --- a/doc/source/stdlib/detail/structure-quote-EnumEntryInitData.rst +++ /dev/null @@ -1 +0,0 @@ -Initialization data for a quoted enum entry. diff --git a/doc/source/stdlib/detail/structure-quote-FileInfoInitData.rst b/doc/source/stdlib/detail/structure-quote-FileInfoInitData.rst deleted file mode 100644 index fa11a36d6f..0000000000 --- a/doc/source/stdlib/detail/structure-quote-FileInfoInitData.rst +++ /dev/null @@ -1,3 +0,0 @@ -Initialization data for reconstructing file info. -File name string. -Tab size for the file. diff --git a/doc/source/stdlib/detail/structure-quote-LineInfoInitData.rst b/doc/source/stdlib/detail/structure-quote-LineInfoInitData.rst deleted file mode 100644 index 7f7b21b0bb..0000000000 --- a/doc/source/stdlib/detail/structure-quote-LineInfoInitData.rst +++ /dev/null @@ -1,6 +0,0 @@ -Initialization data for source line info reconstruction. -Pointer to the source file info. -Column number (1-based). -Line number (1-based). -Last column number of the range. -Last line number of the range. diff --git a/doc/source/stdlib/detail/structure-refactor-ExtractMethodDesc.rst b/doc/source/stdlib/detail/structure-refactor-ExtractMethodDesc.rst deleted file mode 100644 index 68791ea93f..0000000000 --- a/doc/source/stdlib/detail/structure-refactor-ExtractMethodDesc.rst +++ /dev/null @@ -1 +0,0 @@ -Descriptor for extract-method refactoring. diff --git a/doc/source/stdlib/detail/structure-refactor-ExtractVariableDesc.rst b/doc/source/stdlib/detail/structure-refactor-ExtractVariableDesc.rst deleted file mode 100644 index 82b7597f50..0000000000 --- a/doc/source/stdlib/detail/structure-refactor-ExtractVariableDesc.rst +++ /dev/null @@ -1 +0,0 @@ -Descriptor for extract-variable refactoring. diff --git a/doc/source/stdlib/detail/structure-soa-SOA_INDEX.rst b/doc/source/stdlib/detail/structure-soa-SOA_INDEX.rst deleted file mode 100644 index 438d4ae507..0000000000 --- a/doc/source/stdlib/detail/structure-soa-SOA_INDEX.rst +++ /dev/null @@ -1,2 +0,0 @@ -Proxy type returned by the ``[]`` operator on an SOA structure. -Field access on this proxy is rewritten by `SoaCallMacro` to index into the correct column array. diff --git a/doc/source/stdlib/detail/structure-templates_boost-Template.rst b/doc/source/stdlib/detail/structure-templates_boost-Template.rst deleted file mode 100644 index 1415ced4e6..0000000000 --- a/doc/source/stdlib/detail/structure-templates_boost-Template.rst +++ /dev/null @@ -1,14 +0,0 @@ -This structure contains collection of substitution rules for a template. -variable field access replacement rules -call name replacement rules -field name replacement rules -variable name replacement rules -variable expression replacement rules -variable expression list replacement rules -type name replacement rules -type to type declaration replacement rules -structure to type declaration replacement rules -block argument name replacement rules -annotation argument replacement rules -block argument replacement rules -tag expression replacement rules diff --git a/doc/source/stdlib/detail/structure-typemacro_boost-TypeMacroTemplateArgument.rst b/doc/source/stdlib/detail/structure-typemacro_boost-TypeMacroTemplateArgument.rst deleted file mode 100644 index c6dbd56628..0000000000 --- a/doc/source/stdlib/detail/structure-typemacro_boost-TypeMacroTemplateArgument.rst +++ /dev/null @@ -1,4 +0,0 @@ -Holds a type macro template argument with its name and inferred type. -Name of the template argument. -Declared argument type from the template signature. -Inferred concrete type after template instantiation. diff --git a/doc/source/stdlib/detail/structure_macro-decs_boost-decs_template.rst b/doc/source/stdlib/detail/structure_macro-decs_boost-decs_template.rst deleted file mode 100644 index 1c8d6a375d..0000000000 --- a/doc/source/stdlib/detail/structure_macro-decs_boost-decs_template.rst +++ /dev/null @@ -1,2 +0,0 @@ -This macro creates a template for the given structure. -`apply_decs_template` and `remove_decs_template` functions are generated for the structure type. diff --git a/doc/source/stdlib/detail/structure_macro-interfaces-implements.rst b/doc/source/stdlib/detail/structure_macro-interfaces-implements.rst deleted file mode 100644 index 46d2ec4fdb..0000000000 --- a/doc/source/stdlib/detail/structure_macro-interfaces-implements.rst +++ /dev/null @@ -1,11 +0,0 @@ -Generates interface bindings for a struct. Creates a proxy class that delegates -interface method calls to the struct's own methods, and adds a ``get`InterfaceName`` -method that lazily constructs the proxy. Applied via ``[implements(InterfaceName)]``. - -If the interface inherits from a parent interface (``class IChild : IParent``), -ancestor getters are generated automatically so that ``is``/``as``/``?as`` work -with all ancestor interfaces. - -At ``finish`` time, verifies that all abstract interface methods are implemented. -Methods with default bodies in the interface class are optional — the proxy -inherits them via class hierarchy. diff --git a/doc/source/stdlib/detail/structure_macro-interfaces-interface.rst b/doc/source/stdlib/detail/structure_macro-interfaces-interface.rst deleted file mode 100644 index 92e8a4128b..0000000000 --- a/doc/source/stdlib/detail/structure_macro-interfaces-interface.rst +++ /dev/null @@ -1,2 +0,0 @@ -Verifies that the annotated class is a valid interface — it may only contain -function-typed fields (no data members). Applied via ``[interface]`` annotation. diff --git a/doc/source/stdlib/detail/structure_macro-match-match_as_is.rst b/doc/source/stdlib/detail/structure_macro-match-match_as_is.rst deleted file mode 100644 index b15a3b32f9..0000000000 --- a/doc/source/stdlib/detail/structure_macro-match-match_as_is.rst +++ /dev/null @@ -1,2 +0,0 @@ -Implements `match_as_is` annotation. -This annotation is used to mark that structure can be matched with different type via is and as machinery. diff --git a/doc/source/stdlib/detail/structure_macro-match-match_copy.rst b/doc/source/stdlib/detail/structure_macro-match-match_copy.rst deleted file mode 100644 index 7dfbb77737..0000000000 --- a/doc/source/stdlib/detail/structure_macro-match-match_copy.rst +++ /dev/null @@ -1,2 +0,0 @@ -Implements `match_copy` annotation. -This annotation is used to mark that structure can be matched with different type via match_copy machinery. diff --git a/doc/source/stdlib/detail/structure_macro-soa-soa.rst b/doc/source/stdlib/detail/structure_macro-soa-soa.rst deleted file mode 100644 index b0e6380ca8..0000000000 --- a/doc/source/stdlib/detail/structure_macro-soa-soa.rst +++ /dev/null @@ -1,6 +0,0 @@ -Generates a Structure-of-Arrays layout from a regular struct. -For a struct ``Foo`` with fields ``x : float`` and ``y : float``, generates: - - * ``Foo`SOA`` — struct where every field is ``array`` - * ``operator []`` returning ``SOA_INDEX`` proxy - * ``length``, ``capacity``, ``push``, ``push_clone``, ``emplace``, ``erase``, ``pop``, ``clear``, ``resize``, ``reserve``, ``swap``, ``from_array``, ``to_array`` functions diff --git a/doc/source/stdlib/detail/structure_macro-typemacro_boost-template_structure.rst b/doc/source/stdlib/detail/structure_macro-typemacro_boost-template_structure.rst deleted file mode 100644 index 6fc64fc52e..0000000000 --- a/doc/source/stdlib/detail/structure_macro-typemacro_boost-template_structure.rst +++ /dev/null @@ -1,12 +0,0 @@ -This macro creates typemacro function and associates it with the structure. -It also creates the typemacro_template_function to associate with it. -For example:: - - [template_structure(KeyType,ValueType)] struct template TFlatHashTable { ... } - creates: - 1) [typemacro_function] def TFlatHashTable (macroArgument, passArgument : TypeDeclPtr; KeyType, ValueType : TypeDeclPtr) : TypeDeclPtr { - return <- make`template`TFlatHashTable(macroArgument, passArgument, KeyType, ValueType) - } - 2) [typemacro_template_function(TFlatHashTable)] def make`template`TFlatHashTable (macroArgument, passArgument : TypeDeclPtr; KeyType, ValueType : TypeDeclPtr) : TypeDeclPtr { - return <- default - } diff --git a/doc/source/stdlib/detail/structure_macro-typemacro_boost-typemacro_documentation.rst b/doc/source/stdlib/detail/structure_macro-typemacro_boost-typemacro_documentation.rst deleted file mode 100644 index 5fe8b00ae7..0000000000 --- a/doc/source/stdlib/detail/structure_macro-typemacro_boost-typemacro_documentation.rst +++ /dev/null @@ -1 +0,0 @@ -Structure annotation that stores type macro documentation metadata. diff --git a/doc/source/stdlib/detail/structure_macro-typemacro_boost-typemacro_template.rst b/doc/source/stdlib/detail/structure_macro-typemacro_boost-typemacro_template.rst deleted file mode 100644 index e4fd248d4c..0000000000 --- a/doc/source/stdlib/detail/structure_macro-typemacro_boost-typemacro_template.rst +++ /dev/null @@ -1 +0,0 @@ -Structure annotation that marks a struct as a type macro template instance. diff --git a/doc/source/stdlib/detail/temp_strings.rst b/doc/source/stdlib/detail/temp_strings.rst deleted file mode 100644 index 712e9546b3..0000000000 --- a/doc/source/stdlib/detail/temp_strings.rst +++ /dev/null @@ -1,8 +0,0 @@ -.. |detail/class-temp_strings-TempStringMacro| replace:: to be documented in |detail/class-temp_strings-TempStringMacro|.rst - -.. |detail/method-temp_strings-TempStringMacro.verifyCall| replace:: to be documented in |detail/method-temp_strings-TempStringMacro.verifyCall|.rst - -.. |detail/function-temp_strings-build_temp_string| replace:: to be documented in |detail/function-temp_strings-build_temp_string|.rst - -.. |detail/function-temp_strings-temp_string| replace:: to be documented in |detail/function-temp_strings-temp_string|.rst - diff --git a/doc/source/stdlib/detail/templates.rst b/doc/source/stdlib/detail/templates.rst deleted file mode 100644 index cc6265e1fe..0000000000 --- a/doc/source/stdlib/detail/templates.rst +++ /dev/null @@ -1,10 +0,0 @@ -.. |detail/class-templates-DecltypeMacro| replace:: to be documented in |detail/class-templates-DecltypeMacro|.rst - -.. |detail/method-templates-DecltypeMacro.visit| replace:: to be documented in |detail/method-templates-DecltypeMacro.visit|.rst - -.. |detail/class-templates-DecltypeNoRefMacro| replace:: to be documented in |detail/class-templates-DecltypeNoRefMacro|.rst - -.. |detail/class-templates-TemplateMacro| replace:: to be documented in |detail/class-templates-TemplateMacro|.rst - -.. |detail/method-templates-TemplateMacro.transform| replace:: to be documented in |detail/method-templates-TemplateMacro.transform|.rst - diff --git a/doc/source/stdlib/detail/templates_boost.rst b/doc/source/stdlib/detail/templates_boost.rst deleted file mode 100644 index f02c26c53d..0000000000 --- a/doc/source/stdlib/detail/templates_boost.rst +++ /dev/null @@ -1,186 +0,0 @@ -.. |detail/structure-templates_boost-Template| replace:: to be documented in |detail/structure-templates_boost-Template|.rst - -.. |detail/class-templates_boost-TemplateVisitor| replace:: to be documented in |detail/class-templates_boost-TemplateVisitor|.rst - -.. |detail/method-templates_boost-TemplateVisitor.visitTypeDecl| replace:: to be documented in |detail/method-templates_boost-TemplateVisitor.visitTypeDecl|.rst - -.. |detail/method-templates_boost-TemplateVisitor.preVisitExprBlock| replace:: to be documented in |detail/method-templates_boost-TemplateVisitor.preVisitExprBlock|.rst - -.. |detail/method-templates_boost-TemplateVisitor.visitExprLet| replace:: to be documented in |detail/method-templates_boost-TemplateVisitor.visitExprLet|.rst - -.. |detail/method-templates_boost-TemplateVisitor.preVisitExprLooksLikeCall| replace:: to be documented in |detail/method-templates_boost-TemplateVisitor.preVisitExprLooksLikeCall|.rst - -.. |detail/method-templates_boost-TemplateVisitor.preVisitExprCall| replace:: to be documented in |detail/method-templates_boost-TemplateVisitor.preVisitExprCall|.rst - -.. |detail/method-templates_boost-TemplateVisitor.preVisitExprFor| replace:: to be documented in |detail/method-templates_boost-TemplateVisitor.preVisitExprFor|.rst - -.. |detail/method-templates_boost-TemplateVisitor.preVisitExprMakeStructField| replace:: to be documented in |detail/method-templates_boost-TemplateVisitor.preVisitExprMakeStructField|.rst - -.. |detail/method-templates_boost-TemplateVisitor.preVisitExprMakeArray| replace:: to be documented in |detail/method-templates_boost-TemplateVisitor.preVisitExprMakeArray|.rst - -.. |detail/method-templates_boost-TemplateVisitor.preVisitExprAddr| replace:: to be documented in |detail/method-templates_boost-TemplateVisitor.preVisitExprAddr|.rst - -.. |detail/method-templates_boost-TemplateVisitor.visitExprAddr| replace:: to be documented in |detail/method-templates_boost-TemplateVisitor.visitExprAddr|.rst - -.. |detail/method-templates_boost-TemplateVisitor.visitExprVar| replace:: to be documented in |detail/method-templates_boost-TemplateVisitor.visitExprVar|.rst - -.. |detail/method-templates_boost-TemplateVisitor.visitExprTag| replace:: to be documented in |detail/method-templates_boost-TemplateVisitor.visitExprTag|.rst - -.. |detail/method-templates_boost-TemplateVisitor.visitExprField| replace:: to be documented in |detail/method-templates_boost-TemplateVisitor.visitExprField|.rst - -.. |detail/method-templates_boost-TemplateVisitor.visitExprSafeField| replace:: to be documented in |detail/method-templates_boost-TemplateVisitor.visitExprSafeField|.rst - -.. |detail/method-templates_boost-TemplateVisitor.visitExprIsVariant| replace:: to be documented in |detail/method-templates_boost-TemplateVisitor.visitExprIsVariant|.rst - -.. |detail/method-templates_boost-TemplateVisitor.visitExprAsVariant| replace:: to be documented in |detail/method-templates_boost-TemplateVisitor.visitExprAsVariant|.rst - -.. |detail/method-templates_boost-TemplateVisitor.visitExprSafeAsVariant| replace:: to be documented in |detail/method-templates_boost-TemplateVisitor.visitExprSafeAsVariant|.rst - -.. |detail/method-templates_boost-TemplateVisitor.replaceAlias| replace:: to be documented in |detail/method-templates_boost-TemplateVisitor.replaceAlias|.rst - -.. |detail/method-templates_boost-TemplateVisitor.preVisitAnythingCall| replace:: to be documented in |detail/method-templates_boost-TemplateVisitor.preVisitAnythingCall|.rst - -.. |detail/class-templates_boost-RemoveDerefVisitor| replace:: to be documented in |detail/class-templates_boost-RemoveDerefVisitor|.rst - -.. |detail/method-templates_boost-RemoveDerefVisitor.visitExprRef2Value| replace:: to be documented in |detail/method-templates_boost-RemoveDerefVisitor.visitExprRef2Value|.rst - -.. |detail/class-templates_boost-QRulesVisitor| replace:: to be documented in |detail/class-templates_boost-QRulesVisitor|.rst - -.. |detail/method-templates_boost-QRulesVisitor.visitTypeDecl| replace:: to be documented in |detail/method-templates_boost-QRulesVisitor.visitTypeDecl|.rst - -.. |detail/method-templates_boost-QRulesVisitor.preVisitExprBlockArgument| replace:: to be documented in |detail/method-templates_boost-QRulesVisitor.preVisitExprBlockArgument|.rst - -.. |detail/method-templates_boost-QRulesVisitor.preVisitExprFor| replace:: to be documented in |detail/method-templates_boost-QRulesVisitor.preVisitExprFor|.rst - -.. |detail/method-templates_boost-QRulesVisitor.preVisitExprMakeStructField| replace:: to be documented in |detail/method-templates_boost-QRulesVisitor.preVisitExprMakeStructField|.rst - -.. |detail/method-templates_boost-QRulesVisitor.visitExprTag| replace:: to be documented in |detail/method-templates_boost-QRulesVisitor.visitExprTag|.rst - -.. |detail/method-templates_boost-QRulesVisitor.visitTD| replace:: to be documented in |detail/method-templates_boost-QRulesVisitor.visitTD|.rst - -.. |detail/class-templates_boost-AstQCallMacro| replace:: to be documented in |detail/class-templates_boost-AstQCallMacro|.rst - -.. |detail/method-templates_boost-AstQCallMacro.visit| replace:: to be documented in |detail/method-templates_boost-AstQCallMacro.visit|.rst - -.. |detail/method-templates_boost-AstQCallMacro.canVisitArgument| replace:: to be documented in |detail/method-templates_boost-AstQCallMacro.canVisitArgument|.rst - -.. |detail/class-templates_boost-QMacro| replace:: to be documented in |detail/class-templates_boost-QMacro|.rst - -.. |detail/class-templates_boost-QBlockMacro| replace:: to be documented in |detail/class-templates_boost-QBlockMacro|.rst - -.. |detail/class-templates_boost-QBlockToArrayMacro| replace:: to be documented in |detail/class-templates_boost-QBlockToArrayMacro|.rst - -.. |detail/class-templates_boost-QBlockExprMacro| replace:: to be documented in |detail/class-templates_boost-QBlockExprMacro|.rst - -.. |detail/class-templates_boost-QTypeMacro| replace:: to be documented in |detail/class-templates_boost-QTypeMacro|.rst - -.. |detail/class-templates_boost-AstQNamedMacro| replace:: to be documented in |detail/class-templates_boost-AstQNamedMacro|.rst - -.. |detail/method-templates_boost-AstQNamedMacro.visit| replace:: to be documented in |detail/method-templates_boost-AstQNamedMacro.visit|.rst - -.. |detail/method-templates_boost-AstQNamedMacro.canVisitArgument| replace:: to be documented in |detail/method-templates_boost-AstQNamedMacro.canVisitArgument|.rst - -.. |detail/class-templates_boost-AstQFunctionMacro| replace:: to be documented in |detail/class-templates_boost-AstQFunctionMacro|.rst - -.. |detail/class-templates_boost-AstQVariableMacro| replace:: to be documented in |detail/class-templates_boost-AstQVariableMacro|.rst - -.. |detail/class-templates_boost-AstQNamedClassMacro| replace:: to be documented in |detail/class-templates_boost-AstQNamedClassMacro|.rst - -.. |detail/method-templates_boost-AstQNamedClassMacro.visit| replace:: to be documented in |detail/method-templates_boost-AstQNamedClassMacro.visit|.rst - -.. |detail/method-templates_boost-AstQNamedClassMacro.canVisitArgument| replace:: to be documented in |detail/method-templates_boost-AstQNamedClassMacro.canVisitArgument|.rst - -.. |detail/class-templates_boost-AstQMethodMacro| replace:: to be documented in |detail/class-templates_boost-AstQMethodMacro|.rst - -.. |detail/class-templates_boost-AstQNamedTemplateFunctionMacro| replace:: to be documented in |detail/class-templates_boost-AstQNamedTemplateFunctionMacro|.rst - -.. |detail/method-templates_boost-AstQNamedTemplateFunctionMacro.visit| replace:: to be documented in |detail/method-templates_boost-AstQNamedTemplateFunctionMacro.visit|.rst - -.. |detail/class-templates_boost-AstQNamedTemplateClassMacro| replace:: to be documented in |detail/class-templates_boost-AstQNamedTemplateClassMacro|.rst - -.. |detail/method-templates_boost-AstQNamedTemplateClassMacro.visit| replace:: to be documented in |detail/method-templates_boost-AstQNamedTemplateClassMacro.visit|.rst - -.. |detail/function-templates_boost-kaboomVarField| replace:: to be documented in |detail/function-templates_boost-kaboomVarField|.rst - -.. |detail/function-templates_boost-replaceVariable| replace:: to be documented in |detail/function-templates_boost-replaceVariable|.rst - -.. |detail/function-templates_boost-replaceVarTag| replace:: to be documented in |detail/function-templates_boost-replaceVarTag|.rst - -.. |detail/function-templates_boost-replaceArgumentWithList| replace:: to be documented in |detail/function-templates_boost-replaceArgumentWithList|.rst - -.. |detail/function-templates_boost-replaceVariableWithList| replace:: to be documented in |detail/function-templates_boost-replaceVariableWithList|.rst - -.. |detail/function-templates_boost-renameVariable| replace:: to be documented in |detail/function-templates_boost-renameVariable|.rst - -.. |detail/function-templates_boost-renameField| replace:: to be documented in |detail/function-templates_boost-renameField|.rst - -.. |detail/function-templates_boost-replaceType| replace:: to be documented in |detail/function-templates_boost-replaceType|.rst - -.. |detail/function-templates_boost-replaceStructWithTypeDecl| replace:: to be documented in |detail/function-templates_boost-replaceStructWithTypeDecl|.rst - -.. |detail/function-templates_boost-replaceTypeWithTypeDecl| replace:: to be documented in |detail/function-templates_boost-replaceTypeWithTypeDecl|.rst - -.. |detail/function-templates_boost-replaceAnnotationArgument| replace:: to be documented in |detail/function-templates_boost-replaceAnnotationArgument|.rst - -.. |detail/function-templates_boost-replaceBlockArgument| replace:: to be documented in |detail/function-templates_boost-replaceBlockArgument|.rst - -.. |detail/function-templates_boost-renameCall| replace:: to be documented in |detail/function-templates_boost-renameCall|.rst - -.. |detail/function-templates_boost-visit_expression| replace:: to be documented in |detail/function-templates_boost-visit_expression|.rst - -.. |detail/function-templates_boost-apply_template| replace:: to be documented in |detail/function-templates_boost-apply_template|.rst - -.. |detail/function-templates_boost-unquote_block| replace:: to be documented in |detail/function-templates_boost-unquote_block|.rst - -.. |detail/function-templates_boost-move_unquote_block| replace:: to be documented in |detail/function-templates_boost-move_unquote_block|.rst - -.. |detail/function-templates_boost-make_expression_block| replace:: to be documented in |detail/function-templates_boost-make_expression_block|.rst - -.. |detail/function-templates_boost-add_global_var| replace:: to be documented in |detail/function-templates_boost-add_global_var|.rst - -.. |detail/function-templates_boost-add_global_let| replace:: to be documented in |detail/function-templates_boost-add_global_let|.rst - -.. |detail/function-templates_boost-add_global_private_var| replace:: to be documented in |detail/function-templates_boost-add_global_private_var|.rst - -.. |detail/function-templates_boost-add_global_private_let| replace:: to be documented in |detail/function-templates_boost-add_global_private_let|.rst - -.. |detail/function-templates_boost-make_unique_private_name| replace:: to be documented in |detail/function-templates_boost-make_unique_private_name|.rst - -.. |detail/function-templates_boost-remove_deref| replace:: to be documented in |detail/function-templates_boost-remove_deref|.rst - -.. |detail/function-templates_boost-add_type_ptr_ref| replace:: to be documented in |detail/function-templates_boost-add_type_ptr_ref|.rst - -.. |detail/function-templates_boost-apply_qmacro| replace:: to be documented in |detail/function-templates_boost-apply_qmacro|.rst - -.. |detail/function-templates_boost-apply_qblock| replace:: to be documented in |detail/function-templates_boost-apply_qblock|.rst - -.. |detail/function-templates_boost-apply_qblock_to_array| replace:: to be documented in |detail/function-templates_boost-apply_qblock_to_array|.rst - -.. |detail/function-templates_boost-apply_qblock_expr| replace:: to be documented in |detail/function-templates_boost-apply_qblock_expr|.rst - -.. |detail/function-templates_boost-apply_qtype| replace:: to be documented in |detail/function-templates_boost-apply_qtype|.rst - -.. |detail/function-templates_boost-expression_at| replace:: to be documented in |detail/function-templates_boost-expression_at|.rst - -.. |detail/function-templates_boost-apply_qmacro_function| replace:: to be documented in |detail/function-templates_boost-apply_qmacro_function|.rst - -.. |detail/function-templates_boost-apply_qmacro_method| replace:: to be documented in |detail/function-templates_boost-apply_qmacro_method|.rst - -.. |detail/function-templates_boost-apply_qmacro_variable| replace:: to be documented in |detail/function-templates_boost-apply_qmacro_variable|.rst - -.. |detail/function-templates_boost-apply_qmacro_template_class| replace:: to be documented in |detail/function-templates_boost-apply_qmacro_template_class|.rst - -.. |detail/function-templates_boost-apply_qmacro_template_function| replace:: to be documented in |detail/function-templates_boost-apply_qmacro_template_function|.rst - -.. |detail/function-templates_boost-add_structure_field| replace:: to be documented in |detail/function-templates_boost-add_structure_field|.rst - -.. |detail/function-templates_boost-make_class| replace:: to be documented in |detail/function-templates_boost-make_class|.rst - -.. |detail/function-templates_boost-make_class_constructor| replace:: to be documented in |detail/function-templates_boost-make_class_constructor|.rst - -.. |detail/function-templates_boost-modify_to_class_member| replace:: to be documented in |detail/function-templates_boost-modify_to_class_member|.rst - -.. |detail/function-templates_boost-add_array_ptr_ref| replace:: to be documented in |detail/function-templates_boost-add_array_ptr_ref|.rst - -.. |detail/function-templates_boost-enum_class_type| replace:: to be documented in |detail/function-templates_boost-enum_class_type|.rst - diff --git a/doc/source/stdlib/detail/type_traits.rst b/doc/source/stdlib/detail/type_traits.rst deleted file mode 100644 index 8fc13900fc..0000000000 --- a/doc/source/stdlib/detail/type_traits.rst +++ /dev/null @@ -1,12 +0,0 @@ -.. |detail/class-type_traits-TypeInfoGetFieldsNum| replace:: to be documented in |detail/class-type_traits-TypeInfoGetFieldsNum|.rst - -.. |detail/method-type_traits-TypeInfoGetFieldsNum.getAstChange| replace:: to be documented in |detail/method-type_traits-TypeInfoGetFieldsNum.getAstChange|.rst - -.. |detail/class-type_traits-TypeInfoHasProperty| replace:: to be documented in |detail/class-type_traits-TypeInfoHasProperty|.rst - -.. |detail/method-type_traits-TypeInfoHasProperty.getAstChange| replace:: to be documented in |detail/method-type_traits-TypeInfoHasProperty.getAstChange|.rst - -.. |detail/class-type_traits-IsSubclassOf| replace:: to be documented in |detail/class-type_traits-IsSubclassOf|.rst - -.. |detail/method-type_traits-IsSubclassOf.visit| replace:: to be documented in |detail/method-type_traits-IsSubclassOf.visit|.rst - diff --git a/doc/source/stdlib/detail/typedef-coroutines-Coroutine.rst b/doc/source/stdlib/detail/typedef-coroutines-Coroutine.rst deleted file mode 100644 index e7c9180961..0000000000 --- a/doc/source/stdlib/detail/typedef-coroutines-Coroutine.rst +++ /dev/null @@ -1 +0,0 @@ -A coroutine is a generator that yields bool to indicate if it is still running. diff --git a/doc/source/stdlib/detail/typedef-coroutines-Coroutines.rst b/doc/source/stdlib/detail/typedef-coroutines-Coroutines.rst deleted file mode 100644 index f020e817db..0000000000 --- a/doc/source/stdlib/detail/typedef-coroutines-Coroutines.rst +++ /dev/null @@ -1 +0,0 @@ -An array of coroutines. diff --git a/doc/source/stdlib/detail/typedef-decs-ComponentHash.rst b/doc/source/stdlib/detail/typedef-decs-ComponentHash.rst deleted file mode 100644 index 891a44c20d..0000000000 --- a/doc/source/stdlib/detail/typedef-decs-ComponentHash.rst +++ /dev/null @@ -1,7 +0,0 @@ -daslang Entity Component System (DECS). - -A pure-daslang ECS runtime: entities with dynamic component -composition, archetypal storage, queries, commit/deferred -create/delete, and serialization. Use with ``decs_boost`` for -the query macro syntax. -Hash value of the ECS component type diff --git a/doc/source/stdlib/detail/typedef-decs-ComponentMap.rst b/doc/source/stdlib/detail/typedef-decs-ComponentMap.rst deleted file mode 100644 index 2398d8ee2c..0000000000 --- a/doc/source/stdlib/detail/typedef-decs-ComponentMap.rst +++ /dev/null @@ -1 +0,0 @@ -Table of component values for individual entity. diff --git a/doc/source/stdlib/detail/typedef-decs-DeferEval.rst b/doc/source/stdlib/detail/typedef-decs-DeferEval.rst deleted file mode 100644 index db0a8cfc07..0000000000 --- a/doc/source/stdlib/detail/typedef-decs-DeferEval.rst +++ /dev/null @@ -1 +0,0 @@ -Lambda which holds deferred action. Typically creation of destruction of an entity. diff --git a/doc/source/stdlib/detail/typedef-decs-PassFunction.rst b/doc/source/stdlib/detail/typedef-decs-PassFunction.rst deleted file mode 100644 index 9c7970b33f..0000000000 --- a/doc/source/stdlib/detail/typedef-decs-PassFunction.rst +++ /dev/null @@ -1 +0,0 @@ -One of the callbacks which form individual pass. diff --git a/doc/source/stdlib/detail/typedef-decs-TypeHash.rst b/doc/source/stdlib/detail/typedef-decs-TypeHash.rst deleted file mode 100644 index 7b6c612ed1..0000000000 --- a/doc/source/stdlib/detail/typedef-decs-TypeHash.rst +++ /dev/null @@ -1 +0,0 @@ -Hash value of the individual type diff --git a/doc/source/stdlib/detail/typedef-decs_boost-ItCheck.rst b/doc/source/stdlib/detail/typedef-decs_boost-ItCheck.rst deleted file mode 100644 index 04e7f0da61..0000000000 --- a/doc/source/stdlib/detail/typedef-decs_boost-ItCheck.rst +++ /dev/null @@ -1 +0,0 @@ -DECS prefix check. diff --git a/doc/source/stdlib/detail/typedef-faker-BitRepresentation64.rst b/doc/source/stdlib/detail/typedef-faker-BitRepresentation64.rst deleted file mode 100644 index d0fab2a400..0000000000 --- a/doc/source/stdlib/detail/typedef-faker-BitRepresentation64.rst +++ /dev/null @@ -1 +0,0 @@ -64-bit representation of a float diff --git a/doc/source/stdlib/detail/typedef-json-JsValue.rst b/doc/source/stdlib/detail/typedef-json-JsValue.rst deleted file mode 100644 index a83690fa9b..0000000000 --- a/doc/source/stdlib/detail/typedef-json-JsValue.rst +++ /dev/null @@ -1,8 +0,0 @@ -Single JSON element. -JSON object -JSON array -JSON string -JSON number -extension, not part of JSON standard (represents long integer numbers) -JSON boolean -JSON null diff --git a/doc/source/stdlib/detail/typedef-json-Token.rst b/doc/source/stdlib/detail/typedef-json-Token.rst deleted file mode 100644 index 6c15cfa2e5..0000000000 --- a/doc/source/stdlib/detail/typedef-json-Token.rst +++ /dev/null @@ -1,8 +0,0 @@ -JSON input stream token. -string token -number token -extension, not part of JSON standard (represents long integer numbers) -boolean token -null token -symbol token (one of []{}:,) -error token diff --git a/doc/source/stdlib/detail/typedef-math_bits-Vec4f.rst b/doc/source/stdlib/detail/typedef-math_bits-Vec4f.rst deleted file mode 100644 index b96bb640c9..0000000000 --- a/doc/source/stdlib/detail/typedef-math_bits-Vec4f.rst +++ /dev/null @@ -1,9 +0,0 @@ -bit-castable float4 -storage -storage as int64 -storage as int32 -storage as int16 -storage as int8 -storage as string -storage as pointer -storage as bool diff --git a/doc/source/stdlib/detail/typeinfo_macro-enum_trait-enum_length.rst b/doc/source/stdlib/detail/typeinfo_macro-enum_trait-enum_length.rst deleted file mode 100644 index 037f2e9baf..0000000000 --- a/doc/source/stdlib/detail/typeinfo_macro-enum_trait-enum_length.rst +++ /dev/null @@ -1 +0,0 @@ -Implements typeinfo(enum_length EnumOrEnumType) which returns total number of elements in enumeration. diff --git a/doc/source/stdlib/detail/typeinfo_macro-enum_trait-enum_names.rst b/doc/source/stdlib/detail/typeinfo_macro-enum_trait-enum_names.rst deleted file mode 100644 index 1266154669..0000000000 --- a/doc/source/stdlib/detail/typeinfo_macro-enum_trait-enum_names.rst +++ /dev/null @@ -1 +0,0 @@ -Implements typeinfo(enum_names EnumOrEnumType) which returns array of strings with enumValue names. diff --git a/doc/source/stdlib/detail/typeinfo_macro-type_traits-fields_count.rst b/doc/source/stdlib/detail/typeinfo_macro-type_traits-fields_count.rst deleted file mode 100644 index 61f5eef7d1..0000000000 --- a/doc/source/stdlib/detail/typeinfo_macro-type_traits-fields_count.rst +++ /dev/null @@ -1 +0,0 @@ -this macro implements "fields_count" type trait, which returns total number of fields in the structure diff --git a/doc/source/stdlib/detail/typeinfo_macro-type_traits-safe_has_property.rst b/doc/source/stdlib/detail/typeinfo_macro-type_traits-safe_has_property.rst deleted file mode 100644 index a5ba933913..0000000000 --- a/doc/source/stdlib/detail/typeinfo_macro-type_traits-safe_has_property.rst +++ /dev/null @@ -1 +0,0 @@ -this macro implements "has_property" type trait, which returns true when structure has a property diff --git a/doc/source/stdlib/detail/typemacro_boost.rst b/doc/source/stdlib/detail/typemacro_boost.rst deleted file mode 100644 index bf8caa661e..0000000000 --- a/doc/source/stdlib/detail/typemacro_boost.rst +++ /dev/null @@ -1,46 +0,0 @@ -.. |detail/class-typemacro_boost-TypeMacroInfo| replace:: to be documented in |detail/class-typemacro_boost-TypeMacroInfo|.rst - -.. |detail/class-typemacro_boost-TypeMacroMacro| replace:: to be documented in |detail/class-typemacro_boost-TypeMacroMacro|.rst - -.. |detail/method-typemacro_boost-TypeMacroMacro.apply| replace:: to be documented in |detail/method-typemacro_boost-TypeMacroMacro.apply|.rst - -.. |detail/method-typemacro_boost-TypeMacroMacro.patch| replace:: to be documented in |detail/method-typemacro_boost-TypeMacroMacro.patch|.rst - -.. |detail/class-typemacro_boost-TypeMacroTemplate| replace:: to be documented in |detail/class-typemacro_boost-TypeMacroTemplate|.rst - -.. |detail/structure-typemacro_boost-TypeMacroTemplateArgument| replace:: to be documented in |detail/structure-typemacro_boost-TypeMacroTemplateArgument|.rst - -.. |detail/class-typemacro_boost-TemplateTypeMacroMacro| replace:: to be documented in |detail/class-typemacro_boost-TemplateTypeMacroMacro|.rst - -.. |detail/method-typemacro_boost-TemplateTypeMacroMacro.apply| replace:: to be documented in |detail/method-typemacro_boost-TemplateTypeMacroMacro.apply|.rst - -.. |detail/method-typemacro_boost-TemplateTypeMacroMacro.patch| replace:: to be documented in |detail/method-typemacro_boost-TemplateTypeMacroMacro.patch|.rst - -.. |detail/class-typemacro_boost-TemplateStructure| replace:: to be documented in |detail/class-typemacro_boost-TemplateStructure|.rst - -.. |detail/method-typemacro_boost-TemplateStructure.apply| replace:: to be documented in |detail/method-typemacro_boost-TemplateStructure.apply|.rst - -.. |detail/function-typemacro_boost-get_string_const| replace:: to be documented in |detail/function-typemacro_boost-get_string_const|.rst - -.. |detail/function-typemacro_boost-make_typemacro_template_instance| replace:: to be documented in |detail/function-typemacro_boost-make_typemacro_template_instance|.rst - -.. |detail/function-typemacro_boost-is_typemacro_template_instance| replace:: to be documented in |detail/function-typemacro_boost-is_typemacro_template_instance|.rst - -.. |detail/function-typemacro_boost-infer_struct_aliases| replace:: to be documented in |detail/function-typemacro_boost-infer_struct_aliases|.rst - -.. |detail/function-typemacro_boost-infer_template_types| replace:: to be documented in |detail/function-typemacro_boost-infer_template_types|.rst - -.. |detail/function-typemacro_boost-add_structure_aliases| replace:: to be documented in |detail/function-typemacro_boost-add_structure_aliases|.rst - -.. |detail/function-typemacro_boost-verify_arguments| replace:: to be documented in |detail/function-typemacro_boost-verify_arguments|.rst - -.. |detail/function-typemacro_boost-template_structure_name| replace:: to be documented in |detail/function-typemacro_boost-template_structure_name|.rst - -.. |detail/function-typemacro_boost-is_custom_work_done| replace:: to be documented in |detail/function-typemacro_boost-is_custom_work_done|.rst - -.. |detail/function-typemacro_boost-mark_custom_work_done| replace:: to be documented in |detail/function-typemacro_boost-mark_custom_work_done|.rst - -.. |detail/function-typemacro_boost-int64_to_enum| replace:: to be documented in |detail/function-typemacro_boost-int64_to_enum|.rst - -.. |detail/function-typemacro_boost-typemacro_argument| replace:: to be documented in |detail/function-typemacro_boost-typemacro_argument|.rst - diff --git a/doc/source/stdlib/detail/unroll.rst b/doc/source/stdlib/detail/unroll.rst deleted file mode 100644 index f026e3a063..0000000000 --- a/doc/source/stdlib/detail/unroll.rst +++ /dev/null @@ -1,6 +0,0 @@ -.. |detail/class-unroll-UnrollMacro| replace:: to be documented in |detail/class-unroll-UnrollMacro|.rst - -.. |detail/method-unroll-UnrollMacro.transform| replace:: to be documented in |detail/method-unroll-UnrollMacro.transform|.rst - -.. |detail/function-unroll-unroll| replace:: to be documented in |detail/function-unroll-unroll|.rst - diff --git a/doc/source/stdlib/detail/uriparser.rst b/doc/source/stdlib/detail/uriparser.rst deleted file mode 100644 index 40ba335d9d..0000000000 --- a/doc/source/stdlib/detail/uriparser.rst +++ /dev/null @@ -1,66 +0,0 @@ -.. |handmade/function-uriparser-Uri| replace:: to be documented in |handmade/function-uriparser-Uri|.rst - -.. |handmade/function-uriparser-using| replace:: to be documented in |handmade/function-uriparser-using|.rst - -.. |handmade/function-uriparser-finalize| replace:: to be documented in |handmade/function-uriparser-finalize|.rst - -.. |handmade/function-uriparser-clone| replace:: to be documented in |handmade/function-uriparser-clone|.rst - -.. |handmade/function-uriparser-strip_uri| replace:: to be documented in |handmade/function-uriparser-strip_uri|.rst - -.. |handmade/function-uriparser-add_base_uri| replace:: to be documented in |handmade/function-uriparser-add_base_uri|.rst - -.. |handmade/function-uriparser-remove_base_uri| replace:: to be documented in |handmade/function-uriparser-remove_base_uri|.rst - -.. |handmade/function-uriparser-normalize| replace:: to be documented in |handmade/function-uriparser-normalize|.rst - -.. |handmade/function-uriparser-string| replace:: to be documented in |handmade/function-uriparser-string|.rst - -.. |handmade/function-uriparser-to_unix_file_name| replace:: to be documented in |handmade/function-uriparser-to_unix_file_name|.rst - -.. |handmade/function-uriparser-to_windows_file_name| replace:: to be documented in |handmade/function-uriparser-to_windows_file_name|.rst - -.. |handmade/function-uriparser-to_file_name| replace:: to be documented in |handmade/function-uriparser-to_file_name|.rst - -.. |handmade/function-uriparser-uri_from_file_name| replace:: to be documented in |handmade/function-uriparser-uri_from_file_name|.rst - -.. |handmade/function-uriparser-uri_from_windows_file_name| replace:: to be documented in |handmade/function-uriparser-uri_from_windows_file_name|.rst - -.. |handmade/function-uriparser-uri_from_unix_file_name| replace:: to be documented in |handmade/function-uriparser-uri_from_unix_file_name|.rst - -.. |handmade/function-uriparser-uri_for_each_query_kv| replace:: to be documented in |handmade/function-uriparser-uri_for_each_query_kv|.rst - -.. |handmade/function-uriparser-make_new_guid| replace:: to be documented in |handmade/function-uriparser-make_new_guid|.rst - -.. |handmade/function-uriparser-uri_to_unix_file_name| replace:: to be documented in |handmade/function-uriparser-uri_to_unix_file_name|.rst - -.. |handmade/function-uriparser-uri_to_windows_file_name| replace:: to be documented in |handmade/function-uriparser-uri_to_windows_file_name|.rst - -.. |handmade/function-uriparser-unix_file_name_to_uri| replace:: to be documented in |handmade/function-uriparser-unix_file_name_to_uri|.rst - -.. |handmade/function-uriparser-windows_file_name_to_uri| replace:: to be documented in |handmade/function-uriparser-windows_file_name_to_uri|.rst - -.. |handmade/function-uriparser-uri_to_file_name| replace:: to be documented in |handmade/function-uriparser-uri_to_file_name|.rst - -.. |handmade/function-uriparser-file_name_to_uri| replace:: to be documented in |handmade/function-uriparser-file_name_to_uri|.rst - -.. |handmade/function-uriparser-escape_uri| replace:: to be documented in |handmade/function-uriparser-escape_uri|.rst - -.. |handmade/function-uriparser-unescape_uri| replace:: to be documented in |handmade/function-uriparser-unescape_uri|.rst - -.. |handmade/function-uriparser-normalize_uri| replace:: to be documented in |handmade/function-uriparser-normalize_uri|.rst - -.. |handmade/structure_annotation-uriparser-UriTextRangeA| replace:: to be documented in |handmade/structure_annotation-uriparser-UriTextRangeA|.rst - -.. |handmade/structure_annotation-uriparser-UriIp4Struct| replace:: to be documented in |handmade/structure_annotation-uriparser-UriIp4Struct|.rst - -.. |handmade/structure_annotation-uriparser-UriIp6Struct| replace:: to be documented in |handmade/structure_annotation-uriparser-UriIp6Struct|.rst - -.. |handmade/structure_annotation-uriparser-UriHostDataA| replace:: to be documented in |handmade/structure_annotation-uriparser-UriHostDataA|.rst - -.. |handmade/structure_annotation-uriparser-UriPathSegmentStructA| replace:: to be documented in |handmade/structure_annotation-uriparser-UriPathSegmentStructA|.rst - -.. |handmade/structure_annotation-uriparser-UriUriA| replace:: to be documented in |handmade/structure_annotation-uriparser-UriUriA|.rst - -.. |handmade/structure_annotation-uriparser-Uri| replace:: to be documented in |handmade/structure_annotation-uriparser-Uri|.rst - diff --git a/doc/source/stdlib/detail/uriparser_boost.rst b/doc/source/stdlib/detail/uriparser_boost.rst deleted file mode 100644 index 05ba14837a..0000000000 --- a/doc/source/stdlib/detail/uriparser_boost.rst +++ /dev/null @@ -1,22 +0,0 @@ -.. |detail/function-uriparser_boost-uri_split_full_path| replace:: to be documented in |detail/function-uriparser_boost-uri_split_full_path|.rst - -.. |detail/function-uriparser_boost-uri_compose_query| replace:: to be documented in |detail/function-uriparser_boost-uri_compose_query|.rst - -.. |detail/function-uriparser_boost-uri_compose_query_in_order| replace:: to be documented in |detail/function-uriparser_boost-uri_compose_query_in_order|.rst - -.. |detail/function-uriparser_boost-scheme| replace:: to be documented in |detail/function-uriparser_boost-scheme|.rst - -.. |detail/function-uriparser_boost-user_info| replace:: to be documented in |detail/function-uriparser_boost-user_info|.rst - -.. |detail/function-uriparser_boost-host| replace:: to be documented in |detail/function-uriparser_boost-host|.rst - -.. |detail/function-uriparser_boost-port| replace:: to be documented in |detail/function-uriparser_boost-port|.rst - -.. |detail/function-uriparser_boost-path| replace:: to be documented in |detail/function-uriparser_boost-path|.rst - -.. |detail/function-uriparser_boost-query| replace:: to be documented in |detail/function-uriparser_boost-query|.rst - -.. |detail/function-uriparser_boost-fragment| replace:: to be documented in |detail/function-uriparser_boost-fragment|.rst - -.. |detail/function-uriparser_boost-uri_compose| replace:: to be documented in |detail/function-uriparser_boost-uri_compose|.rst - diff --git a/doc/source/stdlib/detail/utf8_utils.rst b/doc/source/stdlib/detail/utf8_utils.rst deleted file mode 100644 index d1aafaee95..0000000000 --- a/doc/source/stdlib/detail/utf8_utils.rst +++ /dev/null @@ -1,20 +0,0 @@ -.. |detail/function-utf8_utils-utf16_to_utf32| replace:: to be documented in |detail/function-utf8_utils-utf16_to_utf32|.rst - -.. |detail/function-utf8_utils-utf8_encode| replace:: to be documented in |detail/function-utf8_utils-utf8_encode|.rst - -.. |detail/function-utf8_utils-utf8_length| replace:: to be documented in |detail/function-utf8_utils-utf8_length|.rst - -.. |detail/function-utf8_utils-is_first_byte_of_utf8_char| replace:: to be documented in |detail/function-utf8_utils-is_first_byte_of_utf8_char|.rst - -.. |detail/function-utf8_utils-contains_utf8_bom| replace:: to be documented in |detail/function-utf8_utils-contains_utf8_bom|.rst - -.. |detail/function-utf8_utils-is_utf8_string_valid| replace:: to be documented in |detail/function-utf8_utils-is_utf8_string_valid|.rst - -.. |detail/function-utf8_utils-utf8_decode| replace:: to be documented in |detail/function-utf8_utils-utf8_decode|.rst - -.. |detail/function-utf8_utils-decode_unicode_escape| replace:: to be documented in |detail/function-utf8_utils-decode_unicode_escape|.rst - -.. |detail/variable-utf8_utils-s_utf8d| replace:: to be documented in |detail/variable-utf8_utils-s_utf8d|.rst - -.. |detail/variable-utf8_utils-UTF8_ACCEPT| replace:: to be documented in |detail/variable-utf8_utils-UTF8_ACCEPT|.rst - diff --git a/doc/source/stdlib/detail/validate_code.rst b/doc/source/stdlib/detail/validate_code.rst deleted file mode 100644 index e23f864837..0000000000 --- a/doc/source/stdlib/detail/validate_code.rst +++ /dev/null @@ -1,30 +0,0 @@ -.. |detail/class-validate_code-ValidateCompletionVisitor| replace:: to be documented in |detail/class-validate_code-ValidateCompletionVisitor|.rst - -.. |detail/method-validate_code-ValidateCompletionVisitor.preVisitFunction| replace:: to be documented in |detail/method-validate_code-ValidateCompletionVisitor.preVisitFunction|.rst - -.. |detail/method-validate_code-ValidateCompletionVisitor.visitFunction| replace:: to be documented in |detail/method-validate_code-ValidateCompletionVisitor.visitFunction|.rst - -.. |detail/method-validate_code-ValidateCompletionVisitor.preVisitExprCall| replace:: to be documented in |detail/method-validate_code-ValidateCompletionVisitor.preVisitExprCall|.rst - -.. |detail/method-validate_code-ValidateCompletionVisitor.preVisitExprWhile| replace:: to be documented in |detail/method-validate_code-ValidateCompletionVisitor.preVisitExprWhile|.rst - -.. |detail/method-validate_code-ValidateCompletionVisitor.preVisitExprFor| replace:: to be documented in |detail/method-validate_code-ValidateCompletionVisitor.preVisitExprFor|.rst - -.. |detail/class-validate_code-VerifyCompletion| replace:: to be documented in |detail/class-validate_code-VerifyCompletion|.rst - -.. |detail/method-validate_code-VerifyCompletion.lint| replace:: to be documented in |detail/method-validate_code-VerifyCompletion.lint|.rst - -.. |detail/class-validate_code-ValidateShaderVisitor| replace:: to be documented in |detail/class-validate_code-ValidateShaderVisitor|.rst - -.. |detail/method-validate_code-ValidateShaderVisitor.preVisitTypeDecl| replace:: to be documented in |detail/method-validate_code-ValidateShaderVisitor.preVisitTypeDecl|.rst - -.. |detail/method-validate_code-ValidateShaderVisitor.preVisitExprNew| replace:: to be documented in |detail/method-validate_code-ValidateShaderVisitor.preVisitExprNew|.rst - -.. |detail/method-validate_code-ValidateShaderVisitor.preVisitExprAscend| replace:: to be documented in |detail/method-validate_code-ValidateShaderVisitor.preVisitExprAscend|.rst - -.. |detail/class-validate_code-JIT_LLVM| replace:: to be documented in |detail/class-validate_code-JIT_LLVM|.rst - -.. |detail/method-validate_code-JIT_LLVM.simulate| replace:: to be documented in |detail/method-validate_code-JIT_LLVM.simulate|.rst - -.. |detail/method-validate_code-JIT_LLVM.lint_module| replace:: to be documented in |detail/method-validate_code-JIT_LLVM.lint_module|.rst - diff --git a/doc/source/stdlib/detail/variable-decs-INVALID_ENTITY_ID.rst b/doc/source/stdlib/detail/variable-decs-INVALID_ENTITY_ID.rst deleted file mode 100644 index 63e8e07e40..0000000000 --- a/doc/source/stdlib/detail/variable-decs-INVALID_ENTITY_ID.rst +++ /dev/null @@ -1 +0,0 @@ -Entity ID which represents invalid entity. diff --git a/doc/source/stdlib/detail/variable-decs-decsState.rst b/doc/source/stdlib/detail/variable-decs-decsState.rst deleted file mode 100644 index 6a4ab32669..0000000000 --- a/doc/source/stdlib/detail/variable-decs-decsState.rst +++ /dev/null @@ -1 +0,0 @@ -Full state of the ECS system. diff --git a/doc/source/stdlib/detail/variable-json-Token_string.rst b/doc/source/stdlib/detail/variable-json-Token_string.rst deleted file mode 100644 index 0dc0abdec7..0000000000 --- a/doc/source/stdlib/detail/variable-json-Token_string.rst +++ /dev/null @@ -1 +0,0 @@ -index of the diff --git a/doc/source/stdlib/detail/variable-random-LCG_RAND_MAX.rst b/doc/source/stdlib/detail/variable-random-LCG_RAND_MAX.rst deleted file mode 100644 index 10d5e928d1..0000000000 --- a/doc/source/stdlib/detail/variable-random-LCG_RAND_MAX.rst +++ /dev/null @@ -1 +0,0 @@ -maximum possible output of random number generator diff --git a/doc/source/stdlib/detail/variable-random-LCG_RAND_MAX_BIG.rst b/doc/source/stdlib/detail/variable-random-LCG_RAND_MAX_BIG.rst deleted file mode 100644 index 49241ef060..0000000000 --- a/doc/source/stdlib/detail/variable-random-LCG_RAND_MAX_BIG.rst +++ /dev/null @@ -1 +0,0 @@ -maximum possible output of random_big_int diff --git a/doc/source/stdlib/detail/variable-utf8_utils-UTF8_ACCEPT.rst b/doc/source/stdlib/detail/variable-utf8_utils-UTF8_ACCEPT.rst deleted file mode 100644 index 05a8e2e25e..0000000000 --- a/doc/source/stdlib/detail/variable-utf8_utils-UTF8_ACCEPT.rst +++ /dev/null @@ -1 +0,0 @@ -DFA accept state indicating a valid UTF-8 sequence. diff --git a/doc/source/stdlib/detail/variable-utf8_utils-s_utf8d.rst b/doc/source/stdlib/detail/variable-utf8_utils-s_utf8d.rst deleted file mode 100644 index 351cbb9e27..0000000000 --- a/doc/source/stdlib/detail/variable-utf8_utils-s_utf8d.rst +++ /dev/null @@ -1 +0,0 @@ -Byte-class and state-transition table for the UTF-8 DFA decoder. diff --git a/doc/source/stdlib/detail/variant_macro-dynamic_cast_rtti-ClassAsIs.rst b/doc/source/stdlib/detail/variant_macro-dynamic_cast_rtti-ClassAsIs.rst deleted file mode 100644 index d879cb15ab..0000000000 --- a/doc/source/stdlib/detail/variant_macro-dynamic_cast_rtti-ClassAsIs.rst +++ /dev/null @@ -1 +0,0 @@ -Variant macro that implements class dynamic casting via `is` and `as`. diff --git a/doc/source/stdlib/detail/variant_macro-interfaces-InterfaceAsIs.rst b/doc/source/stdlib/detail/variant_macro-interfaces-InterfaceAsIs.rst deleted file mode 100644 index fc7c0d94f2..0000000000 --- a/doc/source/stdlib/detail/variant_macro-interfaces-InterfaceAsIs.rst +++ /dev/null @@ -1,6 +0,0 @@ -Variant macro that enables ``is``, ``as``, and ``?as`` operators for -interface types declared with ``[interface]`` / ``[implements]``. - -* ``ptr is IFoo`` — compile-time check (``true`` when the struct implements ``IFoo``) -* ``ptr as IFoo`` — obtains the interface proxy via the generated getter -* ``ptr ?as IFoo`` — null-safe version: returns ``null`` when the pointer is null diff --git a/doc/source/stdlib/detail/variant_macro-json_boost-better_json.rst b/doc/source/stdlib/detail/variant_macro-json_boost-better_json.rst deleted file mode 100644 index 9bc219e29d..0000000000 --- a/doc/source/stdlib/detail/variant_macro-json_boost-better_json.rst +++ /dev/null @@ -1,2 +0,0 @@ -This macro is used to implement `is json_value` and `as json_value` runtime checks. -It essentially substitutes `value as name` with `value.value as name` and `value is name` with `value.value is name`. diff --git a/doc/source/stdlib/handmade/typedef-ast-ExprAtFlags.rst b/doc/source/stdlib/handmade/typedef-ast-ExprAtFlags.rst index 91765b0b8b..dd4960bc2a 100644 --- a/doc/source/stdlib/handmade/typedef-ast-ExprAtFlags.rst +++ b/doc/source/stdlib/handmade/typedef-ast-ExprAtFlags.rst @@ -4,3 +4,4 @@ Read to const reference is propagated. The result is written to. Promotion to operator is disabled, even if operator [] is overloaded. The expression is under a clone operation. +The expression is under a dereference (ExprRef2Value), safe for table lookup collision detection. diff --git a/doc/source/stdlib/rtti.rst b/doc/source/stdlib/rtti.rst index e3e72fb0a1..b06d14bffb 100644 --- a/doc/source/stdlib/rtti.rst +++ b/doc/source/stdlib/rtti.rst @@ -798,18 +798,12 @@ Handled structures * **debug_infer_flag** : bool - Enables debug inference flag. - * **debug_module** : :ref:`das_string ` - Sets debug module (module which will be loaded when IDE connects). - * **profiler** : bool - Enables profiler support. - * **profile_module** : :ref:`das_string ` - Sets profile module (module which will be loaded when profiler connects). - * **threadlock_context** : bool - Enables threadlock context. * **jit_enabled** : bool - JIT enabled - if enabled, JIT will be used to compile code at runtime. - * **jit_module** : :ref:`das_string ` - JIT module - module loaded when -jit is specified. - * **jit_jit_all_functions** : bool - JIT all functions - if enabled, JIT will compile all functions in the module. * **jit_debug_info** : bool - JIT debug info - if enabled, JIT will generate debug info for JIT compiled code. @@ -2779,3 +2773,21 @@ Iterates through each element of an RTTI container (e.g., ``AnnotationArguments` .. das:function:: each(info: EnumInfo implicit ==const) : iterator ++++++++++++++ +Uncategorized ++++++++++++++ + +.. _function-rtti_add_extra_module_smart_ptr_ls_FileAccess_gr__string_string: + +.. das:function:: add_extra_module(access: smart_ptr; modName: string; modFile: string) + +Adds extra module to ``FileAccess``. All files compiled via this ``FileAccess`` will include this extra module. + + +:Arguments: * **access** : smart_ptr< :ref:`FileAccess `> implicit + + * **modName** : string implicit + + * **modFile** : string implicit + + diff --git a/include/daScript/ast/ast.h b/include/daScript/ast/ast.h index 09117ad780..f6d771335e 100644 --- a/include/daScript/ast/ast.h +++ b/include/daScript/ast/ast.h @@ -1511,7 +1511,7 @@ namespace das // rtti /*option*/ bool rtti = false; // create extended RTTI // language - /*option*/ bool unsafe_table_lookup = true; // table lookup (tab[key]) to be unsafe + /*option*/ bool unsafe_table_lookup = false; // table lookup (tab[key]) to be unsafe /*option*/ bool relaxed_pointer_const = false; // allow const correctness to be relaxed on pointers bool version_2_syntax = false; // use syntax version 2 bool gen2_make_syntax = false; // only new make syntax is allowed (no [[...]] or [{...}]) diff --git a/include/daScript/ast/ast_expressions.h b/include/daScript/ast/ast_expressions.h index 884d2a2ae4..51b4ef8136 100644 --- a/include/daScript/ast/ast_expressions.h +++ b/include/daScript/ast/ast_expressions.h @@ -145,6 +145,7 @@ namespace das bool write : 1; bool no_promotion : 1; bool underClone : 1; + bool underDeref : 1; }; uint32_t atFlags = 0; }; diff --git a/include/daScript/ast/compilation_errors.h b/include/daScript/ast/compilation_errors.h index e04a0f710c..f5ac8dfc9f 100644 --- a/include/daScript/ast/compilation_errors.h +++ b/include/daScript/ast/compilation_errors.h @@ -164,6 +164,7 @@ namespace das , in_scope_in_the_loop = 40213 // for ( a in b ) { let in scope ... ; } , no_init = 40214 // [init] disabled via options or CodeOfPolicies , no_writing_to_nameless = 40215 // writing to nameless variable, like in a().b = 5 + , table_lookup_collision = 40216 // multiple lookups of the same table in the same expression, i.e. tab[1] = tab[2] , duplicate_key = 40300 // { 1:1, ..., 1:* } diff --git a/src/ast/ast_infer_type.cpp b/src/ast/ast_infer_type.cpp index 01426b908e..c9b3363006 100644 --- a/src/ast/ast_infer_type.cpp +++ b/src/ast/ast_infer_type.cpp @@ -915,6 +915,11 @@ namespace das { return mks; } } + // mark ExprAt to be under_deref + if (expr->subexpr->rtti_isAt()) { + auto atExpr = static_cast(expr->subexpr.get()); + atExpr->underDeref = true; + } // infer if (!expr->subexpr->type->isRef()) { if (expr->subexpr->rtti_isConstant()) { @@ -2747,7 +2752,9 @@ namespace das { verifyType(expr->typeexpr); return Visitor::visit(expr); } + ExpressionPtr InferTypes::visit(ExprAt *expr) { + expr->underDeref = false; if (!expr->subexpr->type || expr->subexpr->type->isAliasOrExpr()) return Visitor::visit(expr); // failed to infer if (!expr->index->type || expr->index->type->isAliasOrExpr()) diff --git a/src/ast/ast_lint.cpp b/src/ast/ast_lint.cpp index 186d0513a8..9519af2151 100644 --- a/src/ast/ast_lint.cpp +++ b/src/ast/ast_lint.cpp @@ -362,8 +362,10 @@ namespace das { virtual void preVisitGlobalLetInit ( const VariablePtr & var, Expression * that ) override { Visitor::preVisitGlobalLetInit(var,that); globalVar = var.get(); + tableLookupCollision.push_back(das_hash_set()); } virtual ExpressionPtr visitGlobalLetInit ( const VariablePtr & var, Expression * that ) override { + tableLookupCollision.pop_back(); if ( disableInit && !var->init->rtti_isConstant() ) { // we double check here, if it made it past infer program->error("[init] is disabled in the options or CodeOfPolicies", "", "", var->at, CompilationError::no_init); @@ -898,8 +900,21 @@ namespace das { var->at,CompilationError::invalid_variable_type); } } + virtual void preVisit ( ExprMakeStruct * mks ) override { + Visitor::preVisit(mks); + if ( mks->constructor && mks->constructor->arguments.size() ) { + program->error("default arguments of constructors can't be used in make declarations", "its not yet implemented", "", + mks->at, CompilationError::unspecified); + } + } + virtual void preVisit ( ExprTypeDecl * expr ) override { + Visitor::preVisit(expr); + if ( expr->alwaysSafe ) return; + usedTypeExprs.insert(expr); + } virtual void preVisitBlockExpression ( ExprBlock * block, Expression * expr ) override { Visitor::preVisitBlockExpression(block, expr); + tableLookupCollision.push_back(das_hash_set()); if ( expr->rtti_isOp2() ) { auto op2 = static_cast(expr); if ( op2->func && op2->func->builtIn && op2->func->sideEffectFlags==0 ) { @@ -908,17 +923,26 @@ namespace das { } } } - virtual void preVisit ( ExprMakeStruct * mks ) override { - Visitor::preVisit(mks); - if ( mks->constructor && mks->constructor->arguments.size() ) { - program->error("default arguments of constructors can't be used in make declarations", "its not yet implemented", "", - mks->at, CompilationError::unspecified); - } + virtual ExpressionPtr visitBlockExpression ( ExprBlock * block, Expression * expr ) override { + tableLookupCollision.pop_back(); + return Visitor::visitBlockExpression(block,expr); } - virtual void preVisit ( ExprTypeDecl * expr ) override { + virtual void preVisit ( ExprAt * expr ) override { Visitor::preVisit(expr); - if ( expr->alwaysSafe ) return; - usedTypeExprs.insert(expr); + // we look for table at, and check 'subexpr' of it, which is the table. + // if it collides with anything - its an error + if ( !expr->underDeref && expr->subexpr->type->isGoodTableType() ) { + auto subexprText = expr->subexpr->describe(); + auto subexprHash = hash64z(subexprText.c_str()); + auto it = tableLookupCollision.back().find(subexprHash); + if ( it!=tableLookupCollision.back().end() ) { + program->error("potential table lookup collision for " + subexprText, "", + "tab[key1] = tab[key2], or fun(tab[key1],tab[key2]) scenarios may produce undefined behavior", + expr->subexpr->at, CompilationError::table_lookup_collision); + } else { + tableLookupCollision.back().insert(subexprHash); + } + } } public: ProgramPtr program; @@ -926,6 +950,7 @@ namespace das { Variable * globalVar = nullptr; bool anyUnsafe = false; das_hash_set usedTypeExprs; + vector> tableLookupCollision; }; struct Option { @@ -941,7 +966,7 @@ namespace das { "string_heap_size_limit", Type::tInt, "gc", Type::tBool, // coverage - "no_coverage", Type::tBool, + "no_coverage", Type::tBool, // aot "no_aot", Type::tBool, "aot_prologue", Type::tBool, diff --git a/src/builtin/module_builtin_ast_flags.cpp b/src/builtin/module_builtin_ast_flags.cpp index 37ce2e0c86..8739084e93 100644 --- a/src/builtin/module_builtin_ast_flags.cpp +++ b/src/builtin/module_builtin_ast_flags.cpp @@ -65,7 +65,7 @@ namespace das { TypeDeclPtr makeExprAtFlags() { auto ft = make_smart(Type::tBitfield); ft->alias = "ExprAtFlags"; - ft->argNames = { "r2v", "r2cr", "write", "no_promotion", "under_clone" }; + ft->argNames = { "r2v", "r2cr", "write", "no_promotion", "under_clone", "under_deref" }; return ft; } diff --git a/tests/README.md b/tests/README.md index 8f52705ba8..9954120bf9 100644 --- a/tests/README.md +++ b/tests/README.md @@ -368,6 +368,7 @@ Every `.das` file in this directory tree is listed below, grouped by subdirector | failed_block.das | Block variable initialization failures | **expect** `30108` `30113` | | failed_capture_self.das | Capturing `self` in lambda fails | **expect** `30508` `30124` | | failed_constants.das | Out-of-range numeric literal errors | **expect** `10006:12` `10010:4` | +| failed_table_lookup_collision.das | Table lookup collision lint — same table indexed twice in one expression | **expect** `40216:7` | | finally.das | `finally` blocks — exceptions, loops, nested, return | | | for_const_array.das | For-loop over `fixed_array` constant | | | for_continue.das | `continue` in while, for, and complex nested loops | | diff --git a/tests/language/failed_table_lookup_collision.das b/tests/language/failed_table_lookup_collision.das new file mode 100644 index 0000000000..7ae18a2432 --- /dev/null +++ b/tests/language/failed_table_lookup_collision.das @@ -0,0 +1,78 @@ +options gen2 +expect 40216:7 + +def take_two_ret(var a : int&; var b : int&) : int { + return a + b +} + +// collision: global variable init with two table ref lookups +var g_tab : table <- { 1 => 10, 2 => 20 } +var g_val = take_two_ret(g_tab[1], g_tab[2]) + +struct Foo { + tab : table +} + +// collision: copy assign, both sides are references +def test_copy_assign() { + var tab : table + tab[1] = tab[2] +} + +// collision: clone assign, both sides are references +def test_clone_assign() { + var tab : table + tab[1] := tab[2] +} + +// collision: move assign, both sides are references +def test_move_assign() { + var tab : table + tab[1] <- tab[2] +} + +// collision: same table via field access +def test_field_access() { + var foo : Foo + foo.tab[1] = foo.tab[2] +} + +// collision: swap-like pattern with same table +def test_swap_pattern() { + var tab : table + var tmp = tab[1] + tab[1] = tab[2] + tab[2] = tmp + feint("{tmp}\n") +} + +// collision: function call with two ref args from same table +def take_two(var a : int&; var b : int&) { + a = b +} +def test_func_two_refs() { + var tab : table + take_two(tab[1], tab[2]) +} + +// ok: different tables, no collision +def test_different_tables() { + var tab1 : table + var tab2 : table + tab1[1] = tab2[2] +} + +// ok: value lookups (r2v / underDeref), no collision +def test_value_lookup() { + var tab : table + var a = tab[1] + tab[2] + feint("{a}\n") +} + +// ok: separate expressions, no collision +def test_separate_expressions() { + var tab : table + let a = tab[1] + let b = tab[2] + feint("{a} {b}\n") +} diff --git a/tutorials/integration/cpp/class_adapters_module.das.inc b/tutorials/integration/cpp/class_adapters_module.das.inc deleted file mode 100644 index 908c829486..0000000000 --- a/tutorials/integration/cpp/class_adapters_module.das.inc +++ /dev/null @@ -1,53 +0,0 @@ -static unsigned char class_adapters_module_das[] = { -0x6f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x20, -0x67,0x65,0x6e,0x32,0x0a, -0x6f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x20, -0x72,0x65,0x6d,0x6f,0x76,0x65,0x5f,0x75, -0x6e,0x75,0x73,0x65,0x64,0x5f,0x73,0x79, -0x6d,0x62,0x6f,0x6c,0x73,0x20,0x3d,0x20, -0x66,0x61,0x6c,0x73,0x65,0x0a, -0x0a, -0x2f,0x2f,0x20,0x41,0x62,0x73,0x74,0x72, -0x61,0x63,0x74,0x20,0x62,0x61,0x73,0x65, -0x20,0x63,0x6c,0x61,0x73,0x73,0x20,0xe2, -0x80,0x94,0x20,0x64,0x61,0x73,0x6c,0x61, -0x6e,0x67,0x20,0x73,0x69,0x64,0x65,0x2e, -0x0a, -0x2f,0x2f,0x20,0x43,0x2b,0x2b,0x20,0x77, -0x69,0x6c,0x6c,0x20,0x69,0x6e,0x63,0x6c, -0x75,0x64,0x65,0x20,0x74,0x68,0x69,0x73, -0x20,0x76,0x69,0x61,0x20,0x63,0x6f,0x6d, -0x70,0x69,0x6c,0x65,0x42,0x75,0x69,0x6c, -0x74,0x69,0x6e,0x4d,0x6f,0x64,0x75,0x6c, -0x65,0x20,0x61,0x6e,0x64,0x20,0x74,0x68, -0x65,0x20,0x58,0x44,0x44,0x20,0x2e,0x64, -0x61,0x73,0x2e,0x69,0x6e,0x63,0x20,0x66, -0x69,0x6c,0x65,0x2e,0x0a, -0x2f,0x2f,0x20,0x64,0x61,0x73,0x6c,0x61, -0x6e,0x67,0x20,0x63,0x6c,0x61,0x73,0x73, -0x65,0x73,0x20,0x63,0x61,0x6e,0x20,0x64, -0x65,0x72,0x69,0x76,0x65,0x20,0x66,0x72, -0x6f,0x6d,0x20,0x74,0x68,0x69,0x73,0x20, -0x61,0x6e,0x64,0x20,0x6f,0x76,0x65,0x72, -0x72,0x69,0x64,0x65,0x20,0x74,0x68,0x65, -0x20,0x76,0x69,0x72,0x74,0x75,0x61,0x6c, -0x20,0x6d,0x65,0x74,0x68,0x6f,0x64,0x73, -0x2e,0x0a, -0x0a, -0x63,0x6c,0x61,0x73,0x73,0x20,0x54,0x75, -0x74,0x6f,0x72,0x69,0x61,0x6c,0x42,0x61, -0x73,0x65,0x43,0x6c,0x61,0x73,0x73,0x20, -0x7b,0x0a, -0x20,0x20,0x20,0x20,0x64,0x65,0x66,0x20, -0x61,0x62,0x73,0x74,0x72,0x61,0x63,0x74, -0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x28, -0x64,0x74,0x20,0x3a,0x20,0x66,0x6c,0x6f, -0x61,0x74,0x29,0x20,0x3a,0x20,0x76,0x6f, -0x69,0x64,0x0a, -0x20,0x20,0x20,0x20,0x64,0x65,0x66,0x20, -0x61,0x62,0x73,0x74,0x72,0x61,0x63,0x74, -0x20,0x67,0x65,0x74,0x5f,0x70,0x6f,0x73, -0x69,0x74,0x69,0x6f,0x6e,0x20,0x3a,0x20, -0x66,0x6c,0x6f,0x61,0x74,0x33,0x0a, -0x7d,0x0a, -};