Logo ROOT  
Reference Guide
 
Loading...
Searching...
No Matches
ROOT::Detail::VecOps::RVecImpl< T > Class Template Reference

template<typename T>
class ROOT::Detail::VecOps::RVecImpl< T >

This class consists of common code factored out of the SmallVector class to reduce code duplication based on the SmallVector 'N' template parameter.

Definition at line 565 of file RVec.hxx.

Public Types

using const_iterator = typename SuperClass::const_iterator
 
using const_pointer = const T *
 
using const_reference = const T &
 
using const_reverse_iterator = std::reverse_iterator<const_iterator>
 
using difference_type = ptrdiff_t
 
using iterator = typename SuperClass::iterator
 
using pointer = T *
 
using reference = typename SuperClass::reference
 
using reverse_iterator = std::reverse_iterator<iterator>
 
using Size_T = int32_t
 
using size_type = typename SuperClass::size_type
 
using value_type = T
 

Public Member Functions

 RVecImpl (const RVecImpl &)=delete
 
 ~RVecImpl ()
 
template<typename in_iter , typename = typename std::enable_if<std::is_convertible< typename std::iterator_traits<in_iter>::iterator_category, std::input_iterator_tag>::value>::type>
void append (in_iter in_start, in_iter in_end)
 Add the specified range to the end of the SmallVector.
 
void append (size_type NumInputs, const T &Elt)
 Append NumInputs copies of Elt to the end.
 
void append (std::initializer_list< T > IL)
 
template<typename in_iter , typename = typename std::enable_if<std::is_convertible< typename std::iterator_traits<in_iter>::iterator_category, std::input_iterator_tag>::value>::type>
void assign (in_iter in_start, in_iter in_end)
 
void assign (size_type NumElts, const T &Elt)
 
void assign (std::initializer_list< T > IL)
 
reference back ()
 
const_reference back () const
 
const_iterator begin () const noexcept
 
iterator begin () noexcept
 
size_t capacity () const noexcept
 
size_t capacity_in_bytes () const
 
const_iterator cbegin () const noexcept
 
const_iterator cend () const noexcept
 
void clear ()
 
const_reverse_iterator crbegin () const noexcept
 
const_reverse_iterator crend () const noexcept
 
const_pointer data () const noexcept
 Return a pointer to the vector's buffer, even if empty().
 
pointer data () noexcept
 Return a pointer to the vector's buffer, even if empty().
 
template<typename... ArgTypes>
reference emplace_back (ArgTypes &&...Args)
 
bool empty () const
 
const_iterator end () const noexcept
 
iterator end () noexcept
 
iterator erase (const_iterator CI)
 
iterator erase (const_iterator CS, const_iterator CE)
 
reference front ()
 
const_reference front () const
 
iterator insert (iterator I, const T &Elt)
 
template<typename ItTy , typename = typename std::enable_if<std::is_convertible< typename std::iterator_traits<ItTy>::iterator_category, std::input_iterator_tag>::value>::type>
iterator insert (iterator I, ItTy From, ItTy To)
 
iterator insert (iterator I, size_type NumToInsert, const T &Elt)
 
void insert (iterator I, std::initializer_list< T > IL)
 
iterator insert (iterator I, T &&Elt)
 
size_type max_size () const noexcept
 
RVecImploperator= (const RVecImpl &RHS)
 
RVecImploperator= (RVecImpl &&RHS) noexcept(kIsNoExcept)
 
void pop_back ()
 
void pop_back_n (size_type NumItems)
 
pop_back_val ()
 
void push_back (const T &Elt)
 
void push_back (T &&Elt)
 
const_reverse_iterator rbegin () const noexcept
 
reverse_iterator rbegin () noexcept
 
const_reverse_iterator rend () const noexcept
 
reverse_iterator rend () noexcept
 
void reserve (size_type N)
 
void resize (size_type N)
 
void resize (size_type N, const T &NV)
 
void set_size (size_t N)
 Set the array size to N, which the current array must have enough capacity for.
 
