NarcEngine 0.1.1
C++ Vulkan game engine
 
Loading...
Searching...
No Matches
KeyWords.h
1//
2// Created by theoh on 27/02/2025.
3//
4
5#pragma once
6
7namespace narclog
8{
9 template <typename T>
10 concept ArithmeticConcept = std::is_arithmetic_v<T>;
11
12 template <typename T>
14 std::is_same_v<std::decay_t<T>, std::string> ||
15 std::is_same_v<std::decay_t<T>, const char*>;
16
17 template <typename T>
18 concept LogConcept =
21}
Definition KeyWords.h:10
Definition KeyWords.h:18
Definition KeyWords.h:13