mirror of
https://github.com/dlang/phobos.git
synced 2025-04-29 14:40:30 +03:00
remove whitespace in ddoc output of std/algorithm
This commit is contained in:
parent
2f124dee5d
commit
614294cd70
6 changed files with 0 additions and 12 deletions
|
@ -4,9 +4,7 @@ This is a submodule of $(MREF std, algorithm).
|
|||
It contains generic _comparison algorithms.
|
||||
|
||||
$(BOOKTABLE Cheat Sheet,
|
||||
|
||||
$(TR $(TH Function Name) $(TH Description))
|
||||
|
||||
$(T2 among,
|
||||
Checks if a value is among a set of values, e.g.
|
||||
$(D if (v.among(1, 2, 3)) // `v` is 1, 2 or 3))
|
||||
|
|
|
@ -4,9 +4,7 @@ This is a submodule of $(MREF std, algorithm).
|
|||
It contains generic _iteration algorithms.
|
||||
|
||||
$(BOOKTABLE Cheat Sheet,
|
||||
|
||||
$(TR $(TH Function Name) $(TH Description))
|
||||
|
||||
$(T2 cache,
|
||||
Eagerly evaluates and caches another range's $(D front).)
|
||||
$(T2 cacheBidirectional,
|
||||
|
|
|
@ -4,9 +4,7 @@ This is a submodule of $(MREF std, algorithm).
|
|||
It contains generic _mutation algorithms.
|
||||
|
||||
$(BOOKTABLE Cheat Sheet,
|
||||
|
||||
$(TR $(TH Function Name) $(TH Description))
|
||||
|
||||
$(T2 bringToFront,
|
||||
If $(D a = [1, 2, 3]) and $(D b = [4, 5, 6, 7]),
|
||||
$(D bringToFront(a, b)) leaves $(D a = [4, 5, 6]) and
|
||||
|
|
|
@ -4,9 +4,7 @@ This is a submodule of $(MREF std, algorithm).
|
|||
It contains generic _searching algorithms.
|
||||
|
||||
$(BOOKTABLE Cheat Sheet,
|
||||
|
||||
$(TR $(TH Function Name) $(TH Description))
|
||||
|
||||
$(T2 all,
|
||||
$(D all!"a > 0"([1, 2, 3, 4])) returns $(D true) because all elements
|
||||
are positive)
|
||||
|
|
|
@ -4,9 +4,7 @@ This is a submodule of $(MREF std, algorithm).
|
|||
It contains generic algorithms that implement set operations.
|
||||
|
||||
$(BOOKTABLE Cheat Sheet,
|
||||
|
||||
$(TR $(TH Function Name) $(TH Description))
|
||||
|
||||
$(T2 cartesianProduct,
|
||||
Computes Cartesian product of two ranges.)
|
||||
$(T2 largestPartialIntersection,
|
||||
|
|
|
@ -4,9 +4,7 @@ This is a submodule of $(MREF std, algorithm).
|
|||
It contains generic _sorting algorithms.
|
||||
|
||||
$(BOOKTABLE Cheat Sheet,
|
||||
|
||||
$(TR $(TH Function Name) $(TH Description))
|
||||
|
||||
$(T2 completeSort,
|
||||
If $(D a = [10, 20, 30]) and $(D b = [40, 6, 15]), then
|
||||
$(D completeSort(a, b)) leaves $(D a = [6, 10, 15]) and $(D b = [20,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue