|
template<typename T> |
constexpr auto | named (std::string_view c, T &t) |
| Produces a Named instance that holds a mutable reference.
|
|
template<typename T> |
constexpr auto | named (std::string_view c, const T &t) |
| Produces a Named instance that holds an immutable reference.
|
|
template<typename T> |
constexpr auto | serialisationSize (T &t) -> std::enable_if_t< std::is_integral_v< T >, SerialisationSize< T > > |
| Produces a SerialisationSize instance that holds a mutable reference to a size value.
|
|
template<typename T> |
constexpr auto | serialisationSize (const T &t) -> std::enable_if_t< std::is_integral_v< T >, SerialisationSize< const T > > |
| Produces a SerialisationSize instance that holds an immutable reference to a size value.
|
|