mirror of
https://github.com/dlang/phobos.git
synced 2025-04-30 23:20:29 +03:00
fix package XREFs
Also add escaping underscores in some places, and rewrap to 80 columns where touching anyway.
This commit is contained in:
parent
559038b363
commit
b28962635f
19 changed files with 255 additions and 189 deletions
|
@ -944,7 +944,7 @@ time complexity.
|
|||
See_Also:
|
||||
$(XREF range, assumeSorted)$(BR)
|
||||
$(XREF range, SortedRange)$(BR)
|
||||
$(XREF algorithm, SwapStrategy)$(BR)
|
||||
$(XREF_PACK algorithm,mutation,SwapStrategy)$(BR)
|
||||
$(XREF functional, binaryFun)
|
||||
*/
|
||||
SortedRange!(Range, less)
|
||||
|
@ -2281,10 +2281,12 @@ Params:
|
|||
less = A binary predicate that defines the ordering of range elements.
|
||||
Defaults to $(D a < b).
|
||||
ss = $(RED (Not implemented yet.)) Specify the swapping strategy.
|
||||
r = A $(XREF2 range, isRandomAccessRange, random-access range) of elements
|
||||
to make an index for.
|
||||
index = A $(XREF2 range, isRandomAccessRange, random-access range) with
|
||||
assignable elements to build the index in. The length of this range
|
||||
r = A
|
||||
$(XREF_PACK_NAMED range,primitives,isRandomAccessRange,random-access range)
|
||||
of elements to make an index for.
|
||||
index = A
|
||||
$(XREF_PACK_NAMED range,primitives,isRandomAccessRange,random-access range)
|
||||
with assignable elements to build the index in. The length of this range
|
||||
determines how many top elements to index in $(D r).
|
||||
|
||||
This index range can either have integral elements, in which case the
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue