mirror of
https://github.com/dlang/phobos.git
synced 2025-04-29 14:40:30 +03:00
Remove references to STL
This commit is contained in:
parent
afa7d586dd
commit
7fb3d4249f
4 changed files with 3 additions and 22 deletions
|
@ -913,9 +913,6 @@ template equal(alias pred = "a == b")
|
|||
Returns:
|
||||
`true` if and only if the two ranges compare _equal element
|
||||
for element, according to binary predicate `pred`.
|
||||
|
||||
See_Also:
|
||||
$(HTTP sgi.com/tech/stl/_equal.html, STL's _equal)
|
||||
+/
|
||||
bool equal(Range1, Range2)(Range1 r1, Range2 r2)
|
||||
if (isInputRange!Range1 && isInputRange!Range2 &&
|
||||
|
@ -1724,9 +1721,6 @@ stops at the first mismatch (according to `pred`, by default
|
|||
equality). Returns a tuple with the reduced ranges that start with the
|
||||
two mismatched values. Performs $(BIGOH min(r1.length, r2.length))
|
||||
evaluations of `pred`.
|
||||
|
||||
See_Also:
|
||||
$(HTTP sgi.com/tech/stl/_mismatch.html, STL's _mismatch)
|
||||
*/
|
||||
Tuple!(Range1, Range2)
|
||||
mismatch(alias pred = "a == b", Range1, Range2)(Range1 r1, Range2 r2)
|
||||
|
|
|
@ -363,9 +363,6 @@ Params:
|
|||
|
||||
Returns:
|
||||
The unfilled part of target
|
||||
|
||||
See_Also:
|
||||
$(HTTP sgi.com/tech/stl/_copy.html, STL's _copy)
|
||||
*/
|
||||
TargetRange copy(SourceRange, TargetRange)(SourceRange source, TargetRange target)
|
||||
if (areCopyCompatibleArrays!(SourceRange, TargetRange))
|
||||
|
|
|
@ -391,10 +391,6 @@ ordering of all elements `a`, `b` in `r` for which `predicate(a) =$D(
|
|||
predicate(b)). If `ss == SwapStrategy.semistable`, `partition` preserves
|
||||
the relative ordering of all elements `a`, `b` in the left part of `r`
|
||||
for which `predicate(a) == predicate(b)`.
|
||||
|
||||
See_Also:
|
||||
STL's $(HTTP sgi.com/tech/stl/_partition.html, _partition)$(BR)
|
||||
STL's $(HTTP sgi.com/tech/stl/stable_partition.html, stable_partition)
|
||||
*/
|
||||
Range partition(alias predicate, SwapStrategy ss, Range)(Range r)
|
||||
if (ss == SwapStrategy.stable && isRandomAccessRange!(Range) && hasLength!Range && hasSlicing!Range)
|
||||
|
@ -3096,7 +3092,6 @@ Params:
|
|||
|
||||
See_Also:
|
||||
$(LREF topNIndex),
|
||||
$(HTTP sgi.com/tech/stl/nth_element.html, STL's nth_element)
|
||||
|
||||
BUGS:
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue