// This file is under the public domain.
#pragma once
#include <cstddef>
#include <type_traits>
namespace Common {
template <typename T>
constexpr T AlignUp(T value, std::size_t size) {
static_assert(std::is_unsigned_v<T>, "T must be an unsigned value.");
return static_cast<T>(value + (size - value % size) % size);
}
constexpr T AlignDown(T value, std::size_t size) {
return static_cast<T>(value - value % size);
} // namespace Common