Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[MISC] Rename {core->utlity}/char_operations/predicate.hpp. #2254

Merged
merged 1 commit into from
Nov 23, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion doc/tutorial/sequence_file/sequence_file_snippets.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
#include <range/v3/view/chunk.hpp>
//![include_ranges_chunk]

#include <seqan3/core/char_operations/predicate.hpp>
#include <seqan3/utility/char_operations/predicate.hpp>
//![include]
#include <seqan3/io/sequence_file/all.hpp>
//![include]
Expand Down
2 changes: 1 addition & 1 deletion include/seqan3/alphabet/mask/masked.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

#include <seqan3/alphabet/mask/mask.hpp>
#include <seqan3/alphabet/composite/alphabet_tuple_base.hpp>
#include <seqan3/core/char_operations/predicate.hpp>
#include <seqan3/utility/char_operations/predicate.hpp>
#include <seqan3/core/char_operations/transform.hpp>

namespace seqan3
Expand Down
2 changes: 1 addition & 1 deletion include/seqan3/argument_parser/argument_parser.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,10 @@
#include <seqan3/argument_parser/detail/format_parse.hpp>
#include <seqan3/argument_parser/detail/terminal.hpp>
#include <seqan3/argument_parser/detail/version_check.hpp>
#include <seqan3/core/char_operations/predicate.hpp>
#include <seqan3/core/debug_stream/detail/to_string.hpp>
#include <seqan3/core/detail/test_accessor.hpp>
#include <seqan3/io/stream/concept.hpp>
#include <seqan3/utility/char_operations/predicate.hpp>

namespace seqan3
{
Expand Down
2 changes: 1 addition & 1 deletion include/seqan3/argument_parser/detail/format_parse.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
#include <vector>

#include <seqan3/argument_parser/detail/format_base.hpp>
#include <seqan3/core/char_operations/predicate.hpp>
#include <seqan3/utility/char_operations/predicate.hpp>
#include <seqan3/utility/detail/type_name_as_string.hpp>

namespace seqan3::detail
Expand Down
2 changes: 1 addition & 1 deletion include/seqan3/core/char_operations/all.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@

#pragma once

#include <seqan3/core/char_operations/predicate.hpp>
#include <seqan3/core/char_operations/pretty_print.hpp>
#include <seqan3/core/char_operations/transform.hpp>
#include <seqan3/utility/char_operations/all.hpp>

/*!\defgroup char_operations builtin_character operations
* \brief Provides various operations on character types.
Expand Down
Loading