最終更新日時(UTC):
が更新

履歴 編集

concept
<mdspan>

index-pair-like(C++26)

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

参照