Basic container concept.
More...
#include <kwk/concepts/container.hpp>
Basic container concept.
A kwk::concepts::basic_container is a type exhibiting the basic interface of a nD container.
template<typename T>
{
typename std::remove_cvref_t<T>::value_type;
typename std::remove_cvref_t<T>::reference;
typename std::remove_cvref_t<T>::const_reference;
typename std::remove_cvref_t<T>::pointer;
typename std::remove_cvref_t<T>::const_pointer;
}
Basic container concept.
Definition container.hpp:27
constexpr auto fixed
Provides a short-cut to define a std::integral_constant value from a literal integer.
Definition fixed.hpp:107