Go to the source code of this file.
|
template<Automaton... Auts> |
auto | vcsn::detail::join_automata (Auts &&...auts) -> decltype(make_mutable_automaton(join(auts->context()...))) |
| An automaton whose type is the join between those of auts. More...
|
|
template<Automaton... Auts> |
auto | vcsn::detail::nullable_join_context (Auts &&...auts) -> decltype(make_nullableset_context(join(auts->context()...))) |
| The nullable context of the join between parameters' context. More...
|
|
template<Automaton... Auts> |
auto | vcsn::detail::nullable_join_automata (Auts &&...auts) -> decltype(make_mutable_automaton(nullable_join_context(auts...))) |
| An automaton whose type is the nullable join between those of auts. More...
|
|
template<Automaton... Auts> |
auto | vcsn::detail::meet_automata (Auts &&...auts) -> decltype(make_mutable_automaton(meet(auts->context()...))) |
| An automaton whose type is the meet between those of auts. More...
|
|