62 constexpr shape() noexcept = default;
65 constexpr
shape & operator=(
shape const &) noexcept = default;
66 constexpr
shape & operator=(
shape &&) noexcept = default;
104 assert(
front() == 1);
110inline namespace literals
121constexpr shape operator""_shape(
unsigned long long const value)
121constexpr shape operator""_shape(
unsigned long long const value) {
…}
A constexpr bitset implementation with dynamic size at compile time.
Definition dynamic_bitset.hpp:52
constexpr reference back() noexcept
Returns the last element.
Definition dynamic_bitset.hpp:1164
constexpr reference front() noexcept
Returns the first element.
Definition dynamic_bitset.hpp:1134
A class that defines which positions of a pattern to hash.
Definition shape.hpp:57
constexpr shape(bin_literal const literal) noexcept
Construct from a given seqan3::bin_literal.
Definition shape.hpp:102
constexpr shape() noexcept=default
Defaulted.
A constexpr bitset implementation with dynamic size at compile time.
The main SeqAn3 namespace.
Definition aligned_sequence_concept.hpp:26
A strong type of underlying type uint64_t that represents the shape in binary representation.
Definition shape.hpp:31
uint64_t value
The shape in binary representation.
Definition shape.hpp:33
A strong type of underlying type uint8_t that represents the ungapped shape size.
Definition shape.hpp:22
uint8_t value
The ungapped shape size.
Definition shape.hpp:24