Maki
Loading...
Searching...
No Matches
fin.hpp
1
//Copyright Florian Goujeon 2021 - 2025.
2
//Distributed under the Boost Software License, Version 1.0.
3
//(See accompanying file LICENSE or copy at
4
//https://www.boost.org/LICENSE_1_0.txt)
5
//Official repository: https://github.com/fgoujeon/maki
6
7
#ifndef MAKI_FIN_HPP
8
#define MAKI_FIN_HPP
9
10
#include <type_traits>
11
12
namespace
maki
13
{
14
15
#ifdef MAKI_DETAIL_DOXYGEN
19
using
fin_t
= IMPLEMENTATION_DETAIL;
20
#else
21
struct
fin_t
{};
22
#endif
23
29
inline
constexpr
auto
fin =
fin_t
{};
30
31
namespace
detail
32
{
33
template
<
class
T>
34
constexpr
bool
is_fin_v = std::is_same_v<T, fin_t>;
35
}
36
37
}
//namespace
38
39
#endif
maki
The Maki library.
maki::fin_t
IMPLEMENTATION_DETAIL fin_t
The type of maki::fin
Definition
fin.hpp:19
maki
fin.hpp
Generated by
1.14.0