MCPcopy Create free account
hub / github.com/NVIDIAGameWorks/Falcor / push_unchecked

Method push_unchecked

external/include/fast_float/fast_float.h:1727–1730  ·  view source on GitHub ↗

append item to vector, without bounds checking

Source from the content-addressed store, hash-verified

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

Callers 1

bigintMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected