template<class T, class IndexType>
concept index-pair-like = // exposition only
pair-like<T> &&
convertible_to<tuple_element_t<0,T>, IndexType> &&
convertible_to<tuple_element_t<1,T>, IndexType>;
概要
index-pair-like
は、インデクス値ペアと互換があることを表す説明専用コンセプトである。
バージョン
言語
- C++26