xtd 1.0.0
Loading...
Searching...
No Matches
forward_iterable.hpp
Go to the documentation of this file.
1
4#pragma once
5#include "iterable.hpp"
6
8namespace xtd {
9 // Since Doxygen does not work properly with the C++ concept, the documentation for this concept is declared in xtd/forward_iterable_.hpp
10 template<typename value_t>
11 concept forward_iterable = xtd::iterable<value_t> && std::forward_iterator<decltype(std::begin(std::declval<value_t&>()))>;
12}
13
Definition forward_iterable.hpp:11
Definition iterable.hpp:15
Contains xtd::forward_iterable_value_type alias.
Contains xtd::iterable concept.
The xtd namespace contains all fundamental classes to access Hardware, Os, System,...
Definition abstract_object.hpp:8