Aleph-w  1.9
General library for algorithms and data structures
SpecialCtors< Container, T > Struct Template Reference

#include <ah-dry.H>

Public Member Functions

 SpecialCtors (const SpecialCtors &)
 
 SpecialCtors (SpecialCtors &&)
 
SpecialCtorsoperator= (const SpecialCtors &)
 
SpecialCtorsoperator= (SpecialCtors &&)
 
 SpecialCtors (const DynList< T > &l)
 Build the container by inserting all item of list l
 
template<class It >
 SpecialCtors (It b, It e)
 
 SpecialCtors (std::initializer_list< T > l)
 

Detailed Description

template<class Container, typename T>
struct SpecialCtors< Container, T >

Special constructors common to Aleph-w ( $\aleph_\omega$) containers.

Basically, the constructors of this class append a sequence of items.

Warning
Note that these constructors require that the class is correctly initialized, what not only very often is not the case, but it could be impossible in most cases. The most part of situations, the derived class must be initialized before to start to append new items. But this is not the case during this construction. So, don't use this class unless that you are absolutely sure that the derived class has been initialized.

The documentation for this struct was generated from the following file:

Leandro Rabindranath León