Reference documentation for deal.II version 9.6.0
|
#include <deal.II/base/template_constraints.h>
A concept that tests whether a given template argument is a deal.II vector type into which one can write. It is defined by asking whether the is_dealii_vector_type concept is satisfied, and that the template argument is not a const
-qualified type. For example, is_writable_dealii_vector_type<::Vector>
is true, whereas is_writable_dealii_vector_type<const Vector>
is not.
Definition at line 876 of file template_constraints.h.