From Jason Turner

[refwrap.helpers]

Diff to HTML by rtfpessoa

tmp/tmpkcsw5g7p/{from.md → to.md} RENAMED
@@ -11,11 +11,11 @@ template<class T> constexpr reference_wrapper<T> ref(T& t) noexcept;
11
 
12
  ``` cpp
13
  template<class T> constexpr reference_wrapper<T> ref(reference_wrapper<T> t) noexcept;
14
  ```
15
 
16
- *Returns:* `ref(t.get())`.
17
 
18
  ``` cpp
19
  template<class T> constexpr reference_wrapper<const T> cref(const T& t) noexcept;
20
  ```
21
 
@@ -23,7 +23,7 @@ template<class T> constexpr reference_wrapper<const T> cref(const T& t) noexcept
23
 
24
  ``` cpp
25
  template<class T> constexpr reference_wrapper<const T> cref(reference_wrapper<T> t) noexcept;
26
  ```
27
 
28
- *Returns:* `cref(t.get())`.
29
 
 
11
 
12
  ``` cpp
13
  template<class T> constexpr reference_wrapper<T> ref(reference_wrapper<T> t) noexcept;
14
  ```
15
 
16
+ *Returns:* `t`.
17
 
18
  ``` cpp
19
  template<class T> constexpr reference_wrapper<const T> cref(const T& t) noexcept;
20
  ```
21
 
 
23
 
24
  ``` cpp
25
  template<class T> constexpr reference_wrapper<const T> cref(reference_wrapper<T> t) noexcept;
26
  ```
27
 
28
+ *Returns:* `t`.
29