value_type = std::string_view reference = std::string_view&&
| 140 | // value_type = std::string_view |
| 141 | // reference = std::string_view&& |
| 142 | co_context::generator<std::string_view> string_views() { |
| 143 | co_yield "foo"; |
| 144 | co_yield "bar"; |
| 145 | } |
| 146 | |
| 147 | // value_type = std::string |
| 148 | // reference = std::string_view |
no outgoing calls
no test coverage detected