mirror of
https://github.com/dlang/phobos.git
synced 2025-05-06 02:45:12 +03:00
add deprecated alias groupBy = chunkBy;
- to not break code in a point release
This commit is contained in:
parent
afd30b41b0
commit
aa13382ba8
1 changed files with 4 additions and 0 deletions
|
@ -1884,6 +1884,10 @@ unittest
|
|||
[""].map!((s) => s).chunkBy!((x, y) => true);
|
||||
}
|
||||
|
||||
// to be removed in 2.068.0
|
||||
deprecated("use chunkBy instead")
|
||||
alias groupBy = chunkBy;
|
||||
|
||||
// joiner
|
||||
/**
|
||||
Lazily joins a range of ranges with a separator. The separator itself
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue