staticAsserts.hpp
Go to the documentation of this file.
1
3#pragma once
4
5#include <type_traits>
7
8namespace by {
9
10 template <nbool...> struct boolPack;
11 template <nbool... bp> using allTrues = std::is_same<boolPack<bp..., true>, boolPack<true, bp...>>;
12}
Definition: staticAsserts.hpp:10