1#ifndef __VECS_BUNDLE_H__ 
    2#define __VECS_BUNDLE_H__ 
   13    struct is_bundle: std::is_base_of<TagBundle, std::decay_t<T>> {};
 
   30template<
typename... Components>
 
   32    std::tuple<Components...>
 
 
std::tuple< Components... > components
A tuple holding the components in the bundle.
Definition bundle.h:33
constexpr Bundle(Components &&... components)
Constructs a Bundle with the given components.
Definition bundle.h:50