| 13983 | current_value_ = ParamType(*current1_, *current2_, *current3_); |
| 13984 | } |
| 13985 | bool AtEnd() const { |
| 13986 | // We must report iterator past the end of the range when either of the |
| 13987 | // component iterators has reached the end of its range. |
| 13988 | return |
| 13989 | current1_ == end1_ || |
| 13990 | current2_ == end2_ || |
| 13991 | current3_ == end3_; |
| 13992 | } |
| 13993 | |
| 13994 | // No implementation - assignment is unsupported. |
| 13995 | void operator=(const Iterator& other); |
nothing calls this directly
no outgoing calls
no test coverage detected