Reference documentation for deal.II version 9.5.0
\(\newcommand{\dealvcentcolon}{\mathrel{\mathop{:}}}\) \(\newcommand{\dealcoloneq}{\dealvcentcolon\mathrel{\mkern-1.2mu}=}\) \(\newcommand{\jump}[1]{\left[\!\left[ #1 \right]\!\right]}\) \(\newcommand{\average}[1]{\left\{\!\left\{ #1 \right\}\!\right\}}\)
Loading...
Searching...
No Matches
concepts::is_writable_dealii_vector_type Concept Reference

#include <deal.II/base/template_constraints.h>

Concept definition

template<typename VectorType>
(std::is_const_v<VectorType> ==
false)

Detailed Description

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 879 of file template_constraints.h.