You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+43-17Lines changed: 43 additions & 17 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -18,24 +18,32 @@ Source is licensed with the Apache 2.0 license with LLVM exceptions
18
18
19
19
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
20
20
21
-
Documentation and associated papers are licensed with the Creative Commons Attribution 4.0 International license.
21
+
Documentation and associated papers are licensed with the Creative Commons
22
+
Attribution 4.0 International license.
22
23
23
24
// SPDX-License-Identifier: CC-BY-4.0
24
25
25
-
The intent is that the source and documentation are available for use by people implementing their iterator types.
26
+
The intent is that the source and documentation are available for use by people
27
+
implementing their iterator types.
26
28
27
-
The README itself is licensed with CC0 1.0 Universal. Copy the contents and incorporate in your own work as you see fit.
29
+
The README itself is licensed with CC0 1.0 Universal. Copy the contents and
30
+
incorporate in your own work as you see fit.
28
31
29
32
// SPDX-License-Identifier: CC0-1.0
30
33
31
34
## Examples
32
35
33
-
Full runnable examples can be found in `examples/` - please check [examples/README.md](./examples/README.md) for building the code on local setup or on Compiler Explorer.
36
+
Full runnable examples can be found in `examples/` - please check
37
+
[examples/README.md](./examples/README.md) for building the code on local setup
38
+
or on Compiler Explorer.
34
39
35
40
### Repeated Chars Iterator
36
41
37
-
The next code snippet shows iterator interface support added in [`std::iterator_interface` (P2727R)](https://wg21.link/P2727R4): define a random access iterator that iterates over a sequence of characters repeated indefinitely.
42
+
The next code snippet shows iterator interface support added in
43
+
[`std::iterator_interface` (P2727R)](https://wg21.link/P2727R4): define a random
44
+
access iterator that iterates over a sequence of characters repeated indefinitely.
The next code snippet shows iterator interface support added in [`std::iterator_interface` (P2727R4)](https://wg21.link/P2727R4): define a forward iterator that iterates over a sequence of integers, skipping those that do not satisfy a predicate.
102
+
The next code snippet shows iterator interface support added in
103
+
[`std::iterator_interface` (P2727R4)](https://wg21.link/P2727R4): define a
104
+
forward iterator that iterates over a sequence of integers, skipping those that
*[P2727](https://wg21.link/P2727): local [./repeated_chars_iterator.cpp](./repeated_chars_iterator.cpp) or [repeated_chars_iterator.cpp@Compiler Explorer](https://godbolt.org/z/Yn9K15c9b)
14
15
*[P2727](https://wg21.link/P2727): local [./filter_int_iterator.cpp](./filter_int_iterator.cpp) or [filter_int_iterator.cpp@Compiler Explorer](https://godbolt.org/z/q6933enqe)
0 commit comments