xtd
1.0.0
Toggle main menu visibility
Loading...
Searching...
No Matches
xtd.core
include
xtd
create_reference_wrapper_object.hpp
Go to the documentation of this file.
1
4
#pragma once
5
#include "
reference_wrapper_object.hpp
"
6
#include <utility>
7
9
namespace
xtd
{
23
template
<
typename
type_t>
24
[[nodiscard]]
auto
create_reference_wrapper_object
(type_t& arg)
noexcept
->
reference_wrapper_object<type_t>
{
return
reference_wrapper_object<type_t>
{arg};}
38
template
<
typename
type_t>
39
[[nodiscard]]
auto
create_reference_wrapper_object
(
reference_wrapper_object<type_t>
arg)
noexcept
->
reference_wrapper_object<type_t>
{
return
arg;}
40
}
xtd::reference_wrapper_object
The xtd::reference_wrapper_object is a reference wrapper as std::reference_wrapper.
Definition
reference_wrapper_object.hpp:38
xtd::create_reference_wrapper_object
auto create_reference_wrapper_object(type_t &arg) noexcept -> reference_wrapper_object< type_t >
xtd::create_reference_wrapper_object operator. This operator creates a xtd::reference_wrapper_object ...
Definition
create_reference_wrapper_object.hpp:24
xtd
The xtd namespace contains all fundamental classes to access Hardware, Os, System,...
Definition
abstract_object.hpp:8
reference_wrapper_object.hpp
Contains xtd::reference_wrapper_object class.
Generated on
for xtd by
Gammasoft
. All rights reserved.