| 1671 | return length == 0; |
| 1672 | } |
| 1673 | constexpr size_t capacity() const noexcept { |
| 1674 | return size; |
| 1675 | } |
| 1676 | // append item to vector, without bounds checking |
| 1677 | void push_unchecked(limb value) noexcept { |
| 1678 | data[length] = value; |
no outgoing calls