File: template_type_alias.h

package info (click to toggle)
breathe 4.36.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,224 kB
  • sloc: python: 12,703; cpp: 1,737; makefile: 523; xml: 168; sh: 54; ansic: 52
file content (20 lines) | stat: -rw-r--r-- 495 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/**
 * @brief a type alias with one template argument
 * 
 * @tparam T this is the template parameter
 * 
 */
template <typename T>
using IsFuzzy = std::is_fuzzy<T>;


/**
 * @brief a type alias with three template arguments
 * 
 * @tparam T this is the first template parameter
 * @tparam U this is the second template parameter
 * @tparam N this is the third template parameter, it is a non-type parameter
 * 
 */
template <typename T, typename U, int N>
using IsFurry = std::is_furry<T,U,N>;