Sequoia
Loading...
Searching...
No Matches
DataStructuresTypeTraits.hpp
Go to the documentation of this file.
1
2// Copyright Oliver J. Rosten 2019. //
3// Distributed under the GNU GENERAL PUBLIC LICENSE, Version 3.0. //
4// (See accompanying file LICENSE.md or copy at //
5// https://www.gnu.org/licenses/gpl-3.0.en.html) //
7
8#pragma once
9
14#include <type_traits>
15
16namespace sequoia
17{
18 template<class T>
19 inline constexpr bool has_partitions_allocator{
20 requires { typename T::partitions_allocator_type; }
21 };
22}