#include <basearray.hh>
You can make
Error checking: no error checking is provided normally. Setting the compile time switch DUNE_ISTL_WITH_CHECKING enables error checking.
Public Types | |
typedef B | member_type |
export the type representing the components | |
typedef A | allocator_type |
export the allocator type | |
typedef base_array_unmanaged < B, A >::iterator | iterator |
make iterators available as types | |
typedef base_array_unmanaged < B, A >::const_iterator | const_iterator |
make iterators available as types | |
typedef base_array_unmanaged < B, A >::size_type | size_type |
The type used for the index access. | |
typedef A::difference_type | difference_type |
The type used for the difference between two iterator positions. | |
Public Member Functions | |
base_array () | |
makes empty array | |
base_array (size_type _n) | |
make array with _n components | |
base_array (const base_array &a) | |
copy constructor | |
base_array (const base_array_unmanaged< B, A > &_a) | |
construct from base class object | |
~base_array () | |
free dynamic memory | |
void | resize (size_type _n) |
reallocate array to given size, any data is lost | |
base_array & | operator= (const base_array &a) |
assignment | |
base_array & | operator= (const base_array_unmanaged< B, A > &a) |
assign from base class object | |
B & | operator[] (size_type i) |
random access to blocks | |
const B & | operator[] (size_type i) const |
same for read only access | |
iterator | begin () |
begin iterator | |
const_iterator | begin () const |
begin const_iterator | |
iterator | end () |
end iterator | |
const_iterator | end () const |
end const_iterator | |
iterator | rbegin () |
begin reverse iterator | |
const_iterator | rbegin () const |
begin reverse const_iterator | |
iterator | rend () |
end reverse iterator | |
const_iterator | rend () const |
end reverse const_iterator | |
iterator | find (size_type i) |
random access returning iterator (end if not contained) | |
const_iterator | find (size_type i) const |
random access returning iterator (end if not contained) | |
size_type | size () const |
number of blocks in the array (are of size 1 here) |