| 147 | /// used for forwarding a container's elements. |
| 148 | template <typename T, typename U> |
| 149 | constexpr forwarded_type<T, U> forward_like(U &&u) { |
| 150 | return std::forward<detail::forwarded_type<T, U>>(std::forward<U>(u)); |
| 151 | } |
| 152 | |
| 153 | // Checks if a container has a STL style reserve method. |
| 154 | // This will only return true for a `reserve()` with a `void` return. |
nothing calls this directly
no outgoing calls
no test coverage detected