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

A strong type of underlying type double that represents the rate of errors. More...

#include <seqan3/search/configuration/max_error_common.hpp>

+ Inheritance diagram for seqan3::search_cfg::error_rate:

Additional Inherited Members

- Public Types inherited from seqan3::detail::strong_type< double, error_rate, detail::strong_type_skill::convert|detail::strong_type_skill::comparable >
using value_type = double
 The underlying value type.
 
- Public Member Functions inherited from seqan3::detail::strong_type< double, error_rate, detail::strong_type_skill::convert|detail::strong_type_skill::comparable >
constexpr strong_type () noexcept=default
 Defaulted.
 
constexpr strong_type (strong_type const &) noexcept=default
 Defaulted.
 
constexpr strong_type (strong_type &&) noexcept=default
 Defaulted.
 
constexpr strong_type (double _value)
 Construction from underlying value type.
 
constexpr strong_typeoperator= (strong_type const &) noexcept=default
 Defaulted.
 
constexpr strong_typeoperator= (strong_type &&) noexcept=default
 Defaulted.
 
 ~strong_type () noexcept=default
 Defaulted.
 
constexpr double & get () &noexcept
 Returns the underlying value.
 
constexpr double const & get () const &noexcept
 Returns the underlying value.
 
constexpr double && get () &&noexcept
 Returns the underlying value as rvalue.
 
constexpr double const && get () const &&noexcept
 Returns the underlying value as rvalue.
 
constexpr error_rate operator+ (strong_type const &other)
 Adds addition operator to the strong type.
 
constexpr error_rate operator- (strong_type const &other)
 Adds subtraction operator to the strong type.
 
constexpr error_rate operator* (strong_type const &other)
 Adds multiplication operator to the strong type.
 
constexpr error_rate operator/ (strong_type const &other)
 Adds division operator to the strong type.
 
constexpr error_rate operator% (strong_type const &other)
 Adds modulo operator to the strong type.
 
constexpr error_rate operator& (strong_type const &other)
 Adds bitwise and operator to the strong type.
 
constexpr error_rate operator| (strong_type const &other)
 Adds bitwise or operator to the strong type.
 
constexpr error_rate operator^ (strong_type const &other)
 Adds bitwise xor operator to the strong type.
 
constexpr error_rate operator~ ()
 Adds bitwise not operator to the strong type.
 
constexpr error_rate operator<< (strong_type const &other)
 Adds bitwise left shift operator to the strong type.
 
constexpr error_rate operator<< (integral_t const shift)
 Adds bitwise left shift operator to the strong type.
 
constexpr error_rate operator>> (strong_type const &other)
 Adds bitwise right shift operator to the strong type.
 
constexpr error_rate operator>> (integral_t const shift)
 Adds bitwise right shift operator to the strong type.
 
constexpr bool operator&& (strong_type const &other)
 Adds logical and operator to the strong type.
 
constexpr bool operator|| (strong_type const &other)
 Adds logical or operator to the strong type.
 
constexpr bool operator! ()
 Adds logical not operator to the strong type.
 
constexpr error_rate & operator++ ()
 Adds pre-increment operator to the strong type.
 
constexpr error_rate operator++ (int)
 Adds post-increment operator to the strong type.
 
constexpr error_rate & operator-- ()
 Adds pre-decrement operator to the strong type.
 
constexpr error_rate operator-- (int)
 Adds post-decrement operator to the strong type.
 
constexpr bool operator== (strong_type const &rhs) const
 Return whether this instance is equal to rhs.
 
constexpr bool operator!= (strong_type const &rhs) const
 Return whether this instance is not equal to rhs.
 
constexpr operator double () const
 Adds explicit conversion to it's underlying type.
 
- Static Public Attributes inherited from seqan3::detail::strong_type< double, error_rate, detail::strong_type_skill::convert|detail::strong_type_skill::comparable >
static constexpr strong_type_skill skills
 The selected skills for this type.
 

Detailed Description

A strong type of underlying type double that represents the rate of errors.

See also
Configuration
Template Parameters
value_tThe underlying type.

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