blob: cda63ee9fed188a7b437a9228d3bc061a9e996a7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
/* ========================================
Copyright (C) 2025, Amlal El Mahrouss, licensed under the Apache 2.0 license.
======================================== */
#ifndef __NE_KIT_DOMAIN_H__
#define __NE_KIT_DOMAIN_H__
#include <NeKit/Config.h>
namespace Kernel {
template <class Type>
struct IsDefined final {
using ResultType = Type;
using ResultTypeRef = Type&;
static constexpr bool kValue = true;
};
template <>
struct IsDefined<nullPtr> final {
static constexpr bool kValue = false;
};
using NullDomain = IsDefined<nullPtr>;
template <class Type>
using Domain = IsDefined<Type>;
template <class Type>
concept IsAcceptable = requires() {
{ IsDefined<Type>::kValue };
};
} // namespace Kernel
#endif // !__NE_KIT_DOMAIN_H__
|