Remove is_representable_v trait

This trait is unused and removing it does not cause any tests to fail.

Signed-off-by: Sean Robinson <sean.robinson@scottsdalecc.edu>
This commit is contained in:
Sean Robinson 2022-02-07 14:33:24 -07:00
parent cb2777db6e
commit c50346c1df

View File

@ -79,10 +79,6 @@ struct is_streamable<T, std::void_t<decltype(std::declval<std::ostream &>()
template <typename T> template <typename T>
static constexpr bool is_streamable_v = is_streamable<T>::value; static constexpr bool is_streamable_v = is_streamable<T>::value;
template <typename T>
static constexpr bool is_representable_v =
is_streamable_v<T> || is_container_v<T>;
constexpr std::size_t repr_max_container_size = 5; constexpr std::size_t repr_max_container_size = 5;
template <typename T> std::string repr(T const &val) { template <typename T> std::string repr(T const &val) {