| 3918 | using iterator_concept = std::input_iterator_tag; |
| 3919 | |
| 3920 | constexpr iterator() = default; |
| 3921 | constexpr iterator(std::uint64_t n) noexcept : number_(n), factor_(2) { advance(); } |
| 3922 | constexpr std::uint64_t operator*() const noexcept { return factor_; } |
| 3923 | constexpr iterator &operator++() noexcept { |
nothing calls this directly
no outgoing calls
no test coverage detected