From 737e95c053f087aaa7c29082b5c6d637e803e150 Mon Sep 17 00:00:00 2001 From: Gennaro Prota Date: Wed, 16 Jul 2025 17:58:05 +0200 Subject: [PATCH] Add a few links to the reference in the documentation index --- doc/modules/ROOT/pages/index.adoc | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/doc/modules/ROOT/pages/index.adoc b/doc/modules/ROOT/pages/index.adoc index a9e5503..a6773fc 100644 --- a/doc/modules/ROOT/pages/index.adoc +++ b/doc/modules/ROOT/pages/index.adoc @@ -14,10 +14,14 @@ Boost.DynamicBitset is a portable library that provides a set of bits. -The set (`boost::dynamic_bitset`) provides access to the value of individual -bits via `operator[]` and provides all of the bitwise operators that one can -apply to builtin integers, such as `operator&` and `operator<<`. The number of -bits can change at runtime. +The set +(xref:reference:boost/dynamic_bitset.adoc#boost-dynamic_bitset[dynamic_bitset]) +provides access to the value of individual bits via +xref:reference:boost/dynamic_bitset/operator_subs-08.adoc[operator[\]] and +provides all of the bitwise operators that one can apply to builtin integers, +such as xref:reference:boost/operator_bitand.adoc[operator&] and +xref:reference:boost/dynamic_bitset/operator_lshift.adoc[operator<<]. The number +of bits can change at runtime. `dynamic_bitset` is nearly identical to `std::bitset`. The difference is that the size of a `dynamic_bitset` (the number of bits) can change at runtime,