size_t size () const
 
size_type size_in_bytes () const
 
void swap (RVecImpl &RHS)
 

Protected Member Functions

 RVecImpl (unsigned N)
 
void grow (size_t MinSize=0)
 Grow the allocated memory (without initializing new elements), doubling the size of the allocated memory.
 
void grow_pod (size_t MinSize, size_t TSize)
 
void grow_pod (void *FirstEl, size_t MinSize, size_t TSize)
 This is an implementation of the grow() method which only works on POD-like data types and is out of line to reduce code duplication.
 
bool isSmall () const
 Return true if this is a smallvector which has not had dynamic memory allocated for it.
 
bool Owns () const
 If false, the RVec is in "memory adoption" mode, i.e. it is acting as a view on a memory buffer it does not own.
 
void resetToSmall ()
 Put this vector in a state of being small.
 
void SetSizeUnchecked (std::size_t N)
 

Static Protected Member Functions

static void destroy_range (T *S, T *E)
 
static void report_at_maximum_capacity ()
 Report that this vector is already at maximum capacity.
 
static void report_size_overflow (size_t MinSize)
 Report that MinSize doesn't fit into this vector's size type.
 
static constexpr size_t SizeTypeMax ()
 The maximum value of the Size_T used.
 
template<typename It1 , typename It2 >
static void uninitialized_copy (It1 I, It1 E, It2 Dest)
 Copy the range [I, E) onto the uninitialized memory starting with "Dest", constructing elements as needed.
 
template<typename It1 , typename It2 >
static void uninitialized_move (It1 I, It1 E, It2 Dest)
 Move the range [I, E) into the uninitialized memory starting with "Dest", constructing elements as needed.
 

Protected Attributes

void * fBeginX
 
Size_T fCapacity
 Always >= -1. fCapacity == -1 indicates the RVec is in "memory adoption" mode.
 
Size_T fSize = 0
 Always >= 0.
 

Private Types

using Base = SmallVectorBase
 
using SuperClass = Internal::VecOps::SmallVectorTemplateBase<T>
 

Private Member Functions

void * getFirstEl () const
 Find the address of the first element.
 

Static Private Attributes

static constexpr bool kIsNoExcept = std::is_nothrow_destructible_v<T> && std::is_nothrow_move_constructible_v<T>
 

#include <ROOT/RVec.hxx>

Inheritance diagram for ROOT::Detail::VecOps::RVecImpl< T >:
[legend]

Member Typedef Documentation

◆ Base

Definition at line 211 of file RVec.hxx.

◆ const_iterator

Definition at line 571 of file RVec.hxx.

◆ const_pointer

template<typename T >
using ROOT::Internal::VecOps::SmallVectorTemplateCommon< T >::const_pointer = const T *
inherited

Definition at line 261 of file RVec.hxx.

◆ const_reference

template<typename T >
using ROOT::Internal::VecOps::SmallVectorTemplateCommon< T >::const_reference = const T &
inherited

Definition at line 259 of file RVec.hxx.

◆ const_reverse_iterator

template<typename T >
using ROOT::Internal::VecOps::SmallVectorTemplateCommon< T >::const_reverse_iterator = std::reverse_iterator<const_iterator>
inherited

Definition at line 255 of file RVec.hxx.

◆ difference_type

template<typename T >
using ROOT::Internal::VecOps::SmallVectorTemplateCommon< T >::difference_type = ptrdiff_t
inherited

Definition at line 250 of file RVec.hxx.

◆ iterator

Definition at line 570 of file RVec.hxx.

◆ pointer

template<typename T >
using ROOT::Internal::VecOps::SmallVectorTemplateCommon< T >::pointer = T *
inherited

Definition at line 260 of file RVec.hxx.

◆ reference

Definition at line 572 of file RVec.hxx.

◆ reverse_iterator

template<typename T >
using ROOT::Internal::VecOps::SmallVectorTemplateCommon< T >::reverse_iterator = std::reverse_iterator<iterator>
inherited

