|
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 iterators supporting bidirectional traversal. More...
#include <jh/conceptual/iterator.h>
Concept for iterators supporting bidirectional traversal.
forward_iterator, adding support for reverse movement using –it and it–. S can be provided to check range consistency between begin() and end(). | I | Iterator-like type supporting bidirectional movement. |
| S | Sentinel type used to verify consistency (defaults to I). |