2022-07-03 23:29:46 -04:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2022, Frhun <serenitystuff@frhun.de>
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2022-11-26 06:18:30 -05:00
|
|
|
#include <AK/Platform.h>
|
2025-01-07 10:23:23 -05:00
|
|
|
#include <AK/StdLibExtras.h>
|
2022-11-26 06:18:30 -05:00
|
|
|
|
2022-07-03 23:29:46 -04:00
|
|
|
namespace AK {
|
|
|
|
|
|
|
|
template<typename T, typename... Ts>
|
2025-01-07 10:23:23 -05:00
|
|
|
[[nodiscard]] constexpr bool first_is_one_of(T&& to_compare, Ts&&... valid_values)
|
2022-07-03 23:29:46 -04:00
|
|
|
{
|
2025-01-07 10:23:23 -05:00
|
|
|
return (... || (forward<T>(to_compare) == forward<Ts>(valid_values)));
|
2022-07-03 23:29:46 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
template<typename T, typename... Ts>
|
2025-01-07 10:23:23 -05:00
|
|
|
[[nodiscard]] constexpr bool first_is_smaller_than_one_of(T&& to_compare, Ts&&... valid_values)
|
2022-07-03 23:29:46 -04:00
|
|
|
{
|
2025-01-07 10:23:23 -05:00
|
|
|
return (... || (forward<T>(to_compare) < forward<Ts>(valid_values)));
|
2022-07-03 23:29:46 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
template<typename T, typename... Ts>
|
2025-01-07 10:23:23 -05:00
|
|
|
[[nodiscard]] constexpr bool first_is_smaller_or_equal_than_one_of(T&& to_compare, Ts&&... valid_values)
|
2022-07-03 23:29:46 -04:00
|
|
|
{
|
2025-01-07 10:23:23 -05:00
|
|
|
return (... || (forward<T>(to_compare) <= forward<Ts>(valid_values)));
|
2022-07-03 23:29:46 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
template<typename T, typename... Ts>
|
2025-01-07 10:23:23 -05:00
|
|
|
[[nodiscard]] constexpr bool first_is_larger_than_one_of(T&& to_compare, Ts&&... valid_values)
|
2022-07-03 23:29:46 -04:00
|
|
|
{
|
2025-01-07 10:23:23 -05:00
|
|
|
return (... || (forward<T>(to_compare) > forward<Ts>(valid_values)));
|
2022-07-03 23:29:46 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
template<typename T, typename... Ts>
|
2025-01-07 10:23:23 -05:00
|
|
|
[[nodiscard]] constexpr bool first_is_larger_or_equal_than_one_of(T&& to_compare, Ts&&... valid_values)
|
2022-07-03 23:29:46 -04:00
|
|
|
{
|
2025-01-07 10:23:23 -05:00
|
|
|
return (... || (forward<T>(to_compare) >= forward<Ts>(valid_values)));
|
2022-07-03 23:29:46 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
template<typename T, typename... Ts>
|
2025-01-07 10:23:23 -05:00
|
|
|
[[nodiscard]] constexpr bool first_is_smaller_than_all_of(T&& to_compare, Ts&&... valid_values)
|
2022-07-03 23:29:46 -04:00
|
|
|
{
|
2025-01-07 10:23:23 -05:00
|
|
|
return (... && (forward<T>(to_compare) < forward<Ts>(valid_values)));
|
2022-07-03 23:29:46 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
template<typename T, typename... Ts>
|
2025-01-07 10:23:23 -05:00
|
|
|
[[nodiscard]] constexpr bool first_is_smaller_or_equal_than_all_of(T&& to_compare, Ts&&... valid_values)
|
2022-07-03 23:29:46 -04:00
|
|
|
{
|
2025-01-07 10:23:23 -05:00
|
|
|
return (... && (forward<T>(to_compare) <= forward<Ts>(valid_values)));
|
2022-07-03 23:29:46 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
template<typename T, typename... Ts>
|
2025-01-07 10:23:23 -05:00
|
|
|
[[nodiscard]] constexpr bool first_is_larger_than_all_of(T&& to_compare, Ts&&... valid_values)
|
2022-07-03 23:29:46 -04:00
|
|
|
{
|
2025-01-07 10:23:23 -05:00
|
|
|
return (... && (forward<T>(to_compare) > forward<Ts>(valid_values)));
|
2022-07-03 23:29:46 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
template<typename T, typename... Ts>
|
2025-01-07 10:23:23 -05:00
|
|
|
[[nodiscard]] constexpr bool first_is_larger_or_equal_than_all_of(T&& to_compare, Ts&&... valid_values)
|
2022-07-03 23:29:46 -04:00
|
|
|
{
|
2025-01-07 10:23:23 -05:00
|
|
|
return (... && (forward<T>(to_compare) >= forward<Ts>(valid_values)));
|
2022-07-03 23:29:46 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-11-26 06:18:30 -05:00
|
|
|
#if USING_AK_GLOBALLY
|
2022-07-03 23:29:46 -04:00
|
|
|
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;
|
2022-11-26 06:18:30 -05:00
|
|
|
#endif
|