[trivial] Add mean to the doc index of std.algorithm and std.algorithm.iteration.

This commit is contained in:
David Bennett 2018-05-26 17:50:32 +09:30
parent 3101a812a1
commit defa033825
2 changed files with 3 additions and 0 deletions

View file

@ -40,6 +40,8 @@ $(T2 joiner,
$(T2 map,
`map!(a => a * 2)([1, 2, 3])` lazily returns a range with the numbers
`2`, `4`, `6`.)
$(T2 mean,
Colloquially known as the average, `mean([1, 2, 3])` returns `2`.)
$(T2 permutations,
Lazily computes all permutations using Heap's algorithm.)
$(T2 reduce,

View file

@ -79,6 +79,7 @@ $(TR
$(SUBREF iteration, group)
$(SUBREF iteration, joiner)
$(SUBREF iteration, map)
$(SUBREF iteration, mean)
$(SUBREF iteration, permutations)
$(SUBREF iteration, reduce)
$(SUBREF iteration, splitter)