* @brief Points the read-capture accumulator at a caller-owned slot list (nullptr to stop). While * set, every successful read records the slot it resolved, building a dataset's read-set. */
| 273 | * set, every successful read records the slot it resolved, building a dataset's read-set. |
| 274 | */ |
| 275 | void DataModel::DataTableStore::setReadCaptureTarget(std::vector<int>* target) const noexcept |
| 276 | { |
| 277 | m_captureTarget = target; |
| 278 | } |
| 279 | |
| 280 | /** |
| 281 | * @brief Returns true if any of the given storage slots was written after sinceClock. |
no outgoing calls
no test coverage detected