NexusForce
1.0.0
A Modern C++ Library with extended functionality, web components, and utility libraries
载入中...
搜索中...
未找到
iterator_typedef 概念参考
概念约束
检查类型是否具有迭代器所需的所有类型定义
更多...
#include <
concepts.hpp
>
概念定义
template
<
typename
T>
concept
iterator_typedef
=
requires
() {
typename
iterator_traits<T>::iterator_category
;
typename
iterator_traits<T>::value_type
;
typename
iterator_traits<T>::difference_type
;
typename
iterator_traits<T>::pointer
;
typename
iterator_traits<T>::reference
;
}
iterator_typedef
检查类型是否具有迭代器所需的所有类型定义
定义
concepts.hpp:293
iterator_traits
迭代器特性主模板
定义
iterator_traits.hpp:56
详细描述
检查类型是否具有迭代器所需的所有类型定义
模板参数
T
要检查的类型
在文件
concepts.hpp
第
293
行定义.
iterator_typedef
制作者
1.16.0