MCPcopy Create free account
hub / github.com/danielaparker/jsoncons / push_back

Method push_back

include/jsoncons/json_array.hpp:174–178  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

172
173 template <typename T,typename A=allocator_type>
174 typename std::enable_if<std::allocator_traits<A>::is_always_equal::value,void>::type
175 push_back(T&& value)
176 {
177 elements_.emplace_back(std::forward<T>(value));
178 }
179
180 template <typename T,typename A=allocator_type>
181 typename std::enable_if<!std::allocator_traits<A>::is_always_equal::value,void>::type

Callers 1

flatten_and_destroyMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected