Concepts ======== *As in the C++20 feature* .. namespace:: cronch .. namespace-push:: concepts .. _General concepts: General concepts ------------------ .. concept:: template serializable Type that can be serialized by cronch at the most basic level. **Requirements** - ``{ metadata::name } -> std::same_as`` .. concept:: template has_members Type that can defines fields for use by cronch **Requirements** - :concept:`serializable` - ``{ metadata::members } -> meta::concepts::view`` .. concept:: template meta_complete Type that satisfies all other concepts for meta information **Requirements** - :concept:`serializable` - :concept:`has_members` .. concept:: template serialization_backend Type that can be used as a serialization backend **Requirements** - ``B::serialize_to(typename B::document_type&, const meta_complete auto&)`` .. concept:: template deserizalation_backend Type that can be used for deserializing **Requirements** - ``(const B& b, meta_complete auto& v) { b.deserialize_to(v); }`` .. concept:: template backend Type that can be used as a serializing/deserializing backend. **Requirements** - `serialization_backend` - `deserizalation_backend` **Implementations** - :class:`::cronch::xml::pugi` - :class:`::cronch::json::nloh` - :class:`::cronch::json::boost` .. concept:: template iterable Type that can be iterated over **Requirements** - :expr:`std::begin(c)` - :expr:`std::end(c)` .. namespace-pop:: .. namespace-push:: meta::concepts .. _metadata concepts: Metadata concepts ----------------- .. concept:: template getter A type that acts as a getter to a member of another type **Requirements** - :expr:`typename G::owning_type` - :expr:`typename G::value_type` - :expr:`std::invocable` - :expr:`std::same_as, typename G::value_type>` **Implementations** - Anything that implements :concept:`accessor` .. concept:: template setter A type that acts as a setter to a member of another type **Requirements** - :expr:`typename S::owning_type` - :expr:`typename S::value_type` - :expr:`std::invocable` **Implementations** - Anything that implements :concept:`accessor` .. concept:: template accessor A type that acts as both a setter and getter for a member of another type **Requirements** - :concept:`setter` - :concept:`getter` **Implementations** - :class:`field` - :any:`property` .. concept:: template view A type that provides a view over the attributes of another type **Requirements** - v.map([](T&&) requires(getter || setter){}) **Implementations** - :class:`mems`