From ef7f9bead82e73ff3efd4577a20e5170b017a859 Mon Sep 17 00:00:00 2001 From: Amlal El Mahrouss Date: Mon, 12 Jan 2026 20:54:09 +0100 Subject: chore: Nectar Generics Library improvements. Signed-off-by: Amlal El Mahrouss --- include/LibNectarCore/base_alloc.h | 43 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 include/LibNectarCore/base_alloc.h (limited to 'include/LibNectarCore/base_alloc.h') diff --git a/include/LibNectarCore/base_alloc.h b/include/LibNectarCore/base_alloc.h new file mode 100644 index 0000000..e68efdb --- /dev/null +++ b/include/LibNectarCore/base_alloc.h @@ -0,0 +1,43 @@ +// Copyright 2024-2025, Amlal El Mahrouss (amlal@nekernel.org) +// Licensed under the Apache License, Version 2.0 (See accompanying +// file LICENSE or copy at http://www.apache.org/licenses/LICENSE-2.0) +// Official repository: https://github.com/nekernel-org/nectar + +#ifndef NECTAR_LIBNECTAR_BASE_ALLOC_H +#define NECTAR_LIBNECTAR_BASE_ALLOC_H + +#include + +/// @brief allocate a new class. +/// @tparam KindClass the class type to allocate. +template +inline KindClass* allocate(Args&&... args) { + return new KindClass(forward(args)...); +} + +/// @brief allocate a new class. +/// @note aborts on error. +/// @tparam KindClass the class type to allocate. +template +inline KindClass* allocate_nothrow(Args&&... args) noexcept { + return allocate(forward(args)...); +} + +/// @brief free a class. +/// @tparam KindClass the class type to allocate. +template +inline void release(KindClass ptr) { + if (!ptr) return; + + delete ptr; +} + +/// @brief destroy and free a class. +/// @note aborts on error. +/// @tparam KindClass the class type to allocate. +template +inline void release_nothrow(KindClass ptr) noexcept { + release(ptr); +} + +#endif // NECTAR_LIBNECTAR_BASE_ALLOC_H -- cgit v1.2.3