std::unreachable_sentinel_t, std::unreachable_sentinel
来自 cppreference.com
定义在头文件 <iterator> 中 |
||
struct unreachable_sentinel_t; |
(1) | (自 C++20 起) |
inline constexpr unreachable_sentinel_t unreachable_sentinel{}; |
(2) | (自 C++20 起) |
1)
unreachable_sentinel_t
是一种空类类型,可用于表示无界区间的“上界”。2)
unreachable_sentinel
是 unreachable_sentinel_t
类型的常量。内容 |
[编辑] 非成员函数
operator== (C++20) |
将 unreachable_sentinel_t 与任何 weakly_incrementable 类型的值进行比较(函数模板) |
operator==(std::unreachable_sentinel_t)
template<std::weakly_incrementable I> friend constexpr bool operator==( unreachable_sentinel_t, const I& ) noexcept |
(自 C++20 起) | |
unreachable_sentinel_t
可以与任何 weakly_incrementable
类型进行比较,结果始终为 false.
此函数模板对普通 无限定 或 限定查找不可见,只有在 std::unreachable_sentinel_t
是参数的关联类时,才能通过 参数相关查找找到。
[编辑] 示例
运行此代码
#include <algorithm> #include <cstddef> #include <iostream> #include <iterator> template<class CharT> constexpr std::size_t strlen(const CharT* s) { return std::ranges::find(s, std::unreachable_sentinel, CharT{}) - s; } template<class CharT> constexpr std::size_t find_first(const CharT* haystack, const CharT* needle) { const char* needle_end = needle + strlen(needle); // search(begin, unreachable_sentinel) is usually more efficient than // search(begin, end) due to one less comparison per cycle. // But "needle" MUST BE PRESENT in the "haystack", otherwise the call // is UB (which is a compile-time error in constexpr context). auto found = std::ranges::search(haystack, std::unreachable_sentinel, needle, needle_end); return found.begin() - haystack; } int main() { static_assert(strlen("The quick brown fox jumps over a lazy dog.") == 42); static_assert(find_first("unsigned short int", "short") == 9); // static_assert(find_first("long int", "float")); // compile-time error }
[编辑] 另请参阅
(C++20) |
一个 view ,它包含一个通过反复递增初始值生成的序列(类模板) (自定义点对象) |