append item to vector, without bounds checking
| 1725 | } |
| 1726 | // append item to vector, without bounds checking |
| 1727 | void push_unchecked(limb value) noexcept { |
| 1728 | data[length] = value; |
| 1729 | length++; |
| 1730 | } |
| 1731 | // append item to vector, returning if item was added |
| 1732 | bool try_push(limb value) noexcept { |
| 1733 | if (len() < capacity()) { |