Classes | |
struct | RVecInlineStorageSize |
The size of the inline storage of an RVec. More... | |
struct | SmallVectorAlignmentAndSize |
Used to figure out the offset of the first element of an RVec. More... | |
class | SmallVectorBase |
This is all the stuff common to all SmallVectors. More... | |
struct | SmallVectorStorage |
Storage for the SmallVector elements. More... | |
struct | SmallVectorStorage< T, 0 > |
We need the storage to be properly aligned even for small-size of 0 so that the pointer math in SmallVectorTemplateCommon::getFirstEl() is well-defined. More... | |
class | SmallVectorTemplateBase |
SmallVectorTemplateBase<TriviallyCopyable = false> - This is where we put method implementations that are designed to work with non-trivial T's. More... | |
class | SmallVectorTemplateBase< T, true > |
SmallVectorTemplateBase<TriviallyCopyable = true> - This is where we put method implementations that are designed to work with trivially copyable T's. More... | |
class | SmallVectorTemplateCommon |
This is the part of SmallVectorTemplateBase which does not depend on whether the type T is a POD. More... | |
Typedefs | |
template<typename T > | |
using | RVec = ROOT::VecOps::RVec< T > |
Functions | |
template<typename... T> | |
std::size_t | GetVectorsSize (const std::string &id, const RVec< T > &... vs) |
template<typename Tuple_t , std::size_t... Is> | |
auto | MapFromTuple (Tuple_t &&t, std::index_sequence< Is... >) -> decltype(MapImpl(std::get< std::tuple_size< Tuple_t >::value - 1 >(t), std::get< Is >(t)...)) |
template<typename F , typename... T> | |
auto | MapImpl (F &&f, const RVec< T > &... vs) -> RVec< decltype(f(vs[0]...))> |
uint64_t | NextPowerOf2 (uint64_t A) |
Return the next power of two (in 64-bits) that is strictly greater than A. | |
template<typename T , bool TriviallyCopyable> | |
void (off) SmallVectorTemplateBase< T | |
using ROOT::Internal::VecOps::RVec = typedef ROOT::VecOps::RVec<T> |
std::size_t ROOT::Internal::VecOps::GetVectorsSize | ( | const std::string & | id, |
const RVec< T > &... | vs | ||
) |
auto ROOT::Internal::VecOps::MapFromTuple | ( | Tuple_t && | t, |
std::index_sequence< Is... > | |||
) | -> decltype(MapImpl(std::get<std::tuple_size<Tuple_t>::value - 1>(t), std::get<Is>(t)...)) |
|
inline |
ROOT::Internal::VecOps::void | ( | off | ) |