| 1721 | return length == 0; |
| 1722 | } |
| 1723 | constexpr size_t capacity() const noexcept { |
| 1724 | return size; |
| 1725 | } |
| 1726 | // append item to vector, without bounds checking |
| 1727 | void push_unchecked(limb value) noexcept { |
| 1728 | data[length] = value; |
no outgoing calls
no test coverage detected