Definition at line 256 of file RVec.hxx.

◆ Size_T

Definition at line 144 of file RVec.hxx.

◆ size_type

Definition at line 573 of file RVec.hxx.

◆ SuperClass

Definition at line 566 of file RVec.hxx.

◆ value_type

template<typename T >
using ROOT::Internal::VecOps::SmallVectorTemplateCommon< T >::value_type = T
inherited

Definition at line 251 of file RVec.hxx.

Constructor & Destructor Documentation

◆ RVecImpl() [1/2]

template<typename T >
ROOT::Detail::VecOps::RVecImpl< T >::RVecImpl ( unsigned N)
inlineexplicitprotected

Definition at line 577 of file RVec.hxx.

◆ RVecImpl() [2/2]

template<typename T >
ROOT::Detail::VecOps::RVecImpl< T >::RVecImpl ( const RVecImpl< T > & )
delete

◆ ~RVecImpl()

template<typename T >
ROOT::Detail::VecOps::RVecImpl< T >::~RVecImpl ( )
inline

Definition at line 582 of file RVec.hxx.

Member Function Documentation

◆ append() [1/3]

template<typename T >
template<typename in_iter , typename = typename std::enable_if<std::is_convertible< typename std::iterator_traits<in_iter>::iterator_category, std::input_iterator_tag>::value>::type>
void ROOT::Detail::VecOps::RVecImpl< T >::append ( in_iter in_start,
in_iter in_end )
inline

Add the specified range to the end of the SmallVector.

Definition at line 659 of file RVec.hxx.

◆ append() [2/3]

template<typename T >
void ROOT::Detail::VecOps::RVecImpl< T >::append ( size_type NumInputs,
const T & Elt )
inline

Append NumInputs copies of Elt to the end.

Definition at line 670 of file RVec.hxx.

◆ append() [3/3]

template<typename T >
void ROOT::Detail::VecOps::RVecImpl< T >::append ( std::initializer_list< T > IL)
inline

Definition at line 679 of file RVec.hxx.

◆ assign() [1/3]

template<typename T >
template<typename in_iter , typename = typename std::enable_if<std::is_convertible< typename std::iterator_traits<in_iter>::iterator_category, std::input_iterator_tag>::value>::type>
void ROOT::Detail::VecOps::RVecImpl< T >::assign ( in_iter in_start,
in_iter in_end )
inline

Definition at line 697 of file RVec.hxx.

◆ assign() [2/3]

template<typename T >
void ROOT::Detail::VecOps::RVecImpl< T >::assign ( size_type NumElts,
const T & Elt )
inline

Definition at line 685 of file RVec.hxx.

◆ assign() [3/3]

template<typename T >
void ROOT::Detail::VecOps::RVecImpl< T >::assign ( std::initializer_list< T > IL)
inline

Definition at line 703 of file RVec.hxx.

◆ back() [1/2]

template<typename T >
reference ROOT::Internal::VecOps::SmallVectorTemplateCommon< T >::back ( )
inlineinherited

Definition at line 309 of file RVec.hxx.

◆ back() [2/2]

template<typename T >
const_reference ROOT::Internal::VecOps::SmallVectorTemplateCommon< T >::back ( ) const
inlineinherited

Definition at line 317 of file RVec.hxx.

◆ begin() [1/2]

template<typename T >
const_iterator ROOT::Internal::VecOps::SmallVectorTemplateCommon< T >::begin ( ) const
inlinenoexceptinherited

Definition at line 269 of file RVec.hxx.

◆ begin() [2/2]

template<typename T >
iterator ROOT::Internal::VecOps::SmallVectorTemplateCommon< T >::begin ( )
inlinenoexceptinherited

Definition at line 268 of file RVec.hxx.

◆ capacity()

template<typename T >
size_t ROOT::Internal::VecOps::SmallVectorBase::capacity ( ) const
inlinenoexceptinherited

Definition at line 179 of file RVec.hxx.

◆ capacity_in_bytes()

