SeqAn3 3.4.0-rc.1
The Modern C++ library for sequence analysis.
Loading...
Searching...
No Matches
char_strictly_to.hpp
Go to the documentation of this file.
1// SPDX-FileCopyrightText: 2006-2024 Knut Reinert & Freie Universität Berlin
2// SPDX-FileCopyrightText: 2016-2024 Knut Reinert & MPI für molekulare Genetik
3// SPDX-License-Identifier: BSD-3-Clause
4
10#pragma once
11
12#include <ranges>
13
17
19{
68template <alphabet alphabet_type>
69inline auto const char_strictly_to = views::validate_char_for<alphabet_type> | views::char_to<alphabet_type>;
70
71} // namespace seqan3::views
Core alphabet concept and free function/type trait wrappers.
Provides seqan3::views::char_to.
auto const char_strictly_to
A view over an alphabet, given a range of characters.
Definition char_strictly_to.hpp:69
The SeqAn namespace for views.
Definition char_strictly_to.hpp:19
Provides seqan3::views::validate_char_for.
Hide me