Go to the source code of this file.
◆ DEFINE [1/3]
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.
 
 
◆ DEFINE [2/3]
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.
 
 
◆ DEFINE [3/3]
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.