mirror of
https://github.com/dlang/phobos.git
synced 2025-05-13 07:39:15 +03:00
std.array.split, not std.array.splitter
This commit is contained in:
parent
a460ce1ee7
commit
ea197ce5ce
1 changed files with 1 additions and 1 deletions
|
@ -3749,7 +3749,7 @@ Returns:
|
||||||
See_Also:
|
See_Also:
|
||||||
$(REF _splitter, std,regex) for a version that splits using a regular
|
$(REF _splitter, std,regex) for a version that splits using a regular
|
||||||
expression defined separator and
|
expression defined separator and
|
||||||
$(REF _splitter, std,array) for a version that splits eagerly.
|
$(REF _split, std,array) for a version that splits eagerly.
|
||||||
*/
|
*/
|
||||||
auto splitter(alias pred = "a == b", Range, Separator)(Range r, Separator s)
|
auto splitter(alias pred = "a == b", Range, Separator)(Range r, Separator s)
|
||||||
if (is(typeof(binaryFun!pred(r.front, s)) : bool)
|
if (is(typeof(binaryFun!pred(r.front, s)) : bool)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue