summaryrefslogtreecommitdiffhomepage
path: root/include/CoreRuntimeKit/C++/utility.hpp
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@nekernel.org>2026-03-18 22:05:37 +0100
committerAmlal El Mahrouss <amlal@nekernel.org>2026-03-18 22:06:44 +0100
commit693aba77f3e31b0ddfe4d3e51f47fd3441c45f92 (patch)
tree60bfbc77082b20e32c4a16885d8421413500e206 /include/CoreRuntimeKit/C++/utility.hpp
parent25ba4e852d6ad15d91095e844bde858383c6b1e3 (diff)
[CHORE] Rework the Nectar Core Libraries as NCSL (Nectar Core Support Libraries).
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'include/CoreRuntimeKit/C++/utility.hpp')
-rw-r--r--include/CoreRuntimeKit/C++/utility.hpp29
1 files changed, 29 insertions, 0 deletions
diff --git a/include/CoreRuntimeKit/C++/utility.hpp b/include/CoreRuntimeKit/C++/utility.hpp
new file mode 100644
index 0000000..a427c44
--- /dev/null
+++ b/include/CoreRuntimeKit/C++/utility.hpp
@@ -0,0 +1,29 @@
+// SPDX-License-Identifier: Apache-2.0
+// Copyright 2024-2026, Amlal El Mahrouss (amlal@nekernel.org)
+// Licensed under the Apache License, Version 2.0 (see LICENSE file)
+// Official repository: https://github.com/ne-foss-org/nectar
+
+#ifndef LIBCXX_UTILITY_H
+#define LIBCXX_UTILITY_H
+
+namespace std {
+/// @brief Forward object.
+/// @tparam Args the object type.
+/// @param arg the object.
+/// @return object's rvalue
+template <typename Args>
+inline auto forward(Args& arg) -> Args&& {
+ return static_cast<const Args&&>(arg);
+}
+
+/// @brief Move object.
+/// @tparam Args the object type.
+/// @param arg the object.
+/// @return object's rvalue
+template <typename Args>
+inline auto move(Args&& arg) -> Args&& {
+ return static_cast<Args&&>(arg);
+}
+} // namespace std
+
+#endif // LIBCXX_UTILITY_H