|
| basic_coroutine ()=default |
|
| basic_coroutine (basic_coroutine &&other) noexcept |
|
| basic_coroutine (basic_function< base_t > &&b) noexcept |
|
| basic_coroutine (basic_function< base_t > &&b, handler_t eh) noexcept |
|
| basic_coroutine (const basic_coroutine &other)=default |
|
| basic_coroutine (const basic_function< base_t > &b) noexcept |
|
| basic_coroutine (const basic_function< base_t > &b, handler_t eh) noexcept |
|
template<typename Super > |
| basic_coroutine (const proxy_base< Super > &p) |
|
| basic_coroutine (const stack_reference &r) noexcept |
|
| basic_coroutine (const stack_reference &r, handler_t eh) noexcept |
|
| basic_coroutine (lua_nil_t n) |
|
| basic_coroutine (lua_State *L, absolute_index index) |
|
| basic_coroutine (lua_State *L, absolute_index index, handler_t eh) |
|
| basic_coroutine (lua_State *L, int index, handler_t eh) |
|
| basic_coroutine (lua_State *L, int index=-1) |
|
| basic_coroutine (lua_State *L, raw_index index) |
|
| basic_coroutine (lua_State *L, raw_index index, handler_t eh) |
|
| basic_coroutine (lua_State *L, ref_index index) |
|
| basic_coroutine (lua_State *L, ref_index index, handler_t eh) |
|
template<typename T , meta::enable< is_lua_reference< meta::unqualified_t< T >>> = meta::enabler> |
| basic_coroutine (lua_State *L, T &&r) noexcept |
|
template<typename T , meta::enable< is_lua_reference< meta::unqualified_t< T >>> = meta::enabler> |
| basic_coroutine (lua_State *L, T &&r, handler_t eh) |
|
template<typename Proxy , typename HandlerReference , meta::enable< std::is_base_of< proxy_base_tag, meta::unqualified_t< Proxy >>, meta::neg< is_lua_index< meta::unqualified_t< HandlerReference >>>> = meta::enabler> |
| basic_coroutine (Proxy &&p, HandlerReference &&eh) |
|
template<typename Super > |
| basic_coroutine (proxy_base< Super > &&p) |
|
| basic_coroutine (stack_reference &&r) noexcept |
|
| basic_coroutine (stack_reference &&r, handler_t eh) noexcept |
|
template<typename T , meta::enable< meta::neg< std::is_same< meta::unqualified_t< T >, basic_coroutine >>, meta::neg< std::is_base_of< proxy_base_tag, meta::unqualified_t< T >>>, meta::neg< std::is_same< base_t, stack_reference >>, meta::neg< std::is_same< lua_nil_t, meta::unqualified_t< T >>>, is_lua_reference< meta::unqualified_t< T >>> = meta::enabler> |
| basic_coroutine (T &&r) noexcept |
|
template<typename... Ret, typename... Args> |
decltype(auto) | call (Args &&... args) |
|
bool | error () const noexcept |
|
| operator bool () const noexcept |
|
template<typename... Args> |
protected_function_result | operator() (Args &&... args) |
|
template<typename... Ret, typename... Args> |
decltype(auto) | operator() (types< Ret... >, Args &&... args) |
|
basic_coroutine & | operator= (basic_coroutine &&other) noexcept |
|
basic_coroutine & | operator= (const basic_coroutine &)=default |
|
bool | runnable () const noexcept |
|
call_status | status () const noexcept |
|
|
template<std::size_t I, typename Ret > |
Ret | invoke (types< Ret >, std::index_sequence< I >, std::ptrdiff_t n) |
|
template<std::size_t... I, typename... Ret> |
auto | invoke (types< Ret... >, std::index_sequence< I... >, std::ptrdiff_t n) |
|
template<std::size_t I> |
void | invoke (types< void >, std::index_sequence< I >, std::ptrdiff_t n) |
|
protected_function_result | invoke (types<>, std::index_sequence<>, std::ptrdiff_t n) |
|
void | luacall (std::ptrdiff_t argcount, std::ptrdiff_t) |
|
template<typename Reference>
class sol::basic_coroutine< Reference >
Definition at line 1203 of file forward.hpp.
template<typename Reference >
template<typename T , meta::enable< meta::neg< std::is_same< meta::unqualified_t< T >, basic_coroutine >>, meta::neg< std::is_base_of< proxy_base_tag, meta::unqualified_t< T >>>, meta::neg< std::is_same< base_t, stack_reference >>, meta::neg< std::is_same< lua_nil_t, meta::unqualified_t< T >>>, is_lua_reference< meta::unqualified_t< T >>> = meta::enabler>
template<typename Reference >
template<typename Proxy , typename HandlerReference , meta::enable< std::is_base_of< proxy_base_tag, meta::unqualified_t< Proxy >>, meta::neg< is_lua_index< meta::unqualified_t< HandlerReference >>>> = meta::enabler>