|
|
enable_if< enabled, typename
Node::ChildType & >::type | child (std::size_t i) |
| Returns the i-th child. More...
|
|
const Node::ChildType & | child (std::size_t i) const |
| Returns the i-th child (const version). More...
|
|
enable_if< enabled, typename
Node::ChildStorageType >::type | childStorage (std::size_t i) |
| Returns the storage of the i-th child. More...
|
|
Node::ChildConstStorageType | childStorage (std::size_t i) const |
| Returns the storage of the i-th child (const version). More...
|
|
void | setChild (std::size_t i, typename Node::ChildType &t, typename enable_if< enabled, void * >::type=0) |
| Sets the i-th child to the passed-in value. More...
|
|
void | setChild (std::size_t i, typename Node::ChildStorageType st, typename enable_if< enabled, void * >::type=0) |
| Sets the stored value representing the i-th child to the passed-in value. More...
|
|
|
enable_if< lazy_enabled< k >
::value, typename Child< k >
::Type & >::type | child () |
| Returns the i-th child. More...
|
|
const Child< k >::Type & | child () const |
| Returns the i-th child (const version). More...
|
|
enable_if< lazy_enabled< k >
::value, typename Child< k >
::Storage >::type | childStorage () |
| Returns the storage of the i-th child. More...
|
|
Child< k >::ConstStorage | childStorage () const |
| Returns the storage of the i-th child (const version). More...
|
|
void | setChild (typename Child< k >::type &child, typename enable_if< lazy_enabled< k >::value, void * >::type=0) |
| Sets the i-th child to the passed-in value. More...
|
|
void | setChild (typename Child< k >::storage_type child, typename enable_if< lazy_enabled< k >::value, void * >::type=0) |
| Sets the storage of the i-th child to the passed-in value. More...
|
|
const Node::NodeStorage & | nodeStorage () const |
|
template<typename Node>
struct Dune::TypeTree::ProxyNodeBase< Node, PowerNodeTag >
ProxyNode base class for PowerNode.