24 template <
typename TElement,
typename TContainer,
typename Enable = std::enable_if_t<true>>
28 template <
typename... Ts>
29 struct NoAdapterFor : std::false_type {};
32 NoAdapterFor<TElement, TContainer>::value,
33 "CollectionAdapter is not implemented for this type. "
34 "It is implemented for single elements as well as std::vector, std::array, and "
35 "c-arrays of components. "
36 "You can add your own implementation by specializing "
37 "rerun::CollectionAdapter<TElement, TContainer> for a given "
38 "target type TElement and your input type TContainer."
All Rerun C++ types and functions are in the rerun namespace or one of its nested namespaces.
Definition rerun.hpp:22
The rerun::CollectionAdapter trait is responsible for mapping an input argument to a rerun::Collectio...
Definition collection_adapter.hpp:25