SeqAn3 3.4.0-rc.1
The Modern C++ library for sequence analysis.
Loading...
Searching...
No Matches
seqan3::detail::search_param Struct Reference

Object grouping numbers of errors for different kind of error types. More...

#include <seqan3/search/detail/search_common.hpp>

Public Attributes

uint8_t deletion {}
 Total number of deletion errors.
 
uint8_t insertion {}
 Total number of insertion errors.
 
uint8_t substitution {}
 Total number of substitution errors.
 
uint8_t total {}
 Total number of errors (upper bound over all error types).
 

Friends

constexpr friend bool operator!= (search_param const &lhs, search_param const &rhs) noexcept
 Returns true if any member variable of lhs and rhs are not equal, false otherwise.
 
constexpr friend bool operator== (search_param const &lhs, search_param const &rhs) noexcept
 Returns true if all member variables of lhs and rhs are equal, false otherwise.
 

Detailed Description

Object grouping numbers of errors for different kind of error types.


The documentation for this struct was generated from the following file:
Hide me