forked from ryanhaining/cppitertools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
itertools.hpp
37 lines (34 loc) · 879 Bytes
/
itertools.hpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
#ifndef ITERTOOLS_ALL_HPP_
#define ITERTOOLS_ALL_HPP_
#include "accumulate.hpp"
#include "batched.hpp"
#include "chain.hpp"
#include "chunked.hpp"
#include "combinations.hpp"
#include "combinations_with_replacement.hpp"
#include "compress.hpp"
#include "count.hpp"
#include "cycle.hpp"
#include "dropwhile.hpp"
#include "enumerate.hpp"
#include "filter.hpp"
#include "filterfalse.hpp"
#include "groupby.hpp"
#include "imap.hpp"
#include "permutations.hpp"
#include "powerset.hpp"
#include "product.hpp"
#include "range.hpp"
#include "repeat.hpp"
#include "reversed.hpp"
#include "slice.hpp"
#include "sliding_window.hpp"
#include "sorted.hpp"
#include "starmap.hpp"
#include "takewhile.hpp"
#include "unique_everseen.hpp"
#include "unique_justseen.hpp"
#include "zip.hpp"
// zip_longest is the only itertool with a boost depedency, so it must be
// included explicitly
#endif