Reference documentation for deal.II version GIT relicensing-487-ge9eb5ab491 2024-04-25 07:20:02+00:00
\(\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>
is_dealii_vector_type<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 876 of file template_constraints.h.