template<typename T >
size_t ROOT::Internal::VecOps::SmallVectorTemplateCommon< T >::capacity_in_bytes ( ) const
inlineinherited

Definition at line 286 of file RVec.hxx.

◆ cbegin()

template<typename T >
const_iterator ROOT::Internal::VecOps::SmallVectorTemplateCommon< T >::cbegin ( ) const
inlinenoexceptinherited

Definition at line 270 of file RVec.hxx.

◆ cend()

template<typename T >
const_iterator ROOT::Internal::VecOps::SmallVectorTemplateCommon< T >::cend ( ) const
inlinenoexceptinherited

Definition at line 273 of file RVec.hxx.

◆ clear()

template<typename T >
void ROOT::Detail::VecOps::RVecImpl< T >::clear ( )
inline

Definition at line 591 of file RVec.hxx.

◆ crbegin()

template<typename T >
const_reverse_iterator ROOT::Internal::VecOps::SmallVectorTemplateCommon< T >::crbegin ( ) const
inlinenoexceptinherited

Definition at line 278 of file RVec.hxx.

◆ crend()

template<typename T >
const_reverse_iterator ROOT::Internal::VecOps::SmallVectorTemplateCommon< T >::crend ( ) const
inlinenoexceptinherited

Definition at line 281 of file RVec.hxx.

◆ data() [1/2]

template<typename T >
const_pointer ROOT::Internal::VecOps::SmallVectorTemplateCommon< T >::data ( ) const
inlinenoexceptinherited

Return a pointer to the vector's buffer, even if empty().

Definition at line 291 of file RVec.hxx.

◆ data() [2/2]

template<typename T >
pointer ROOT::Internal::VecOps::SmallVectorTemplateCommon< T >::data ( )
inlinenoexceptinherited

Return a pointer to the vector's buffer, even if empty().

Definition at line 289 of file RVec.hxx.

◆ destroy_range()

template<typename T , bool = (std::is_trivially_copy_constructible<T>::value) && (std::is_trivially_move_constructible<T>::value) && std::is_trivially_destructible<T>::value>
static void ROOT::Internal::VecOps::SmallVectorTemplateBase< T, bool >::destroy_range ( T * S,
T * E )
inlinestaticprotectedinherited

Definition at line 341 of file RVec.hxx.

◆ emplace_back()

template<typename T >
template<typename... ArgTypes>
reference ROOT::Detail::VecOps::RVecImpl< T >::emplace_back ( ArgTypes &&... Args)
inline

Definition at line 925 of file RVec.hxx.

◆ empty()

template<typename T >
bool ROOT::Internal::VecOps::SmallVectorBase::empty ( ) const
inlineinherited

Definition at line 181 of file RVec.hxx.

◆ end() [1/2]

template<typename T >
const_iterator ROOT::Internal::VecOps::SmallVectorTemplateCommon< T >::end ( ) const
inlinenoexceptinherited

Definition at line 272 of file RVec.hxx.

◆ end() [2/2]

template<typename T >
iterator ROOT::Internal::VecOps::SmallVectorTemplateCommon< T >::end ( )
inlinenoexceptinherited

Definition at line 271 of file RVec.hxx.

◆ erase() [1/2]

template<typename T >
iterator ROOT::Detail::VecOps::RVecImpl< T >::erase ( const_iterator CI)
inline

Definition at line 709 of file RVec.hxx.

◆ erase() [2/2]

template<typename T >
iterator ROOT::Detail::VecOps::RVecImpl< T >::erase ( const_iterator CS,
const_iterator CE )
inline

Definition at line 726 of file RVec.hxx.

◆ front() [1/2]

template<typename T >
reference ROOT::Internal::VecOps::SmallVectorTemplateCommon< T >::front ( )
inlineinherited

Definition at line 293 of file RVec.hxx.

◆ front() [2/2]

template<typename T >
const_reference ROOT::Internal::VecOps::SmallVectorTemplateCommon< T >::front ( ) const
inlineinherited

