diff --git a/AK/Concepts.h b/AK/Concepts.h index 5b753050d9..66737cc971 100644 --- a/AK/Concepts.h +++ b/AK/Concepts.h @@ -36,6 +36,9 @@ concept Enum = IsEnum; template concept SameAs = IsSame; +template +concept ConvertibleTo = IsConvertible; + template concept OneOf = IsOneOf; @@ -139,6 +142,7 @@ namespace AK { #endif using AK::Concepts::Arithmetic; using AK::Concepts::ArrayLike; +using AK::Concepts::ConvertibleTo; using AK::Concepts::DerivedFrom; using AK::Concepts::Enum; using AK::Concepts::FallibleFunction;