-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3099e01
commit b0b3a5b
Showing
3 changed files
with
30 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
#pragma once | ||
// only works on Clang and MSVC, not GCC | ||
|
||
namespace mlib | ||
{ | ||
template<auto T> | ||
struct trait_module | ||
{ | ||
constexpr auto operator()(auto X) const | ||
{ | ||
// we call our NTTP | ||
T(X); | ||
return true; | ||
} | ||
}; | ||
|
||
|
||
template<auto T, auto... trait_modules> | ||
requires((trait_modules(T), ...)) | ||
struct trait | ||
{ | ||
constexpr trait() {} | ||
|
||
static constexpr auto value = true; | ||
}; | ||
} // namespace mlib |