std.array.split, not std.array.splitter

This commit is contained in:
John Colvin 2018-05-24 16:00:01 +01:00 committed by GitHub
parent a460ce1ee7
commit ea197ce5ce
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -3749,7 +3749,7 @@ Returns:
See_Also:
$(REF _splitter, std,regex) for a version that splits using a regular
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)
if (is(typeof(binaryFun!pred(r.front, s)) : bool)