Iros
 
Loading...
Searching...
No Matches
unreachable_sentinel.h
Go to the documentation of this file.
1#pragma once
2
3namespace di::container {
5 template<typename T>
6 constexpr friend auto operator==(UnreachableSentinel, T const&) -> bool {
7 return false;
8 }
9};
10
11constexpr inline auto unreachable_sentinel = UnreachableSentinel {};
12}
Definition sequence.h:12
constexpr auto unreachable_sentinel
Definition unreachable_sentinel.h:11
Definition unreachable_sentinel.h:4
constexpr friend auto operator==(UnreachableSentinel, T const &) -> bool
Definition unreachable_sentinel.h:6