AAO DRAMA/DRAMA2 C++ Interface
DRAMA C++11 and later interface

◆ is_stl_container_v

template<typename T >
constexpr bool drama::is_stl_container_v = is_stl_container<T>::value
constexpr

A type trait to helper determine if a type is an STL container.

The user specifies a type and this method returns true/false to indicate if it is a STL container, that is, that it has a type named T::iterator

Based on https://www.geeksforgeeks.org/cpp/how-to-determine-if-a-type-is-an-stl-container-at-compile-time-cpp/

Template Parameters
Thetype we are to check.