Skip to content

Commit 440698f

Browse files
committed
Correct algorithmic complexity documentation on the lazy Chunked functions
1 parent dc790cd commit 440698f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Guides/Chunked.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,8 @@ collection conforms.
9696

9797
### Complexity
9898

99-
The eager methods are O(_n_), the lazy methods are O(_1_).
99+
The eager methods are O(_n_) where _n_ is the number of elements in the
100+
collection. The lazy methods are O(_n_) because the start index is pre-computed.
100101

101102
### Naming
102103

0 commit comments

Comments
 (0)