mirror of
https://github.com/dlang/phobos.git
synced 2025-04-28 22:21:09 +03:00
Fix Issue 18492 - DLang STL links are broken
This commit is contained in:
parent
460693c26f
commit
adf6113eb9
3 changed files with 4 additions and 4 deletions
|
@ -118,7 +118,7 @@ Returns:
|
|||
The number of elements brought to the front, i.e., the length of `back`.
|
||||
|
||||
See_Also:
|
||||
$(HTTP sgi.com/tech/stl/_rotate.html, STL's rotate)
|
||||
$(LINK2 http://en.cppreference.com/w/cpp/algorithm/rotate, STL's `rotate`)
|
||||
*/
|
||||
size_t bringToFront(InputRange, ForwardRange)(InputRange front, ForwardRange back)
|
||||
if (isInputRange!InputRange && isForwardRange!ForwardRange)
|
||||
|
@ -472,7 +472,7 @@ use $(LREF filter):
|
|||
|
||||
/**
|
||||
$(REF retro, std,range) can be used to achieve behavior similar to
|
||||
$(HTTP sgi.com/tech/stl/copy_backward.html, STL's copy_backward'):
|
||||
$(LINK2 http://en.cppreference.com/w/cpp/algorithm/copy_backward, STL's `copy_backward`'):
|
||||
*/
|
||||
@safe unittest
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue