SeqAn3  3.0.0
The Modern C++ library for sequence analysis.
shortcuts.hpp
Go to the documentation of this file.
1 // -----------------------------------------------------------------------------------------------------
2 // Copyright (c) 2006-2019, Knut Reinert & Freie Universität Berlin
3 // Copyright (c) 2016-2019, Knut Reinert & MPI für molekulare Genetik
4 // This file may be used, modified and/or redistributed under the terms of the 3-clause BSD-License
5 // shipped with this file and also available at: https://github.com/seqan/seqan3/blob/master/LICENSE.md
6 // -----------------------------------------------------------------------------------------------------
7 
13 #include <seqan3/std/ranges>
14 
15 namespace seqan3
16 {
17 
18 using std::ranges::begin;
19 using std::ranges::end;
20 
22 using std::ranges::cend;
23 
24 using std::ranges::size;
25 using std::ranges::empty;
26 
27 } // namespace seqan3
::ranges::cbegin cbegin
Alias for ranges::cbegin. Returns an iterator to the beginning of a range.
Definition: ranges:209
::ranges::size size
Alias for ranges::size. Obtains the size of a range whose size can be calculated in constant time...
Definition: ranges:189
The main SeqAn3 namespace.
Adaptations of concepts from the Ranges TS.
::ranges::begin begin
Alias for ranges::begin. Returns an iterator to the beginning of a range.
Definition: ranges:174
::ranges::empty empty
Alias for ranges::empty. Checks whether a range is empty.
Definition: ranges:194
::ranges::cend cend
Alias for ranges::cend. Returns an iterator to the end of a range.
Definition: ranges:214
::ranges::end end
Alias for ranges::end. Returns an iterator to the end of a range.
Definition: ranges:179