// Copyright 2018-2022 David Robillard // Copyright 2006-2007 Chris Hamilton // SPDX-License-Identifier: GPL-2.0-or-later #ifndef CHILBERT_DETAIL_TRAITS_HPP #define CHILBERT_DETAIL_TRAITS_HPP namespace chilbert { namespace detail { /// Member `value` is true iff T is a chilbert bitset template struct is_bitvec { static constexpr bool value = false; }; /// True iff T is a chilbert bitset template static constexpr bool is_bitvec_v = is_bitvec::value; } // namespace detail } // namespace chilbert #endif