mirror of
https://github.com/dlang/phobos.git
synced 2025-04-29 06:30:28 +03:00
Add Params: to second overload of fill().
This commit is contained in:
parent
42d94b8ed7
commit
a8dba2e669
1 changed files with 6 additions and 0 deletions
|
@ -1714,6 +1714,12 @@ void fill(Range, Value)(Range range, Value value)
|
|||
Fills $(D range) with a pattern copied from $(D filler). The length of
|
||||
$(D range) does not have to be a multiple of the length of $(D
|
||||
filler). If $(D filler) is empty, an exception is thrown.
|
||||
|
||||
Params:
|
||||
range = An $(XREF2 range, isInputRange, input range) that exposes
|
||||
references to its elements and has assignable elements.
|
||||
filler = The $(XREF2 range, isForwardRange, forward range) representing the
|
||||
_fill pattern.
|
||||
*/
|
||||
void fill(Range1, Range2)(Range1 range, Range2 filler)
|
||||
if (isInputRange!Range1
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue