| 3477 | constexpr bool is_empty() const noexcept { return length == 0; } |
| 3478 | |
| 3479 | constexpr size_t capacity() const noexcept { return size; } |
| 3480 | |
| 3481 | // append item to vector, without bounds checking |
| 3482 | FASTFLOAT_CONSTEXPR14 void push_unchecked(limb value) noexcept { |
no outgoing calls
no test coverage detected