OSSIA
Open Scenario System for Interactive Application
size.hpp
1 #pragma once
2 
3 namespace ossia
4 {
5 
6 template <typename T>
7 struct size;
8 
9 template <template <typename...> typename T, typename... Args>
10 struct size<T<Args...>>
11 {
12  static const constexpr int value = sizeof...(Args);
13 };
14 }
Definition: git_info.h:7