| 3596 | public: |
| 3597 | template <typename... Gs> |
| 3598 | Generators(Gs... moreGenerators) { |
| 3599 | m_generators.reserve(sizeof...(Gs)); |
| 3600 | populate(std::forward<Gs>(moreGenerators)...); |
| 3601 | } |
| 3602 | |
| 3603 | T const& get() const override { |
| 3604 | return m_generators[m_current].get(); |
nothing calls this directly
no outgoing calls
no test coverage detected