Take the following example: ```cpp template<typename T> IsVector { static constexpr bool value = false; }; template<typename T> IsVector<std::vector<T>> { static constexpr bool value = true; }; ```