File tree 1 file changed +5
-5
lines changed 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ Follow [@cppitertools](https://twitter.com/cppitertools) for updates.
12
12
13
13
#### Build and Test Status
14
14
Status | Compilers
15
- ---- | ----
15
+ ---- | ----
16
16
[ ![ Travis Build Status] ( https://travis-ci.com/ryanhaining/cppitertools.svg?branch=master )] ( https://travis-ci.com/ryanhaining/cppitertools ) | gcc-7 gcc-8 clang-5.0 clang-6.0
17
17
[ ![ Appveyor Build Status] ( https://ci.appveyor.com/api/projects/status/github/ryanhaining/cppitertools?svg=true )] ( https://ci.appveyor.com/project/ryanhaining/cppitertools ) | MSVC 2017 MSVC 2019
18
18
@@ -253,11 +253,11 @@ recomputed at each step to avoid accumulating floating point inaccuracies
253
253
slower but more accurate.
254
254
255
255
` range ` also supports the following operations:
256
- - ` .size() ` to get the number of elements in the range (not enabled for
257
- floating point ranges).
256
+ - ` .size() ` to get the number of elements in the range (not enabled for
257
+ floating point ranges).
258
258
- Accessors for ` .start() ` , ` .stop() ` , and ` .step() ` .
259
259
- Indexing. Given a range ` r ` , ` r[n] ` is the ` n ` th element in the range.
260
-
260
+
261
261
enumerate
262
262
---------
263
263
@@ -782,7 +782,7 @@ batched
782
782
batched will yield a given number N of batches containing subsequent elements from an iterable,
783
783
assuming the iterable contains at least N elements.
784
784
The size of each batch is immaterial, but the implementation guarantees that no two batches will
785
- differ in size by more than 1.
785
+ differ in size by more than 1.
786
786
787
787
Example usage:
788
788
``` c++
You can’t perform that action at this time.
0 commit comments