* @brief Swap `lhs` with `rhs. */
| 238 | * @brief Swap `lhs` with `rhs. |
| 239 | */ |
| 240 | inline friend void swap(stack &lhs, stack &rhs) noexcept { |
| 241 | using std::swap; |
| 242 | swap(lhs.m_fib, rhs.m_fib); |
| 243 | } |
| 244 | |
| 245 | /** |
| 246 | * @brief Destroy the stack object. |
nothing calls this directly
no outgoing calls
no test coverage detected