libcoro  1.0
Coroutine support library for C++20

◆ container_type

template<typename T >
concept coro::container_type
Initial value:
= requires(T v) {
{v.begin() == v.end()};
{v.begin()}->iterator_type;
{v.end()}->iterator_type;
typename std::decay_t<T>::value_type;
}

any container (must have begin and end)

Definition at line 83 of file future_list.h.