| 11 | |
| 12 | template<typename Type, typename Archive> |
| 13 | constexpr static auto nested() |
| 14 | { |
| 15 | return requires(Type && item, Archive && archive) |
| 16 | { |
| 17 | requires serialize(archive, item); |
| 18 | }; |
| 19 | } |
| 20 | |
| 21 | template<typename Type> |
| 22 | constexpr static auto type() |
nothing calls this directly
no outgoing calls
no test coverage detected