* @brief Capacity of the current stacklet's stack. */
| 95 | * @brief Capacity of the current stacklet's stack. |
| 96 | */ |
| 97 | [[nodiscard]] auto capacity() const noexcept -> std::size_t { |
| 98 | LF_ASSERT(m_hi - m_lo >= 0); |
| 99 | return static_cast<std::size_t>(m_hi - m_lo); |
| 100 | } |
| 101 | /** |
| 102 | * @brief Unused space on the current stacklet's stack. |
| 103 | */ |
no outgoing calls
no test coverage detected