Lines Matching refs:args
3206 inline constexpr std::array<T, sizeof...(Args)> make_array(Args&& ... args)
3208 return std::array<T, sizeof...(Args)> {{static_cast<T>(std::forward<Args>(args))...}};
4277 inline OutStringType concat(Args && ... args)
4280 str.reserve(concat_length(std::forward<Args>(args)...));
4281 concat_into(str, std::forward<Args>(args)...);
14715 json_ref(Args && ... args)
14716 : owned_value(std::forward<Args>(args)...)
19556 static T* create(Args&& ... args)
19566 AllocatorTraits::construct(alloc, obj.get(), std::forward<Args>(args)...);
22379 reference emplace_back(Args&& ... args)
22397 m_value.array->emplace_back(std::forward<Args>(args)...);
22404 std::pair<iterator, bool> emplace(Args&& ... args)
22421 auto res = m_value.object->emplace(std::forward<Args>(args)...);
22436 iterator insert_iterator(const_iterator pos, Args&& ... args)
22442 m_value.array->insert(pos.m_it.array_iterator, std::forward<Args>(args)...);