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