TRIQS/nda 1.3.0
Multi-dimensional array library for C++
Loading...
Searching...
No Matches
nda::HasValueTypeConstructibleFrom Concept Reference

#include <nda/concepts.hpp>

Detailed Description

Check if a given type is constructible from the value type of a given nda::Array type.

Template Parameters
Anda::Array type.
UType to check.

Definition at line 339 of file concepts.hpp.

Concept definition

template<typename A, typename U>
concept nda::HasValueTypeConstructibleFrom = Array<A> and (std::is_constructible_v<U, get_value_t<A>>)
Check if a given type satisfies the array concept.
Definition concepts.hpp:230
Check if a given type is constructible from the value type of a given nda::Array type.
Definition concepts.hpp:339