xo-alloc/xo-alloc2/docs
2025-12-24 19:39:11 -05:00
..
_static
AAllocator-reference.rst xo-alloc2: ++ documentation + threshold size for THP feature 2025-12-23 21:06:38 -05:00
AAllocIterator-reference.rst xo-alloc2: ++ documentation 2025-12-24 01:29:57 -05:00
AllocInfo-reference.rst xo-alloc2: ++ documentation + threshold size for THP feature 2025-12-23 21:06:38 -05:00
ArenaConfig-reference.rst xo-alloc2: ++ documentation 2025-12-24 01:29:57 -05:00
CMakeLists.txt xo-alloc2: ++ documentation 2025-12-24 01:29:57 -05:00
cmpresult-reference.rst xo-alloc2: ++ documentation 2025-12-24 01:29:57 -05:00
conf.py
DArena-reference.rst xo-alloc2: ++ documentation 2025-12-24 01:29:57 -05:00
DArenaIterator-reference.rst xo-gc xo-object2 xo-alloc2: templates for FOMO [WIP] 2025-12-24 19:39:11 -05:00
examples.rst xo-alloc2: ++ documentation 2025-12-24 01:29:57 -05:00
glossary.rst
IAllocator_Xfer-reference.rst xo-gc xo-object2 xo-alloc2: templates for FOMO [WIP] 2025-12-24 19:39:11 -05:00
implementation.rst xo-alloc2: ++ documentation + threshold size for THP feature 2025-12-23 21:06:38 -05:00
index.rst xo-alloc2: ++ documentation 2025-12-24 01:29:57 -05:00
README

build

        +-----------------------------------------------+
        | cmake                                         |
        |   CMakeLists.txt                              |
        |   $PREFIX/share/cmake/xo_macros/xo_cxx.cmake  |
        +-----------------------------------------------+
           |
           |                                                  +----------------------+
           +------------------------------------------------->| .build/docs/Doxyfile |
           |                                                  +----------------------+
           |                                                     |
           |                                        /------------/
           |                                        |
           |                                        v
           |     +---------------------------------------+    +-----------------+
           +---->| doxygen                               |--->| .build/docs/dox |
           |     |   $PREFIX/share/xo-macros/Doxyfile.in |    |   +- html/      |
           |     +---------------------------------------+    |   +- xml/       |
           |                                                  +-----------------+
           |                                                     |
           |                                        /------------/
           |                                        |
           |                                        v
           |     +---------------------------------------+    +--------------------+
           \---->| sphinx                                |--->| .build/docs/sphinx |
                 |   +- conf.py                          |    |   +- html/         |
                 |   +- _static/                         |    +--------------------+
                 |   +- *.rst                            |
                 +---------------------------------------+

files

   README            this file
   CMakeLists.txt    build entry point
   conf.py           sphinx config
   _static           static files for sphinx

map

   index.rst
   +- install.rst
   +- examples.rst
   +- unit-quantities.rst
   +- classes.rst
   +- glossary.rst
   ...

examples

.. doxygenclass:: ${c++ class name}
   :project:
   :path:
   :members:
   :protected-members:
   :private-members:
   :undoc-members:
   :member-groups:
   :members-only:
   :outline:
   :no-link:
   :allow-dot-graphs:

.. doxygendefine:: ${c preprocessor define}

.. doxygenconcept:: ${c++ concept definition}

.. doxygenenum:: ${c++ enum definition}

.. doxygenfunction:: ${c++ function name}