append item to vector, returning if item was added
| 1907 | } |
| 1908 | // append item to vector, returning if item was added |
| 1909 | FASTFLOAT_CONSTEXPR14 bool try_push(limb value) noexcept { |
| 1910 | if (len() < capacity()) { |
| 1911 | push_unchecked(value); |
| 1912 | return true; |
| 1913 | } else { |
| 1914 | return false; |
| 1915 | } |
| 1916 | } |
| 1917 | // add items to the vector, from a span, without bounds checking |
| 1918 | FASTFLOAT_CONSTEXPR20 void extend_unchecked(limb_span s) noexcept { |
| 1919 | limb* ptr = data + length; |
no outgoing calls
no test coverage detected