PSCF v1.2
|
A fixed capacity (static) contiguous array with a variable logical size. More...
#include <FSArray.h>
Public Member Functions | |
FSArray () | |
Constructor. | |
FSArray (FSArray< Data, Capacity > const &other) | |
Copy constructor. | |
FSArray< Data, Capacity > & | operator= (FSArray< Data, Capacity > const &other) |
Assignment, element by element. | |
virtual | ~FSArray () |
Destructor. | |
int | capacity () const |
Return physical capacity of array. | |
int | size () const |
Return logical size of this array (i.e., number of elements). | |
void | begin (ArrayIterator< Data > &iterator) |
Set an ArrayIterator to the beginning of this container. | |
void | begin (ConstArrayIterator< Data > &iterator) const |
Set a ConstArrayIterator to the beginning of this container. | |
Data & | operator[] (int i) |
Mimic C array subscripting. | |
Data const & | operator[] (int i) const |
Mimic C array subscripting. | |
void | append (Data const &data) |
Append data to the end of the array. | |
void | clear () |
Set logical size to zero. | |
template<class Archive > | |
void | serialize (Archive &ar, const unsigned int version) |
Serialize to/from an archive. | |
int | packedSize () |
Packed size of FSArray in a MemoryArchive, in bytes. | |
Protected Attributes | |
Data | data_ [Capacity] |
Array of Data elements. | |
int | size_ |
Logical size of array (number of elements used). | |
A fixed capacity (static) contiguous array with a variable logical size.
An FSArray < Data, Capacity > is a wrapper for a statically allocated C array containing Capacity objects of type Data. An FSArray has both a Capacity that is set at compile time, which is the physical size of the underlying C array, and a logical size, which is the number of contiguous elements (from 0 to one less than its size) that contain valid data. The size is initialized to zero, and can only be increased only by the append() method, which adds a new element to the end of the array.
When compiled in debug mode (i.e., when NDEBUG is defined) the subcript operator [] checks that the index is less than the logical size, and not merely less than the capacity.
Definition at line 28 of file rpg/System.h.
|
inline |
Util::FSArray< Data, Capacity >::FSArray | ( | FSArray< Data, Capacity > const & | other | ) |
|
virtual |
FSArray< Data, Capacity > & Util::FSArray< Data, Capacity >::operator= | ( | FSArray< Data, Capacity > const & | other | ) |
int Util::FSArray< Data, Capacity >::capacity | ( | ) | const |
int Util::FSArray< Data, Capacity >::size | ( | ) | const |
Return logical size of this array (i.e., number of elements).
Definition at line 207 of file FSArray.h.
Referenced by pscfpp.file.File::__eq__(), pscfpp.file.File::__init__(), pscfpp.text.Record::__init__(), pscfpp.file.File::__repr__(), pscfpp.text.Record::__str__(), Pscf::Rpc::Sweep< D >::extrapolate(), Pscf::Rpg::Sweep< D >::extrapolate(), Pscf::Prdc::UnitCell< 1 >::set(), Pscf::Prdc::UnitCell< 2 >::set(), Pscf::Prdc::UnitCell< 3 >::set(), Pscf::Prdc::UnitCellBase< D >::setParameters(), Pscf::Rpc::Domain< D >::setUnitCell(), and Pscf::Rpg::Domain< D >::setUnitCell().
void Util::FSArray< Data, Capacity >::begin | ( | ArrayIterator< Data > & | iterator | ) |
Set an ArrayIterator to the beginning of this container.
iterator | ArrayIterator, initialized on output. |
Definition at line 216 of file FSArray.h.
References Util::ArrayIterator< Data >::setCurrent(), and Util::ArrayIterator< Data >::setEnd().
void Util::FSArray< Data, Capacity >::begin | ( | ConstArrayIterator< Data > & | iterator | ) | const |
Set a ConstArrayIterator to the beginning of this container.
iterator | ConstArrayIterator, initialized on output. |
Definition at line 226 of file FSArray.h.
References Util::ConstArrayIterator< Data >::setCurrent(), and Util::ConstArrayIterator< Data >::setEnd().
Data & Util::FSArray< Data, Capacity >::operator[] | ( | int | i | ) |
Data const & Util::FSArray< Data, Capacity >::operator[] | ( | int | i | ) | const |
|
inline |
Append data to the end of the array.
data | Data to add to end of array. |
Definition at line 258 of file FSArray.h.
References UTIL_THROW.
Referenced by Pscf::Rpc::Block< D >::computeStress(), Pscf::Rpg::Block< D >::computeStress(), and Pscf::Prdc::UnitCellBase< D >::parameters().
|
inline |
|
inline |
Serialize to/from an archive.
ar | archive |
version | archive version id |
Definition at line 280 of file FSArray.h.
References UTIL_THROW.
|
inline |
|
protected |
|
protected |