Sourcemeta Core 0.0.0
Loading...
Searching...
No Matches
sourcemeta::core::json_auto_has_method_from Concept Reference

Concept definition

template<typename T>
concept json_auto_has_method_from = requires(const JSON &value) {
{ T::from_json(value) } -> std::same_as<std::optional<T>>;
}
Definition json_value.h:39