- Missing functionality and documentation

This commit is contained in:
2025-08-20 00:49:15 -04:00
parent 83f0c01e29
commit 494d766741
17 changed files with 753 additions and 352 deletions

View File

@@ -16,6 +16,18 @@
// along with this program. If not, see <https://www.gnu.org/licenses/>.
// =====================================================================================================================
///
/// \file deque.h
/// \brief A header containing the definition for a double-ended queue
///
///
/// \details
/// \author Medusa Slockbower
///
/// \copyright Copyright © 2025 Medusa Slockbower ([GPLv3](https://www.gnu.org/licenses/gpl-3.0.en.html))
///
///
#ifndef FENNEC_CONTAINERS_DEQUE_H
#define FENNEC_CONTAINERS_DEQUE_H
@@ -54,7 +66,7 @@ struct deque {
// Definitions =========================================================================================================
public:
using value_t = TypeT;
using value_t = TypeT; ///< Alias for the value type
class iterator;
private: