|
SpECTRE
v2025.08.19
|
Check if type T has a begin() and end() function. More...
#include <IsIterable.hpp>
Check if type T has a begin() and end() function.
Given a type T inherits from std::true_type if T has member functions begin() and end(), otherwise inherits from std::false_type
For any type T
Returns: std::bool_constant
Semantics: If T has member function begin() and end() then
otherwise
| T | the type to check |