| 256 | return iter.hasValue(); |
| 257 | } |
| 258 | constexpr MapView(Base base, Func func) |
| 259 | : mBase{std::move(base)} |
| 260 | , mFunc{std::move(func)} |
| 261 | {} |
| 262 | auto begin() const |
| 263 | { |
| 264 | return Iter(*this); |
nothing calls this directly
no outgoing calls
no test coverage detected