MCPcopy Create free account
hub / github.com/Open-GD/OpenGD / push_unchecked

Method push_unchecked

Source/external/fast_float.h:1904–1907  ·  view source on GitHub ↗

append item to vector, without bounds checking

Source from the content-addressed store, hash-verified

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()) {

Callers 1

bigintMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected