Tannic
A C++ Tensor Library
Loading...
Searching...
No Matches
tannic::Iterable Concept Reference

Requires a type to be iterable via std::begin and std::end. More...

#include <concepts.hpp>

Concept definition

template<typename T>
concept tannic::Iterable = requires(T type) { std::begin(type); std::end(type); }
Requires a type to be iterable via std::begin and std::end.
Definition: concepts.hpp:133

Detailed Description

Requires a type to be iterable via std::begin and std::end.