Thorin 1.9.0
The Higher ORder INtermediate representation
Loading...
Searching...
No Matches
thorin::Vectorlike Concept Reference

Something which behaves like std::vector or std::array. More...

#include <thorin/util/span.h>

Concept definition

template<class Vec>
concept thorin::Vectorlike = requires(Vec vec) {
typename Vec::value_type;
vec.size();
vec.data();
}
Something which behaves like std::vector or std::array.
Definition span.h:9

Detailed Description

Something which behaves like std::vector or std::array.

Definition at line 9 of file span.h.