Definition at line 301 of file RVec.hxx.

◆ getFirstEl()

template<typename T >
void * ROOT::Internal::VecOps::SmallVectorTemplateCommon< T >::getFirstEl ( ) const
inlineprivateinherited

Find the address of the first element.

For this pointer math to be valid with small-size of 0 for T with lots of alignment, it's important that SmallVectorStorage is properly-aligned even for small-size of 0.

Definition at line 216 of file RVec.hxx.

◆ grow()

template<typename T , bool = (std::is_trivially_copy_constructible<T>::value) && (std::is_trivially_move_constructible<T>::value) && std::is_trivially_destructible<T>::value>
void ROOT::Internal::VecOps::SmallVectorTemplateBase< T, bool >::grow ( size_t MinSize = 0)
protectedinherited

Grow the allocated memory (without initializing new elements), doubling the size of the allocated memory.

Guarantees space for at least one more element, or MinSize more elements if specified.

◆ grow_pod() [1/2]

template<typename T >
void ROOT::Internal::VecOps::SmallVectorTemplateCommon< T >::grow_pod ( size_t MinSize,
size_t TSize )
inlineprotectedinherited

Definition at line 231 of file RVec.hxx.

◆ grow_pod() [2/2]

void ROOT::Internal::VecOps::SmallVectorBase::grow_pod ( void * FirstEl,
size_t MinSize,
size_t TSize )
protectedinherited

This is an implementation of the grow() method which only works on POD-like data types and is out of line to reduce code duplication.

This function will report a fatal error if it cannot increase capacity.

Definition at line 51 of file RVec.cxx.

◆ insert() [1/5]

template<typename T >
iterator ROOT::Detail::VecOps::RVecImpl< T >::insert ( iterator I,
const T & Elt )
inline

Definition at line 778 of file RVec.hxx.

◆ insert() [2/5]

template<typename T >
template<typename ItTy , typename = typename std::enable_if<std::is_convertible< typename std::iterator_traits<ItTy>::iterator_category, std::input_iterator_tag>::value>::type>
iterator ROOT::Detail::VecOps::RVecImpl< T >::insert ( iterator I,
ItTy From,
ItTy To )
inline

Definition at line 864 of file RVec.hxx.

◆ insert() [3/5]

template<typename T >
iterator ROOT::Detail::VecOps::RVecImpl< T >::insert ( iterator I,
size_type NumToInsert,
const T & Elt )
inline

Definition at line 809 of file RVec.hxx.

◆ insert() [4/5]

template<typename T >
void ROOT::Detail::VecOps::RVecImpl< T >::insert ( iterator I,
std::initializer_list< T > IL )
inline

Definition at line 922 of file RVec.hxx.

◆ insert() [5/5]

template<typename T >
iterator ROOT::Detail::VecOps::RVecImpl< T >::insert ( iterator I,
T && Elt )
inline

Definition at line 746 of file RVec.hxx.

◆ isSmall()

template<typename T >
bool ROOT::Internal::VecOps::SmallVectorTemplateCommon< T >::isSmall ( ) const
inlineprotectedinherited

Return true if this is a smallvector which has not had dynamic memory allocated for it.

Definition at line 235 of file RVec.hxx.

◆ max_size()

template<typename T >
size_type ROOT::Internal::VecOps::SmallVectorTemplateCommon< T >::max_size ( ) const
inlinenoexceptinherited

Definition at line 284 of file RVec.hxx.

◆ operator=() [1/2]

template<typename T >
RVecImpl< T > & ROOT::Detail::VecOps::RVecImpl< T >::operator= ( const RVecImpl< T > & RHS)

Definition at line 1000 of file RVec.hxx.

◆ operator=() [2/2]

template<typename T >
RVecImpl< T > & ROOT::Detail::VecOps::RVecImpl< T >::operator= ( RVecImpl< T > && RHS)
noexcept

Definition at line 1053 of file RVec.hxx.

◆ Owns()

