mirror of
https://github.com/usatiuk/cardboy.git
synced 2025-10-28 23:27:49 +01:00
15 lines
331 B
C++
15 lines
331 B
C++
//
|
|
// Created by Stepan Usatiuk on 27.07.2025.
|
|
//
|
|
|
|
#ifndef UTILS_HPP
|
|
#define UTILS_HPP
|
|
|
|
template <template <typename...> class T, typename U>
|
|
struct is_specialization_of: std::false_type {};
|
|
|
|
template <template <typename...> class T, typename... Us>
|
|
struct is_specialization_of<T, T<Us...>>: std::true_type {};
|
|
|
|
#endif //UTILS_HPP
|