Utopia  2
Framework for studying models of complex & adaptive systems.
Utopia::Utils::is_linear_container< T, std::void_t< std::enable_if_t< not is_associative_container_v< T > and not is_unordered_associative_container_v< T > and is_container_v< T >, int > > > Struct Template Reference

Check if a type T is a linear container. A linear container for us is any type T that is a container and neither an associative nor an unordered associative container. More...

#include <type_traits.hh>

Inheritance diagram for Utopia::Utils::is_linear_container< T, std::void_t< std::enable_if_t< not is_associative_container_v< T > and not is_unordered_associative_container_v< T > and is_container_v< T >, int > > >:
Inheritance graph
[legend]
Collaboration diagram for Utopia::Utils::is_linear_container< T, std::void_t< std::enable_if_t< not is_associative_container_v< T > and not is_unordered_associative_container_v< T > and is_container_v< T >, int > > >:
Collaboration graph
[legend]

Detailed Description

template<typename T>
struct Utopia::Utils::is_linear_container< T, std::void_t< std::enable_if_t< not is_associative_container_v< T > and not is_unordered_associative_container_v< T > and is_container_v< T >, int > > >

Check if a type T is a linear container. A linear container for us is any type T that is a container and neither an associative nor an unordered associative container.

Template Parameters
Ttype to check

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