- Documentation of containers, core, and format

This commit is contained in:
2025-12-18 00:00:36 -05:00
parent e7503ed92f
commit 9e6f00eb60
57 changed files with 2007 additions and 805 deletions

View File

@@ -84,8 +84,8 @@ private:
};
public:
using alloc_t = allocator_traits<AllocT>::template rebind<node>;
using elem_t = node*;
using alloc_t = allocator_traits<AllocT>::template rebind<node>; //!< The underlying allocator type
using elem_t = node*; //!< The underlying element type
// Constructors ========================================================================================================
@@ -153,7 +153,7 @@ public:
/// @{
///
/// \returns `true` when the deque is empty, `false` otherwise
/// \returns \f$true\f$ when the deque is empty, \f$false\f$ otherwise
constexpr bool empty() const {
return _size == 0;
}