Get only parts of a container or tuple.
#include <tuple>#include <type_traits>#include <dune/istl/multitypeblockvector.hh>Go to the source code of this file.
| Namespaces | |
| namespace | Dumux | 
| Functions | |
| template<class ... Args, std::size_t ... i> | |
| auto | Dumux::partial (Dune::MultiTypeBlockVector< Args... > &v, Dune::index_constant< i >... indices) | 
| a function to get a MultiTypeBlockVector with references to some entries of another MultiTypeBlockVector | |
| template<class ... Args, std::size_t ... i> | |
| auto | Dumux::partial (const Dune::MultiTypeBlockVector< Args... > &v, Dune::index_constant< i >... indices) | 
| a function to get a MultiTypeBlockVector with const references to some entries of another MultiTypeBlockVector | |
| template<class ... Args, std::size_t ... i> | |
| auto | Dumux::partial (std::tuple< Args... > &v, Dune::index_constant< i >... indices) | 
| a function to get a tuple with references to some entries of another tuple | |
| template<class ... Args, std::size_t ... i> | |
| auto | Dumux::partial (const std::tuple< Args... > &v, Dune::index_constant< i >... indices) | 
| a function to get a tuple with const references to some entries of another tuple | |
| template<class T, std::size_t ... i> | |
| auto | Dumux::partial (T &t, std::tuple< Dune::index_constant< i >... > indices) | 
| a function to get a MultiTypeBlockVector with references to some entries of another MultiTypeBlockVector | |