bool ROOT::Internal::VecOps::SmallVectorBase::Owns ( ) const
inlineprotectedinherited

If false, the RVec is in "memory adoption" mode, i.e. it is acting as a view on a memory buffer it does not own.

Definition at line 173 of file RVec.hxx.

◆ pop_back()

template<typename T , bool = (std::is_trivially_copy_constructible<T>::value) && (std::is_trivially_move_constructible<T>::value) && std::is_trivially_destructible<T>::value>
void ROOT::Internal::VecOps::SmallVectorTemplateBase< T, bool >::pop_back ( )
inlineinherited

Definition at line 387 of file RVec.hxx.

◆ pop_back_n()

template<typename T >
void ROOT::Detail::VecOps::RVecImpl< T >::pop_back_n ( size_type NumItems)
inline

Definition at line 636 of file RVec.hxx.

◆ pop_back_val()

template<typename T >
T ROOT::Detail::VecOps::RVecImpl< T >::pop_back_val ( )
inline

Definition at line 646 of file RVec.hxx.

◆ push_back() [1/2]

template<typename T , bool = (std::is_trivially_copy_constructible<T>::value) && (std::is_trivially_move_constructible<T>::value) && std::is_trivially_destructible<T>::value>
void ROOT::Internal::VecOps::SmallVectorTemplateBase< T, bool >::push_back ( const T & Elt)
inlineinherited

Definition at line 371 of file RVec.hxx.

◆ push_back() [2/2]

template<typename T , bool = (std::is_trivially_copy_constructible<T>::value) && (std::is_trivially_move_constructible<T>::value) && std::is_trivially_destructible<T>::value>
void ROOT::Internal::VecOps::SmallVectorTemplateBase< T, bool >::push_back ( T && Elt)
inlineinherited

Definition at line 379 of file RVec.hxx.

◆ rbegin() [1/2]

template<typename T >
const_reverse_iterator ROOT::Internal::VecOps::SmallVectorTemplateCommon< T >::rbegin ( ) const
inlinenoexceptinherited

Definition at line 277 of file RVec.hxx.

◆ rbegin() [2/2]

template<typename T >
reverse_iterator ROOT::Internal::VecOps::SmallVectorTemplateCommon< T >::rbegin ( )
inlinenoexceptinherited

Definition at line 276 of file RVec.hxx.

◆ rend() [1/2]

template<typename T >
const_reverse_iterator ROOT::Internal::VecOps::SmallVectorTemplateCommon< T >::rend ( ) const
inlinenoexceptinherited

Definition at line 280 of file RVec.hxx.

◆ rend() [2/2]

template<typename T >
reverse_iterator ROOT::Internal::VecOps::SmallVectorTemplateCommon< T >::rend ( )
inlinenoexceptinherited

Definition at line 279 of file RVec.hxx.

◆ report_at_maximum_capacity()

void ROOT::Internal::VecOps::SmallVectorBase::report_at_maximum_capacity ( )
staticprotectedinherited

Report that this vector is already at maximum capacity.

Throws std::length_error or calls report_fatal_error.

Definition at line 44 of file RVec.cxx.

◆ report_size_overflow()

void ROOT::Internal::VecOps::SmallVectorBase::report_size_overflow ( size_t MinSize)
staticprotectedinherited

Report that MinSize doesn't fit into this vector's size type.

Throws std::length_error or calls report_fatal_error.

Definition at line 37 of file RVec.cxx.

◆ reserve()

template<typename T >
void ROOT::Detail::VecOps::RVecImpl< T >::reserve ( size_type N)
inline

Definition at line 630 of file RVec.hxx.

◆ resetToSmall()

template<typename T >
void ROOT::Internal::VecOps::SmallVectorTemplateCommon< T >::resetToSmall ( )
inlineprotectedinherited

Put this vector in a state of being small.

Definition at line 238 of file RVec.hxx.

◆ resize() [1/2]

template<typename T >
void ROOT::Detail::VecOps::RVecImpl< T >::resize ( size_type N)
inline

