MCPcopy Create free account
hub / github.com/fmtlib/fmt / push_back

Function push_back

include/fmt/base.h:1816–1819  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1814 }
1815
1816 FMT_CONSTEXPR void push_back(const T& value) {
1817 try_reserve(size_ + 1);
1818 ptr_[size_++] = value;
1819 }
1820
1821 /// Appends data to the end of the buffer.
1822 template <typename U>

Callers

nothing calls this directly

Calls 1

try_reserveFunction · 0.85

Tested by

no test coverage detected