append item to vector, without bounds checking
| 1902 | } |
| 1903 | // append item to vector, without bounds checking |
| 1904 | FASTFLOAT_CONSTEXPR14 void push_unchecked(limb value) noexcept { |
| 1905 | data[length] = value; |
| 1906 | length++; |
| 1907 | } |
| 1908 | // append item to vector, returning if item was added |
| 1909 | FASTFLOAT_CONSTEXPR14 bool try_push(limb value) noexcept { |
| 1910 | if (len() < capacity()) { |