public member function
<functional>

std::reference_wrapper::get

type& get() const noexcept;
Access element
Returns a reference to the referred element.

Parameters

none

Return value

The referred element.

type is a member type describing the referred type (it is an alias of the class template parameter, T).

Example

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// reference_wrapper::get
#include <iostream>     // std::cout
#include <functional>   // std::reference_wrapper

int main () {
  int i;

  std::reference_wrapper<int> foo (i);

  foo.get() = 10;

  std::cout << foo.get() << '\n';

  return 0;
}

Output:
10


Data races

The object is accessed.
The reference returned can be used to access or modify the referred element.

Exception safety

No-throw guarantee: this member function never throws exceptions.

See also