本文整理汇总了C++中Cont::emplace方法的典型用法代码示例。如果您正苦于以下问题:C++ Cont::emplace方法的具体用法?C++ Cont::emplace怎么用?C++ Cont::emplace使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Cont
的用法示例。
在下文中一共展示了Cont::emplace方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: emplace
iterator emplace(Tn&&... argn) {
if (container.empty()) {
return container.emplace(cend(), std::forward<Tn>(argn)...);
}
auto elementgreaterthanorequalto = std::lower_bound(cbegin(), cend(), val, std::ref(compare_predicate));
return container.emplace(elementgreaterthanorequalto, std::forward<Tn>(argn)...);
}
示例2: emplace
iterator emplace(Tn&&... argn) {
if (container.empty()) {
return container.insert(detail::adl_cend(container), std::forward<Tn>(argn)...);
}
auto elementgreaterthanorequalto = std::lower_bound(detail::adl_cbegin(container), detail::adl_cend(container), val, std::ref(predicate));
return container.emplace(elementgreaterthanorequalto, std::forward<Tn>(argn)...);
}
示例3: push
inline std::enable_if_t<std::is_base_of<T, std::decay_t<U>>::value> push(U&& value) {
std::unique_lock<std::mutex> lock(mut);
// only add the value on the stack if there is room
data_cond.wait(lock, [this]{
return (data_queue.size() < capacity) || shutdownFlag;
});
data_queue.emplace(std::make_shared<
std::decay_t<U>> (std::forward<U>(value)));
data_cond.notify_one();
}