.. _sentinel_t: **************** meta::sentinel_t **************** Defined in header ````. .. code-block:: cpp template using sentinel_t = /* see below */; Pre-C++20 implementation of :cpp:`std::ranges::sentinel_t `. ---- Differences with the C++20 version ================================== * The implementation does not rely on :cpp:`std::ranges::end `, but on the usual customization point idiom, i.e. ``using std::end; end(/* ... */);``.