mirror of
https://github.com/dlang/phobos.git
synced 2025-05-01 23:50:31 +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
|
||||
{
|
||||
|
|
|
@ -2561,7 +2561,7 @@ the given predicate. If there are no such two elements, returns `r` advanced
|
|||
until empty.
|
||||
|
||||
See_Also:
|
||||
$(HTTP sgi.com/tech/stl/adjacent_find.html, STL's adjacent_find)
|
||||
$(LINK2 http://en.cppreference.com/w/cpp/algorithm/adjacent_find, STL's `adjacent_find`)
|
||||
*/
|
||||
Range findAdjacent(alias pred = "a == b", Range)(Range r)
|
||||
if (isForwardRange!(Range))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue