Flow123d  JS_before_hm-883-gc471082
Public Member Functions | List of all members
Mixed< T, 1 > Class Template Reference

#include <mixed.hh>

Inheritance diagram for Mixed< T, 1 >:
Inheritance graph
[legend]
Collaboration diagram for Mixed< T, 1 >:
Collaboration graph
[legend]

Public Member Functions

template<template< Dim... > class TT>
 Mixed (const Mixed< TT, 1 > &other)
 
 Mixed (const T< 1 > &p1, const T< 2 > &p2, const T< 3 > &p3)
 
 Mixed (T< 1 > &&p1, T< 2 > &&p2, T< 3 > &&p3)
 
template<typename... Args>
 Mixed (Args...args)
 
template<Dim i_dim>
T< i_dim > & get ()
 
template<Dim i_dim>
const T< i_dim > & get () const
 
template<template< Dim... > class TParent, typename std::enable_if< std::is_convertible< TParent< 1 >, T< 1 >>::value, T< 1 > >::type >
 operator Mixed< TParent > () const
 

Detailed Description

template<template< Dim... > class T>
class Mixed< T, 1 >

Definition at line 100 of file mixed.hh.

Constructor & Destructor Documentation

template<template< Dim... > class T>
template<template< Dim... > class TT>
Mixed< T, 1 >::Mixed ( const Mixed< TT, 1 > &  other)
inline

Template to simplify storing and passing tuples of instances of dimension parametrized templates. Currently instances for dim = 0,1,2,3 are created. We assume spacedim=3. Usage:

fe_order = 10; auto gauss = Mixed<QGauss>(q_order); // template <int dim>=""> class QGauss; auto mapping = MixedSpaceDim<Mapping>(); // template <int dim, int spacedim> class Mapping; ... fe_values = FEValues<dim>(mapping.get<dim>(), gauss.get<dim>(), ...)

All parameters of the Mixed<T>(...) constructor are forwarder (by value) to the T(...) constructor for every dimension. Only forwarding by value is supported due to problems with MixedPtr. Can not resolve copy constructor correctly.

Definition at line 119 of file mixed.hh.

template<template< Dim... > class T>
Mixed< T, 1 >::Mixed ( const T< 1 > &  p1,
const T< 2 > &  p2,
const T< 3 > &  p3 
)
inline

Definition at line 126 of file mixed.hh.

template<template< Dim... > class T>
Mixed< T, 1 >::Mixed ( T< 1 > &&  p1,
T< 2 > &&  p2,
T< 3 > &&  p3 
)
inline

Definition at line 130 of file mixed.hh.

template<template< Dim... > class T>
template<typename... Args>
Mixed< T, 1 >::Mixed ( Args...  args)
inline

Definition at line 136 of file mixed.hh.

Member Function Documentation

template<template< Dim... > class T>
template<Dim i_dim>
T<i_dim>& Mixed< T, 1 >::get ( )
inline

Definition at line 144 of file mixed.hh.

template<template< Dim... > class T>
template<Dim i_dim>
const T<i_dim>& Mixed< T, 1 >::get ( ) const
inline

Definition at line 149 of file mixed.hh.

template<template< Dim... > class T>
template<template< Dim... > class TParent, typename std::enable_if< std::is_convertible< TParent< 1 >, T< 1 >>::value, T< 1 > >::type >
Mixed< T, 1 >::operator Mixed< TParent > ( ) const
inline

Definition at line 154 of file mixed.hh.


The documentation for this class was generated from the following file: