ECSTASY
All in the name
Loading...
Searching...
No Matches
can_update_type.hpp File Reference

Concept to check if a type can be updated with a serializer. More...

Include dependency graph for can_update_type.hpp:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Classes

struct  ecstasy::serialization::traits::can_update_type< S, T, typename >
 Concept to check if a type can be updated with a serializer. More...
 
struct  ecstasy::serialization::traits::can_update_type< S, T, std::void_t< decltype(std::declval< S & >().update(std::declval< T & >()))> >
 Concept to check if a type can be updated with a serializer. More...
 
struct  ecstasy::serialization::traits::has_update_impl_for_type< S, T, typename >
 Concept to check if a serializer has a specific update implementation for a type. More...
 
struct  ecstasy::serialization::traits::has_update_impl_for_type< S, T, std::void_t< decltype(std::declval< S & >().updateImpl(std::declval< T & >()))> >
 Concept to check if a serializer has a specific update implementation for a type. More...
 

Namespaces

namespace  ecstasy
 Namespace containing all symbols specific to ecstasy.
 
namespace  ecstasy::serialization
 Namespace regrouping the serialization ecstasy classes.
 
namespace  ecstasy::serialization::traits
 Namespace regrouping the serialization ecstasy type traits.
 

Variables

template<concepts::is_serializer S, typename C >
bool constexpr ecstasy::serialization::traits::can_update_type_v = can_update_type<S, C>::value
 Alias for can_update_type<S, C>::value.
 
template<typename S , typename C >
bool constexpr ecstasy::serialization::traits::has_update_impl_for_type_v = has_update_impl_for_type<S, C>::value
 Alias for has_update_impl_for_typ<S, C>::value.
 

Detailed Description

Concept to check if a type can be updated with a serializer.

Author
Andréas Leroux (andre.nosp@m.as.l.nosp@m.eroux.nosp@m.@epi.nosp@m.tech..nosp@m.eu)
Version
1.0.0
Date
2024-06-24

Definition in file can_update_type.hpp.