|
SeqAn3 3.4.3-rc.1
The Modern C++ library for sequence analysis.
|
Provides lazy template instantiation traits. More...
Include dependency graph for lazy_conditional.hpp:
This graph shows which files directly or indirectly include this file:Go to the source code of this file.
Classes | |
| struct | seqan3::detail::instantiate< t > |
| A transformation trait that instantiates seqan3::lazy types. Base template is the identity transformation. More... | |
| struct | seqan3::detail::instantiate< lazy< template_t, spec_t... > > |
| A transformation trait that instantiates seqan3::lazy types. More... | |
| struct | seqan3::detail::instantiate_if< t, condition > |
| A transformation trait that instantiates seqan3::lazy types given a boolean condition. Base template is std::false_type. More... | |
| struct | seqan3::detail::instantiate_if< lazy< template_t, spec_t... >, true > |
| A transformation trait that instantiates seqan3::lazy types given a boolean condition. If condition is true and parameter is lazy, the instantiated type. More... | |
| struct | seqan3::detail::instantiate_if< t, true > |
| A transformation trait that instantiates seqan3::lazy types given a boolean condition. If condition is true and parameter is not lazy, the type identity. More... | |
| struct | seqan3::detail::lazy< template_t, spec_t > |
| An empty type whose only purpose is to hold an uninstantiated template plus its arguments. More... | |
| struct | seqan3::detail::lazy_conditional< decision, on_true_t, on_false_t > |
| Behaves like std::conditional, but instantiates types wrapped in seqan3::lazy. More... | |
Namespaces | |
| namespace | seqan3 |
| The main SeqAn3 namespace. | |
| namespace | seqan3::detail |
| The internal SeqAn3 namespace. | |
Provides lazy template instantiation traits.