1
0
mirror of https://github.com/SerenityOS/serenity synced 2024-07-09 07:40:45 +00:00
serenity/AK/GenericShorthands.h
Andreas Kling ae3ffdd521 AK: Make it possible to not using AK classes into the global namespace
This patch adds the `USING_AK_GLOBALLY` macro which is enabled by
default, but can be overridden by build flags.

This is a step towards integrating Jakt and AK types.
2022-11-26 15:51:34 +01:00

79 lines
2.2 KiB
C++

/*
* Copyright (c) 2022, Frhun <serenitystuff@frhun.de>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#pragma once
#include <AK/Platform.h>
namespace AK {
template<typename T, typename... Ts>
[[nodiscard]] bool first_is_one_of(T const to_compare, Ts const... valid_values)
{
return (... || (to_compare == valid_values));
}
template<typename T, typename... Ts>
[[nodiscard]] bool first_is_smaller_than_one_of(T const to_compare, Ts const... valid_values)
{
return (... || (to_compare < valid_values));
}
template<typename T, typename... Ts>
[[nodiscard]] bool first_is_smaller_or_equal_than_one_of(T const to_compare, Ts const... valid_values)
{
return (... || (to_compare <= valid_values));
}
template<typename T, typename... Ts>
[[nodiscard]] bool first_is_larger_than_one_of(T const to_compare, Ts const... valid_values)
{
return (... || (to_compare > valid_values));
}
template<typename T, typename... Ts>
[[nodiscard]] bool first_is_larger_or_equal_than_one_of(T const to_compare, Ts const... valid_values)
{
return (... || (to_compare >= valid_values));
}
template<typename T, typename... Ts>
[[nodiscard]] bool first_is_smaller_than_all_of(T const to_compare, Ts const... valid_values)
{
return (... && (to_compare < valid_values));
}
template<typename T, typename... Ts>
[[nodiscard]] bool first_is_smaller_or_equal_than_all_of(T const to_compare, Ts const... valid_values)
{
return (... && (to_compare <= valid_values));
}
template<typename T, typename... Ts>
[[nodiscard]] bool first_is_larger_than_all_of(T const to_compare, Ts const... valid_values)
{
return (... && (to_compare > valid_values));
}
template<typename T, typename... Ts>
[[nodiscard]] bool first_is_larger_or_equal_than_all_of(T const to_compare, Ts const... valid_values)
{
return (... && (to_compare >= valid_values));
}
}
#if USING_AK_GLOBALLY
using AK::first_is_larger_or_equal_than_all_of;
using AK::first_is_larger_or_equal_than_one_of;
using AK::first_is_larger_than_all_of;
using AK::first_is_larger_than_one_of;
using AK::first_is_one_of;
using AK::first_is_smaller_or_equal_than_all_of;
using AK::first_is_smaller_or_equal_than_one_of;
using AK::first_is_smaller_than_all_of;
using AK::first_is_smaller_than_one_of;
#endif