MCPcopy Create free account
hub / github.com/Tessil/ordered-map / emplace_at_position

Method emplace_at_position

include/tsl/ordered_hash.h:1038–1041  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1036
1037 template <class... Args>
1038 std::pair<iterator, bool> emplace_at_position(const_iterator pos,
1039 Args&&... args) {
1040 return insert_at_position(pos, value_type(std::forward<Args>(args)...));
1041 }
1042
1043 template <class K, class... Args>
1044 std::pair<iterator, bool> try_emplace_at_position(const_iterator pos, K&& key,

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected