| 286 | struct foo { |
| 287 | int bar_; |
| 288 | int bar() const { return bar_; } |
| 289 | }; |
| 290 | const std::vector<foo> foos = { { 1 }, { 2 }, { 3 } }; |
| 291 | const auto bars = fplus::transform(fplus_mem_fn(bar), foos); |
nothing calls this directly
no outgoing calls
no test coverage detected