TRIQS/itertools 1.3.0
C++ range library
Loading...
Searching...
No Matches
itertools.hpp
Go to the documentation of this file.
1// Copyright (c) 2019-2024 Simons Foundation
2//
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
6//
7// http://www.apache.org/licenses/LICENSE-2.0.txt
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14//
15// Authors: Thomas Hahn, Olivier Parcollet, Nils Wentzell, chuffa
16
22#ifndef _ITERTOOLS_HPP
23#define _ITERTOOLS_HPP
24
25#include "./enumerate.hpp"
26#include "./product.hpp"
27#include "./range.hpp"
28#include "./slice.hpp"
29#include "./stride.hpp"
30#include "./transform.hpp"
31#include "./zip.hpp"
32
33#endif // _ITERTOOLS_HPP_
Provides a range adapting function for enumerating a given range/view.
Provides a range adapting function for multiplying a given number of ranges/views (cartesian product)...
Provides an integer range similar to Python's range.
Provides a range adapting function for slicing a given range/view.
Provides a range adapting function for striding through a given range/view.
Provides a range adapting function for transforming a given range/view.
Provides a range adapting function for zipping a given number of ranges/views.