![]() |
Reference documentation for deal.II version 8.1.0
|
#include <table.h>
Public Member Functions | |
Table () | |
Table (const unsigned int size) | |
std::vector< T >::const_reference | operator[] (const unsigned int i) const |
std::vector< T >::reference | operator[] (const unsigned int i) |
std::vector< T >::const_reference | operator() (const unsigned int i) const |
std::vector< T >::reference | operator() (const unsigned int i) |
std::vector< T >::reference | operator() (const TableIndices< 1 > &indices) |
std::vector< T >::const_reference | operator() (const TableIndices< 1 > &indices) const |
![]() | |
TableBase () | |
TableBase (const TableIndices< N > &sizes) | |
TableBase (const TableBase< N, T > &src) | |
TableBase (const TableBase< N, T2 > &src) | |
~TableBase () | |
TableBase< N, T > & | operator= (const TableBase< N, T > &src) |
TableBase< N, T > & | operator= (const TableBase< N, T2 > &src) |
bool | operator== (const TableBase< N, T > &T2) const |
void | reset_values () |
void | reinit (const TableIndices< N > &new_size, const bool fast=false) |
unsigned int | size (const unsigned int i) const |
const TableIndices< N > & | size () const |
unsigned int | n_elements () const |
bool | empty () const |
void | fill (const T2 *entries) |
void | fill (const T &value) |
std::vector< T >::reference | operator() (const TableIndices< N > &indices) |
std::vector< T >::const_reference | operator() (const TableIndices< N > &indices) const |
void | swap (TableBase< N, T > &v) |
std::size_t | memory_consumption () const |
void | serialize (Archive &ar, const unsigned int version) |
![]() | |
Subscriptor () | |
Subscriptor (const Subscriptor &) | |
virtual | ~Subscriptor () |
Subscriptor & | operator= (const Subscriptor &) |
void | subscribe (const char *identifier=0) const |
void | unsubscribe (const char *identifier=0) const |
unsigned int | n_subscriptions () const |
void | list_subscribers () const |
DeclException3 (ExcInUse, int, char *, std::string &,<< "Object of class "<< arg2<< " is still used by "<< arg1<< " other objects.\n"<< "(Additional information: "<< arg3<< ")\n"<< "Note the entry in the Frequently Asked Questions of "<< "deal.II (linked to from http://www.dealii.org/) for "<< "more information on what this error means.") | |
DeclException2 (ExcNoSubscriber, char *, char *,<< "No subscriber with identifier \""<< arg2<< "\" did subscribe to this object of class "<< arg1) | |
template<class Archive > | |
void | serialize (Archive &ar, const unsigned int version) |
Additional Inherited Members | |
![]() | |
unsigned int | position (const TableIndices< N > &indices) const |
std::vector< T >::reference | el (const TableIndices< N > &indices) |
std::vector< T >::const_reference | el (const TableIndices< N > &indices) const |
std::vector< T >::const_pointer | data () const DEAL_II_DEPRECATED |
![]() | |
std::vector< T > | values |
TableIndices< N > | table_size |
A class representing a one-dimensional table, i.e. a vector-like class. Since the C++ library has a vector class, there is probably not much need for this particular class, but since it is so simple to implement on top of the template base class, we provide it anyway.
For the rationale of this class, and a description of the interface, see the base class.
Constructor. Pass down the given dimension to the base class.
std::vector<T>::const_reference Table< 1, T >::operator[] | ( | const unsigned int | i | ) | const |
Access operator. Since this is a one-dimensional object, this simply accesses the requested data element. Returns a read-only reference.
Access operator. Since this is a one-dimensional object, this simply accesses the requested data element. Returns a read-write reference.
std::vector<T>::const_reference Table< 1, T >::operator() | ( | const unsigned int | i | ) | const |
Access operator. Since this is a one-dimensional object, this simply accesses the requested data element. Returns a read-only reference.
Access operator. Since this is a one-dimensional object, this simply accesses the requested data element. Returns a read-write reference.
std::vector<T>::reference Table< 1, T >::operator() | ( | const TableIndices< 1 > & | indices | ) |
Make the corresponding operator () from the TableBase base class available also in this class.
std::vector<T>::const_reference Table< 1, T >::operator() | ( | const TableIndices< 1 > & | indices | ) | const |
Make the corresponding operator () from the TableBase base class available also in this class.