summaryrefslogtreecommitdiffhomepage
path: root/Private/NewKit/Function.hpp
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal.elmahrouss@icloud.com>2024-01-26 22:26:48 +0100
committerAmlal El Mahrouss <amlal.elmahrouss@icloud.com>2024-01-26 22:27:09 +0100
commiteba8b7ddd0a455d9e49f32dcae712c5612c0093c (patch)
tree749a3d34546d055507a920bce4ab10e8a9945719 /Private/NewKit/Function.hpp
parentdd192787a70a973f2474720aea49af3f6ddabb7a (diff)
Kernel: Major repository refactor.
Rework the repo into Private and Public modules. Signed-off-by: Amlal El Mahrouss <amlal.elmahrouss@icloud.com>
Diffstat (limited to 'Private/NewKit/Function.hpp')
-rw-r--r--Private/NewKit/Function.hpp49
1 files changed, 49 insertions, 0 deletions
diff --git a/Private/NewKit/Function.hpp b/Private/NewKit/Function.hpp
new file mode 100644
index 00000000..772755e1
--- /dev/null
+++ b/Private/NewKit/Function.hpp
@@ -0,0 +1,49 @@
+#ifndef _INC_FUNCTION_HPP__
+#define _INC_FUNCTION_HPP__
+
+#include <NewKit/Defines.hpp>
+
+namespace hCore
+{
+ template <typename T, typename... Args>
+ class Function final
+ {
+ public:
+ Function() = default;
+
+ public:
+ explicit Function(T (*Fn)(Args... args))
+ : m_Fn(Fn)
+ {}
+
+ ~Function() = default;
+
+ Function &operator=(const Function &) = default;
+ Function(const Function &) = default;
+
+ template <typename... XArgs> T operator()(Args... args)
+ {
+ return m_Fn(args...);
+ }
+
+ template <typename... XArgs> T Call(Args... args)
+ {
+ return m_Fn(args...);
+ }
+
+ operator bool()
+ {
+ return m_Fn;
+ }
+ bool operator!()
+ {
+ return !m_Fn;
+ }
+
+ private:
+ T (*m_Fn)(Args... args);
+
+ };
+} // namespace hCore
+
+#endif // !_INC_FUNCTION_HPP__