MCPcopy Create free account
hub / github.com/ablab/spades / push_back

Method push_back

ext/include/cppformat/format.h:280–284  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

278 void clear() FMT_NOEXCEPT(true) { size_ = 0; }
279
280 void push_back(const T &value) {
281 if (size_ == capacity_)
282 grow(size_ + 1);
283 ptr_[size_++] = value;
284 }
285
286 // Appends data to the end of the buffer.
287 void append(const T *begin, const T *end);

Callers 14

BasicWriterClass · 0.45
operator ()Method · 0.45
action_providerClass · 0.45
add_flagsMethod · 0.45
undoMethod · 0.45
gather_prefixesMethod · 0.45
operator ,Function · 0.45
operator |Function · 0.45
operator &Function · 0.45
try_match_blockedMethod · 0.45
try_match_joinedMethod · 0.45
add_matchMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected