#pragma once #ifdef SERENITY #ifdef KERNEL #include #else #include #include #endif #else #include #include #include #endif namespace AK { template inline T min(const T& a, const T& b) { return a < b ? a : b; } template inline T max(const T& a, const T& b) { return a < b ? b : a; } template static inline T ceilDiv(T a, T b) { T result = a / b; if ((a % b) != 0) ++result; return result; } template T&& move(T& arg) { return static_cast(arg); } template struct Identity { typedef T Type; }; template constexpr T&& forward(typename Identity::Type& param) { return static_cast(param); } template T exchange(T& a, U&& b) { T tmp = move(a); a = move(b); return tmp; } template void swap(T& a, U& b) { U tmp = move((U&)a); a = (T&&)move(b); b = move(tmp); } template struct EnableIf { }; template struct EnableIf { typedef T Type; }; template struct RemoveConst { typedef T Type; }; template struct RemoveConst { typedef T Type; }; template struct RemoveVolatile { typedef T Type; }; template struct RemoveVolatile { typedef T Type; }; template struct RemoveCV { typedef typename RemoveVolatile::Type>::Type Type; }; template struct IntegralConstant { static constexpr T value = v; typedef T ValueType; typedef IntegralConstant Type; constexpr operator ValueType() const { return value; } constexpr ValueType operator()() const { return value; } }; typedef IntegralConstant FalseType; typedef IntegralConstant TrueType; template struct __IsPointerHelper : FalseType { }; template struct __IsPointerHelper : TrueType { }; template struct IsPointer : __IsPointerHelper::Type> { }; template struct IsFunction : FalseType { }; template struct IsFunction : TrueType { }; template struct IsFunction : TrueType { }; template struct IsFunction : TrueType { }; template struct IsFunction : TrueType { }; template struct IsFunction : TrueType { }; template struct IsFunction : TrueType { }; template struct IsFunction : TrueType { }; template struct IsFunction : TrueType { }; template struct IsFunction : TrueType { }; template struct IsFunction : TrueType { }; template struct IsFunction : TrueType { }; template struct IsFunction : TrueType { }; template struct IsFunction : TrueType { }; template struct IsFunction : TrueType { }; template struct IsFunction : TrueType { }; template struct IsFunction : TrueType { }; template struct IsFunction : TrueType { }; template struct IsFunction : TrueType { }; template struct IsFunction : TrueType { }; template struct IsFunction : TrueType { }; template struct IsFunction : TrueType { }; template struct IsFunction : TrueType { }; template struct IsFunction : TrueType { }; template struct IsFunction : TrueType { }; template struct IsRvalueReference : FalseType { }; template struct IsRvalueReference : TrueType { }; template struct RemovePointer { typedef T Type; }; template struct RemovePointer { typedef T Type; }; template struct RemovePointer { typedef T Type; }; template struct RemovePointer { typedef T Type; }; template struct RemovePointer { typedef T Type; }; } using AK::min; using AK::max; using AK::move; using AK::forward; using AK::exchange; using AK::swap; using AK::ceilDiv;