2024-05-31 22:59:00 -04:00
|
|
|
#ifndef RFL_INTERNAL_HASVALIDATION_HPP_
|
|
|
|
#define RFL_INTERNAL_HASVALIDATION_HPP_
|
|
|
|
|
|
|
|
#include <type_traits>
|
|
|
|
|
|
|
|
#include "../Result.hpp"
|
|
|
|
|
|
|
|
namespace rfl {
|
2024-06-08 14:10:59 -04:00
|
|
|
namespace internal {
|
2024-05-31 22:59:00 -04:00
|
|
|
|
2024-06-08 14:10:59 -04:00
|
|
|
template <class Class, typename T>
|
|
|
|
concept HasValidation = requires(Class obj, T value) {
|
|
|
|
{ Class::validate(value) } -> std::same_as<rfl::Result<T>>;
|
|
|
|
};
|
2024-05-31 22:59:00 -04:00
|
|
|
|
2024-06-08 14:10:59 -04:00
|
|
|
} // namespace internal
|
|
|
|
} // namespace rfl
|
2024-05-31 22:59:00 -04:00
|
|
|
|
|
|
|
#endif
|