Definition at line 601 of file RVec.hxx.

◆ resize() [2/2]

template<typename T >
void ROOT::Detail::VecOps::RVecImpl< T >::resize ( size_type N,
const T & NV )
inline

Definition at line 616 of file RVec.hxx.

◆ set_size()

void ROOT::Internal::VecOps::SmallVectorBase::set_size ( size_t N)
inlineinherited

Set the array size to N, which the current array must have enough capacity for.

This does not construct or destroy any elements in the vector.

Clients can use this in conjunction with capacity() to write past the end of the buffer when they know that more elements are available, and only update the size later. This avoids the cost of value initializing elements which will only be overwritten.

Definition at line 192 of file RVec.hxx.

◆ SetSizeUnchecked()

void ROOT::Internal::VecOps::SmallVectorBase::SetSizeUnchecked ( std::size_t N)
inlineprotectedinherited

Definition at line 175 of file RVec.hxx.

◆ size()

template<typename T >
size_t ROOT::Internal::VecOps::SmallVectorBase::size ( ) const
inlineinherited

Definition at line 178 of file RVec.hxx.

◆ size_in_bytes()

template<typename T >
size_type ROOT::Internal::VecOps::SmallVectorTemplateCommon< T >::size_in_bytes ( ) const
inlineinherited

Definition at line 283 of file RVec.hxx.

◆ SizeTypeMax()

static constexpr size_t ROOT::Internal::VecOps::SmallVectorBase::SizeTypeMax ( )
inlinestaticconstexprprotectedinherited

The maximum value of the Size_T used.

Definition at line 155 of file RVec.hxx.

◆ swap()

template<typename T >
void ROOT::Detail::VecOps::RVecImpl< T >::swap ( RVecImpl< T > & RHS)

Definition at line 940 of file RVec.hxx.

◆ uninitialized_copy()

template<typename T , bool = (std::is_trivially_copy_constructible<T>::value) && (std::is_trivially_move_constructible<T>::value) && std::is_trivially_destructible<T>::value>
template<typename It1 , typename It2 >
static void ROOT::Internal::VecOps::SmallVectorTemplateBase< T, bool >::uninitialized_copy ( It1 I,
It1 E,
It2 Dest )
inlinestaticprotectedinherited

Copy the range [I, E) onto the uninitialized memory starting with "Dest", constructing elements as needed.

Definition at line 360 of file RVec.hxx.

◆ uninitialized_move()

template<typename T , bool = (std::is_trivially_copy_constructible<T>::value) && (std::is_trivially_move_constructible<T>::value) && std::is_trivially_destructible<T>::value>
template<typename It1 , typename It2 >
static void ROOT::Internal::VecOps::SmallVectorTemplateBase< T, bool >::uninitialized_move ( It1 I,
It1 E,
It2 Dest )
inlinestaticprotectedinherited

Move the range [I, E) into the uninitialized memory starting with "Dest", constructing elements as needed.

Definition at line 352 of file RVec.hxx.

Member Data Documentation

◆ fBeginX

void* ROOT::Internal::VecOps::SmallVectorBase::fBeginX
protectedinherited

Definition at line 147 of file RVec.hxx.

◆ fCapacity

Size_T ROOT::Internal::VecOps::SmallVectorBase::fCapacity
protectedinherited

Always >= -1. fCapacity == -1 indicates the RVec is in "memory adoption" mode.

Definition at line 152 of file RVec.hxx.

◆ fSize

Size_T ROOT::Internal::VecOps::SmallVectorBase::fSize = 0
protectedinherited

Always >= 0.

Definition at line 150 of file RVec.hxx.

◆ kIsNoExcept

template<typename T >
constexpr bool ROOT::Detail::VecOps::RVecImpl< T >::kIsNoExcept = std::is_nothrow_destructible_v<T> && std::is_nothrow_move_constructible_v<T>
staticconstexprprivate

Definition at line 567 of file RVec.hxx.

  • math/vecops/inc/ROOT/RVec.hxx