C++ Actor Framework 1.0.0
Loading...
Searching...
No Matches
caf::detail::is_list_like< T > Struct Template Reference

Checks whether T behaves like std::vector, std::list, or std::set. More...

#include <type_traits.hpp>

Static Public Attributes

static constexpr bool value
 

Detailed Description

template<class T>
struct caf::detail::is_list_like< T >

Checks whether T behaves like std::vector, std::list, or std::set.

Member Data Documentation

◆ value

template<class T >
bool caf::detail::is_list_like< T >::value
staticconstexpr
Initial value:
= is_iterable<T>::value
&& has_value_type_alias_v<T>
&& !has_mapped_type_alias_v<T>
&& has_insert_v<T> && has_size_v<T>

The documentation for this struct was generated from the following file: