mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 12:57:35 +00:00
AK: Add the Fundamental concept
This commit is contained in:
parent
7418bdb85f
commit
604309327e
1 changed files with 4 additions and 0 deletions
|
@ -18,6 +18,9 @@ concept Integral = IsIntegral<T>;
|
|||
template<typename T>
|
||||
concept FloatingPoint = IsFloatingPoint<T>;
|
||||
|
||||
template<typename T>
|
||||
concept Fundamental = IsFundamental<T>;
|
||||
|
||||
template<typename T>
|
||||
concept Arithmetic = IsArithmetic<T>;
|
||||
|
||||
|
@ -109,6 +112,7 @@ using AK::Concepts::Arithmetic;
|
|||
using AK::Concepts::ArrayLike;
|
||||
using AK::Concepts::Enum;
|
||||
using AK::Concepts::FloatingPoint;
|
||||
using AK::Concepts::Fundamental;
|
||||
using AK::Concepts::Integral;
|
||||
using AK::Concepts::IterableContainer;
|
||||
using AK::Concepts::IteratorFunction;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue