| 987 | return current_index_ == rhs.current_index_; |
| 988 | } |
| 989 | ROCPRIM_HOST_DEVICE bool operator!=(const check_modulo_iterator& rhs) const |
| 990 | { |
| 991 | return !(*this == rhs); |
| 992 | } |
| 993 | ROCPRIM_HOST_DEVICE reference operator*() |
| 994 | { |
| 995 | return value_type(current_index_, modulo_, size_, incorrect_flag_); |
nothing calls this directly
no outgoing calls
no test coverage detected