aboutsummaryrefslogtreecommitdiff
path: root/doc/next/6-stdlib/3-iter.md
diff options
context:
space:
mode:
Diffstat (limited to 'doc/next/6-stdlib/3-iter.md')
-rw-r--r--doc/next/6-stdlib/3-iter.md17
1 files changed, 17 insertions, 0 deletions
diff --git a/doc/next/6-stdlib/3-iter.md b/doc/next/6-stdlib/3-iter.md
index 15ae7d47db..bc74f4556c 100644
--- a/doc/next/6-stdlib/3-iter.md
+++ b/doc/next/6-stdlib/3-iter.md
@@ -2,3 +2,20 @@
The new [`iter` package](/pkg/iter/) provides the basic definitions for
working with user-defined iterators.
+
+The [`slices` package](/pkg/slices/) adds several functions that work
+with iterators:
+- [All](/pkg/slices#All) returns an iterator over slice indexes and values.
+- [Values](/pkg/slices#Values) returns an iterator over slice elements.
+- [Backward](/pkg/slices#Backward) returns an iterator that loops over
+ a slice backward.
+- [Collect](/pkg/slices#Collect) collects values from an iterator into
+ a new slice.
+- [AppendSeq](/pkg/slices#AppendSeq) appends values from an iterator to
+ an existing slice.
+- [Sorted](/pkg/slices#Sorted) collects values from an iterator into a
+ new slice, and then sorts the slice.
+- [SortedFunc](/pkg/slices#SortedFunc) is like `Sorted` but with a
+ comparison function.
+- [SortedStableFunc](/pkg/slices#SortedStableFunc) is like `SortFunc`
+ but uses a stable sort algorithm.