Loading [MathJax]/extensions/tex2jax.js
Iros
 
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages Concepts
Loading...
Searching...
No Matches
in_found_result.h
Go to the documentation of this file.
1#pragma once
2
4#include "di/util/move.h"
5
6namespace di::container {
7template<typename It>
9 template<typename I>
11 constexpr operator InFoundResult<I>() const& {
12 return { in, found };
13 }
14
15 template<typename I>
17 constexpr operator InFoundResult<I>() && {
18 return { util::move(in), found };
19 }
20
21 [[no_unique_address]] It in;
22 bool found;
23};
24}
Definition operations.h:99
Definition sequence.h:12
Definition in_found_result.h:8
It in
Definition in_found_result.h:21
bool found
Definition in_found_result.h:22