Go to the source code of this file.
|
template<Automaton... Aut, typename Operation > |
auto | vcsn::detail::dispatch_tags (std::string algo, Operation op, Aut &&...auts) |
| Dispatch an operation between automata depending on their nature. More...
|
|
template<Automaton... Auts> |
auto | vcsn::detail::make_join_automaton (deterministic_tag, Auts &&...auts) -> decltype(join_automata(std::forward< Auts >(auts)...)) |
| Make an empty automaton which is a supertype of others. More...
|
|
template<Automaton... Auts> |
auto | vcsn::detail::make_join_automaton (general_tag, Auts &&...auts) -> decltype(nullable_join_automata(std::forward< Auts >(auts)...)) |
| Make an empty automaton which is a supertype of others, and with a nullable labelset. More...
|
|
template<Automaton... Auts> |
auto | vcsn::detail::make_join_automaton (standard_tag, Auts &&...auts) -> decltype(join_automata(std::forward< Auts >(auts)...)) |
| Make an empty automaton which is a supertype of others. More...
|
|