Go to the source code of this file.
Value:template <typename... Args> \
static constexpr \
auto \
Name(Args&&... args) \
-> decltype(element_type::Name(std::forward<Args>(args)...)) \
{ \
return element_type::Name(std::forward<Args>(args)...); \
}
Definition at line 164 of file automaton-decorator.hh.
Value:template <typename... Args> \
auto \
Name(Args&&... args) const \
-> decltype(aut_->Name(
std::forward<Args>(args)...)) \
{ \
return aut_->Name(std::forward<Args>(args)...); \
}
Definition at line 164 of file automaton-decorator.hh.
Value:template <typename... Args> \
auto \
Name(Args&&... args) \
-> decltype(aut_->Name(std::forward<Args>(args)...)) \
{ \
return aut_->Name(std::forward<Args>(args)...); \
}
Definition at line 164 of file automaton-decorator.hh.