forked from ryanhaining/cppitertools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
BUILD
43 lines (43 loc) · 1.02 KB
/
BUILD
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
38
39
40
41
42
43
cc_library(
name = "cppitertools",
hdrs = [
"accumulate.hpp",
"batched.hpp",
"chain.hpp",
"chunked.hpp",
"combinations.hpp",
"combinations_with_replacement.hpp",
"compress.hpp",
"count.hpp",
"cycle.hpp",
"dropwhile.hpp",
"enumerate.hpp",
"filter.hpp",
"filterfalse.hpp",
"groupby.hpp",
"imap.hpp",
"itertools.hpp",
"permutations.hpp",
"powerset.hpp",
"product.hpp",
"range.hpp",
"repeat.hpp",
"reversed.hpp",
"slice.hpp",
"sliding_window.hpp",
"sorted.hpp",
"starmap.hpp",
"takewhile.hpp",
"unique_everseen.hpp",
"unique_justseen.hpp",
"zip.hpp",
"zip_longest.hpp",
],
srcs = [
"internal/iter_tuples.hpp",
"internal/iterator_wrapper.hpp",
"internal/iteratoriterator.hpp",
"internal/iterbase.hpp",
],
visibility = ["//visibility:public"],
)