mirror of
https://github.com/dlang/phobos.git
synced 2025-04-30 07:00:37 +03:00
Clarify docs for splitter.
This commit is contained in:
parent
8869771682
commit
c3b9cc3dc1
1 changed files with 3 additions and 2 deletions
|
@ -2998,9 +2998,10 @@ consider using $(D splitter) without specifying a separator (see third overload
|
|||
below).
|
||||
|
||||
Params:
|
||||
r = The $(XREF2 range, isInputRange, input range) to be split.
|
||||
r = The $(XREF2 range, isInputRange, input range) to be split. Must support
|
||||
slicing and $(D .length).
|
||||
s = The element to be treated as the separator between range segments to be
|
||||
split.
|
||||
split. Must be of the same type as the element type of $(D r).
|
||||
|
||||
Returns:
|
||||
An input range of the subranges of elements between separators. If $(D r)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue