ELC in dev
ELC-lang
|
类 | |
struct | with_return_type_t |
Public 成员函数 | |
template<class... Args> requires able<Args...> | |
decltype(auto) | _as (Args &&...rest) const noexcept(nothrow< Args... >) |
静态 Public 属性 | |
template<class... Args> | |
static constexpr bool | able = ::std::is_invocable_v<T,Args...> |
template<class... Args> | |
static constexpr bool | nothrow = ::std::is_nothrow_invocable_v<T,Args...> |
template<class Ret_t > | |
static constexpr with_return_type_t< Ret_t > | with_return_type {} |
在文件 all_defs.cpp 第 12531 行定义.
|
inlinenoexcept |
A function that returns a λ that applies a function to a value.
rest | The arguments to the function. |
在文件 all_defs.cpp 第 12584 行定义.
|
staticconstexpr |
Determines if a type is invocable.
T | The type to check. |
Args | The types of the arguments to the type. |
在文件 all_defs.cpp 第 12541 行定义.
|
staticconstexpr |
Determines if a type is invocable and nothrow.
T | The type to check. |
Args | The types of the arguments to the type. |
在文件 all_defs.cpp 第 12551 行定义.
|
staticconstexpr |
在文件 all_defs.cpp 第 12574 行定义.