|
template<class C = Child, std::enable_if_t< std::is_default_constructible_v< C >, int > = 0> |
| UniformVector (std::size_t size) |
| Default constructor with size. Is enable if the child-type is default constructible.
|
|
| UniformVector (std::size_t size, Child child) |
| Constructor that stores the size and a single child only.
|
|
template<class Index > |
const Child & | operator[] (const Index &) const |
| Access the i'th child that is always the same, i.e., child_ .
|
|
std::size_t | size () const |
| The dynamic size information, i.e., number of children.
|
|
template<class Child>
struct Dune::Functions::ContainerDescriptors::UniformVector< Child >
Uniform descriptor with dynamic size.