Skip to content

Commit

Permalink
Issue 17232 - make std.algorithm table more digestable
Browse files Browse the repository at this point in the history
  • Loading branch information
wilzbach committed Feb 28, 2017
1 parent 8589665 commit bc7d20a
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions std/algorithm/package.d
Expand Up @@ -12,10 +12,10 @@ Algorithms are categorized into the following submodules:
$(DIVC quickindex,
$(BOOKTABLE ,
$(TR $(TH Category) $(TH Submodule) $(TH Functions)
$(TR $(TH Submodule) $(TH Functions)
)
$(TR $(TDNW Searching)
$(TDNW $(SUBMODULE searching))
$(TR
$(TDNW $(SUBMODULE Searching, searching))
$(TD
$(SUBREF searching, all)
$(SUBREF searching, any)
Expand Down Expand Up @@ -46,8 +46,8 @@ $(TR $(TDNW Searching)
$(SUBREF searching, until)
)
)
$(TR $(TDNW Comparison)
$(TDNW $(SUBMODULE comparison))
$(TR
$(TDNW $(SUBMODULE Comparison, comparison))
$(TD
$(SUBREF comparison, among)
$(SUBREF comparison, castSwitch)
Expand All @@ -65,8 +65,8 @@ $(TR $(TDNW Comparison)
$(SUBREF comparison, predSwitch)
)
)
$(TR $(TDNW Iteration)
$(TDNW $(SUBMODULE iteration))
$(TR
$(TDNW $(SUBMODULE Iteration, iteration))
$(TD
$(SUBREF iteration, cache)
$(SUBREF iteration, cacheBidirectional)
Expand All @@ -86,8 +86,8 @@ $(TR $(TDNW Iteration)
$(SUBREF iteration, uniq)
)
)
$(TR $(TDNW Sorting)
$(TDNW $(SUBMODULE sorting))
$(TR
$(TDNW $(SUBMODULE Sorting, sorting))
$(TD
$(SUBREF sorting, completeSort)
$(SUBREF sorting, isPartitioned)
Expand All @@ -110,8 +110,8 @@ $(TR $(TDNW Sorting)
$(SUBREF sorting, topNIndex)
)
)
$(TR $(TDNW Set operations)
$(TDNW $(SUBMODULE setops))
$(TR
$(TDNW $(SUBMODULE Set operations, setops))
$(TD
$(SUBREF setops, cartesianProduct)
$(SUBREF setops, largestPartialIntersection)
Expand All @@ -122,8 +122,8 @@ $(TR $(TDNW Set operations)
$(SUBREF setops, setSymmetricDifference)
)
)
$(TR $(TDNW Mutation)
$(TDNW $(SUBMODULE mutation))
$(TR
$(TDNW $(SUBMODULE Mutation, mutation))
$(TD
$(SUBREF mutation, bringToFront)
$(SUBREF mutation, copy)
Expand Down Expand Up @@ -171,7 +171,7 @@ sort(a); // no predicate, "a < b" is implicit
----
Macros:
SUBMODULE = $(MREF std, algorithm, $1)
SUBMODULE = $(MREF_ALTTEXT $1, std, algorithm, $2)
SUBREF = $(REF_ALTTEXT $(TT $2), $2, std, algorithm, $1)$(NBSP)
Copyright: Andrei Alexandrescu 2008-.
Expand Down

0 comments on commit bc7d20a

Please sign in to comment.