| 1875 | } |
| 1876 | |
| 1877 | CSC_RowIterator::CSC_RowIterator(const void* col_ptr, int col_ptr_type, const int32_t* indices, |
| 1878 | const void* data, int data_type, int64_t ncol_ptr, int64_t nelem, int col_idx) { |
| 1879 | iter_fun_ = IterateFunctionFromCSC(col_ptr, col_ptr_type, indices, data, data_type, ncol_ptr, nelem, col_idx); |
| 1880 | } |
| 1881 | |
| 1882 | double CSC_RowIterator::Get(int idx) { |
| 1883 | while (idx > cur_idx_ && !is_end_) { |
nothing calls this directly
no test coverage detected