* @brief Get the number of milliseconds stored when `stop()` was last called. * * @return The number of milliseconds. */
| 3460 | * @return The number of milliseconds. |
| 3461 | */ |
| 3462 | [[nodiscard]] std::chrono::milliseconds::rep ms() const |
| 3463 | { |
| 3464 | return (std::chrono::duration_cast<std::chrono::milliseconds>(elapsed_time)).count(); |
| 3465 | } |
| 3466 | |
| 3467 | private: |
| 3468 | /** |