General Purpose library for Freestanding C++ and POSIX systems
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
 
 

14 řádky
269 B

#pragma once
#include <concepts>
template<typename T>
concept ForwardIteratorLike = requires(T a) {
{++a} -> auto;
{*a} -> auto;
};
template<typename T>
concept RangeLike = requires(T a) {
{a.begin()} -> ForwardIteratorLike;
{a.end()} -> ForwardIteratorLike;
};