24template <
typename field_types,
typename field_
ids>
55 decltype(
auto)
id() &&
55 decltype(
auto)
id() && {
…}
60 decltype(
auto)
id()
const &&
60 decltype(
auto)
id()
const && {
…}
65 decltype(
auto)
id() & {
…}
70 decltype(
auto)
id()
const &
70 decltype(
auto)
id()
const & {
…}
175template <
typename field_types,
typename field_
ids>
177 tuple_size<typename seqan3::structure_record<field_types, field_ids>::base_type>
185template <
size_t elem_no,
typename field_types,
typename field_
ids>
186struct tuple_element<elem_no,
seqan3::structure_record<field_types, field_ids>> :
187 tuple_element<elem_no, typename seqan3::structure_record<field_types, field_ids>::base_type>
186struct tuple_element<elem_no,
seqan3::structure_record<field_types, field_ids>> : {
…};
The record type of seqan3::structure_file_input.
Definition structure_file/record.hpp:26
structure_record()=default
Defaulted.
typename base_t::template field_constant< f > field_constant
A type alias for std::integral_constant.
Definition structure_file/record.hpp:35
decltype(auto) base_pair_probability_matrix() &&
Base pair probability matrix of interactions, usually a matrix of float numbers.
Definition structure_file/record.hpp:139
decltype(auto) energy() &&
Energy of a folded sequence, represented by one float number.
Definition structure_file/record.hpp:118
structure_record & operator=(structure_record &&)=default
Defaulted.
decltype(auto) energy() &
Energy of a folded sequence, represented by one float number.
Definition structure_file/record.hpp:128
decltype(auto) sequence() const &
The "sequence", usually a range of nucleotides or amino acids.
Definition structure_file/record.hpp:91
decltype(auto) sequence_structure() &
Fixed interactions, usually a string of structure alphabet characters.
Definition structure_file/record.hpp:107
decltype(auto) base_pair_probability_matrix() &
Base pair probability matrix of interactions, usually a matrix of float numbers.
Definition structure_file/record.hpp:150
decltype(auto) sequence_structure() const &&
Fixed interactions, usually a string of structure alphabet characters.
Definition structure_file/record.hpp:102
structure_record(structure_record &&)=default
Defaulted.
decltype(auto) base_pair_probability_matrix() const &
Base pair probability matrix of interactions, usually a matrix of float numbers.
Definition structure_file/record.hpp:155
decltype(auto) base_pair_probability_matrix() const &&
Base pair probability matrix of interactions, usually a matrix of float numbers.
Definition structure_file/record.hpp:145
~structure_record()=default
Defaulted.
decltype(auto) sequence() &&
The "sequence", usually a range of nucleotides or amino acids.
Definition structure_file/record.hpp:76
decltype(auto) sequence_structure() const &
Fixed interactions, usually a string of structure alphabet characters.
Definition structure_file/record.hpp:112
decltype(auto) sequence_structure() &&
Fixed interactions, usually a string of structure alphabet characters.
Definition structure_file/record.hpp:97
decltype(auto) energy() const &&
Energy of a folded sequence, represented by one float number.
Definition structure_file/record.hpp:123
typename base_t::base_type tuple_base_t
The underlying std::tuple class.
Definition structure_file/record.hpp:31
decltype(auto) energy() const &
Energy of a folded sequence, represented by one float number.
Definition structure_file/record.hpp:133
structure_record & operator=(structure_record const &)=default
Defaulted.
decltype(auto) sequence() &
The "sequence", usually a range of nucleotides or amino acids.
Definition structure_file/record.hpp:86
structure_record(structure_record const &)=default
Defaulted.
decltype(auto) sequence() const &&
The "sequence", usually a range of nucleotides or amino acids.
Definition structure_file/record.hpp:81
Subconcept definition for seqan3::tuple_like to test for std::tuple_size-interface.
The main SeqAn3 namespace.
Definition aligned_sequence_concept.hpp:26
SeqAn specific customisations in the standard namespace.
Provides the seqan3::record template and the seqan3::field enum.
The class template that file records are based on; behaves like a std::tuple.
Definition record.hpp:190
static decltype(auto) get_impl(field_constant< f >, tuple_t &&record_as_tuple)
This is basically the seqan3::get<f>(static_cast<tuple>(record)) implementation.
Definition record.hpp:259
detail::transfer_template_args_onto_t< field_types, std::tuple > base_type
A specialisation of std::tuple.
Definition record.hpp:193