C++ header-only library with generic extensions to STL containers.
Complete API documentation provided at codedocs.xyz.
-
std::matrix< T >
: Container adapter providing 2D interface to astd::vector< T >
-
std::volume< T >
-
std::indexer< T >
: Container adapter that deals with ID-types -
std::sorted_indexer< T >
-
std::tagged< T >
: Meta-type wrapping an object with and addition custom tag. Similar tostd::pair
, but implicitly convertible to and constructible toT
, thus can be used interchangeably in most scenarios.
Examples are provided under src/examples
.
...