deal.II version GIT relicensing-2420-g3d183cd95c 2025-01-23 04:40:00+00:00
|
#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 877 of file template_constraints.h.