#include <sol.hpp>
|
template<typename T , typename... Args> |
void | operator() (T &&obj, Args &&... args) const |
|
|
template<typename T , typename... Args> |
static void | construct (T &&obj, Args &&... args) |
|
§ construct()
template<typename T , typename... Args>
static void sol::detail::default_construct::construct |
( |
T && |
obj, |
|
|
Args &&... |
args |
|
) |
| |
|
inlinestatic |
4439 typedef meta::unqualified_t<T> Tu;
4440 std::allocator<Tu> alloc{};
4441 std::allocator_traits<std::allocator<Tu>>
::construct(alloc, std::forward<T>(obj), std::forward<Args>(args)...);
static void construct(T &&obj, Args &&... args)
Definition: sol.hpp:4438
§ operator()()
template<typename T , typename... Args>
void sol::detail::default_construct::operator() |
( |
T && |
obj, |
|
|
Args &&... |
args |
|
) |
| const |
|
inline |
4446 construct(std::forward<T>(obj), std::forward<Args>(args)...);
static void construct(T &&obj, Args &&... args)
Definition: sol.hpp:4438
The documentation for this struct was generated from the following file: