summaryrefslogtreecommitdiffhomepage
path: root/src/LibC++/base_alloc.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/LibC++/base_alloc.h')
-rw-r--r--src/LibC++/base_alloc.h43
1 files changed, 43 insertions, 0 deletions
diff --git a/src/LibC++/base_alloc.h b/src/LibC++/base_alloc.h
new file mode 100644
index 0000000..ea5b5b2
--- /dev/null
+++ b/src/LibC++/base_alloc.h
@@ -0,0 +1,43 @@
+/* ========================================
+
+ Copyright (C) 2024-2025 Amlal El Mahrouss, Licensed under the Apache 2.0 license.
+
+======================================== */
+
+#pragma once
+
+#include <LibC++/defines.h>
+
+namespace std::base_alloc {
+/// @brief allocate a new class.
+/// @tparam KindClass the class type to allocate.
+template <typename KindClass, typename... Args>
+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 <typename KindClass, typename... Args>
+inline KindClass* allocate_nothrow(Args&&... args) noexcept {
+ return allocate(forward(args)...);
+}
+
+/// @brief free a class.
+/// @tparam KindClass the class type to allocate.
+template <typename KindClass>
+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 <typename KindClass>
+inline void release_nothrow(KindClass ptr) noexcept {
+ release(ptr);
+}
+} // namespace std::base_alloc