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