26template <std::ranges::input_range urng_t>
38 template <std::ranges::input_range urng2_t>
42 using alphabet_t = std::ranges::range_reference_t<urng_t>;
45 for (alphabet_t character : range)
48 result += h(character);
A "pretty printer" for most SeqAn data structures and related types.
Definition debug_stream_type.hpp:79
Provides various transformation traits used by the range module.
Provides overloads for std::hash.
SeqAn specific customisations in the standard namespace.
size_t operator()(urng2_t &&range) const noexcept
Compute the hash for a range of characters.
Definition range/hash.hpp:40