|
JH-Toolkit v1.4.1
An engineering-oriented C++20 toolkit with duck-typed concepts, static design, async coroutines, and semantic containers — header-only, RTTI-free, and concurrency-friendly.
|
Concept for detecting sentinel-iterator compatibility. More...
#include <jh/conceptual/iterator.h>
Concept for detecting sentinel-iterator compatibility.
S and I (== and !=), ensuring both directions are valid and convertible to bool. std::sentinel_for, this concept is more permissive: it does not require specific construction, iterator traits, or range category relationships. | S | Sentinel type to compare against an iterator. |
| I | Iterator-like type to be checked for compatibility with S. |