Cbeam
|
Type trait to check if a given type supports key_type and mapped_type, similar to std::map. More...
#include <map.hpp>
Type trait to check if a given type supports key_type and mapped_type, similar to std::map.
This trait checks if a type T defines 'key_type' and 'mapped_type', which are typical for associative containers like std::map. It inherits from std::true_type if T supports these types, and std::false_type otherwise.
T | The type to check. |