From 9b5690447a1c8e42c4c38c696da13f6cfa811cfc Mon Sep 17 00:00:00 2001 From: Jack Stouffer Date: Mon, 20 Jun 2016 08:53:07 -0400 Subject: [PATCH] Improved docs for std.range.radial --- std/range/package.d | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/std/range/package.d b/std/range/package.d index 6af039890..b67eba488 100644 --- a/std/range/package.d +++ b/std/range/package.d @@ -1715,6 +1715,13 @@ range. Iteration spans the entire range. When `startingIndex` is 0 the range will be fully iterated in order and in reverse order when `r.length` is given. + +Params: + r = a random access range with length and slicing + startingIndex = the index to begin iteration from + +Returns: + A forward range with length */ auto radial(Range, I)(Range r, I startingIndex) if (isRandomAccessRange!(Unqual!Range) && hasLength!(Unqual!Range) && isIntegral!I)