From c3d464d1aa336584c8c2fd66c9638522f03c5c1c Mon Sep 17 00:00:00 2001 From: "H. S. Teoh" Date: Tue, 20 Jan 2015 10:27:42 -0800 Subject: [PATCH] Add ddoc headers for submodules. --- std/algorithm/comparison.d | 12 ++++++++++++ std/algorithm/iteration.d | 12 ++++++++++++ std/algorithm/mutation.d | 12 ++++++++++++ std/algorithm/package.d | 2 +- std/algorithm/searching.d | 12 ++++++++++++ std/algorithm/setops.d | 12 ++++++++++++ std/algorithm/sorting.d | 12 ++++++++++++ 7 files changed, 73 insertions(+), 1 deletion(-) diff --git a/std/algorithm/comparison.d b/std/algorithm/comparison.d index 0a5204e20..8bc7c14bf 100644 --- a/std/algorithm/comparison.d +++ b/std/algorithm/comparison.d @@ -1,4 +1,16 @@ // Written in the D programming language. +/** +This is a submodule of $(LINK2 std_algorithm_package.html, std.algorithm). +It contains generic _comparison algorithms. + +Copyright: Andrei Alexandrescu 2008-. + +License: $(WEB boost.org/LICENSE_1_0.txt, Boost License 1.0). + +Authors: $(WEB erdani.com, Andrei Alexandrescu) + +Source: $(PHOBOSSRC std/algorithm/_comparison.d) + */ module std.algorithm.comparison; // FIXME diff --git a/std/algorithm/iteration.d b/std/algorithm/iteration.d index c51f901e2..d7b76a3cb 100644 --- a/std/algorithm/iteration.d +++ b/std/algorithm/iteration.d @@ -1,4 +1,16 @@ // Written in the D programming language. +/** +This is a submodule of $(LINK2 std_algorithm_package.html, std.algorithm). +It contains generic _iteration algorithms. + +Copyright: Andrei Alexandrescu 2008-. + +License: $(WEB boost.org/LICENSE_1_0.txt, Boost License 1.0). + +Authors: $(WEB erdani.com, Andrei Alexandrescu) + +Source: $(PHOBOSSRC std/algorithm/_iteration.d) + */ module std.algorithm.iteration; // FIXME diff --git a/std/algorithm/mutation.d b/std/algorithm/mutation.d index 492837462..974b220e1 100644 --- a/std/algorithm/mutation.d +++ b/std/algorithm/mutation.d @@ -1,4 +1,16 @@ // Written in the D programming language. +/** +This is a submodule of $(LINK2 std_algorithm_package.html, std.algorithm). +It contains generic _mutation algorithms. + +Copyright: Andrei Alexandrescu 2008-. + +License: $(WEB boost.org/LICENSE_1_0.txt, Boost License 1.0). + +Authors: $(WEB erdani.com, Andrei Alexandrescu) + +Source: $(PHOBOSSRC std/algorithm/_mutation.d) + */ module std.algorithm.mutation; import std.range.primitives; diff --git a/std/algorithm/package.d b/std/algorithm/package.d index 333000e5a..20da02506 100644 --- a/std/algorithm/package.d +++ b/std/algorithm/package.d @@ -425,7 +425,7 @@ License: $(WEB boost.org/LICENSE_1_0.txt, Boost License 1.0). Authors: $(WEB erdani.com, Andrei Alexandrescu) -Source: $(PHOBOSSRC std/_algorithm.d) +Source: $(PHOBOSSRC std/_algorithm/package.d) */ module std.algorithm; //debug = std_algorithm; diff --git a/std/algorithm/searching.d b/std/algorithm/searching.d index b0168de89..71e11c49c 100644 --- a/std/algorithm/searching.d +++ b/std/algorithm/searching.d @@ -1,4 +1,16 @@ // Written in the D programming language. +/** +This is a submodule of $(LINK2 std_algorithm_package.html, std.algorithm). +It contains generic _searching algorithms. + +Copyright: Andrei Alexandrescu 2008-. + +License: $(WEB boost.org/LICENSE_1_0.txt, Boost License 1.0). + +Authors: $(WEB erdani.com, Andrei Alexandrescu) + +Source: $(PHOBOSSRC std/algorithm/_searching.d) + */ module std.algorithm.searching; // FIXME diff --git a/std/algorithm/setops.d b/std/algorithm/setops.d index 544f84e3d..61c964d5f 100644 --- a/std/algorithm/setops.d +++ b/std/algorithm/setops.d @@ -1,4 +1,16 @@ // Written in the D programming language. +/** +This is a submodule of $(LINK2 std_algorithm_package.html, std.algorithm). +It contains generic algorithms that implement set operations. + +Copyright: Andrei Alexandrescu 2008-. + +License: $(WEB boost.org/LICENSE_1_0.txt, Boost License 1.0). + +Authors: $(WEB erdani.com, Andrei Alexandrescu) + +Source: $(PHOBOSSRC std/algorithm/_setops.d) + */ module std.algorithm.setops; import std.range.primitives; diff --git a/std/algorithm/sorting.d b/std/algorithm/sorting.d index 13045d377..81b515f44 100644 --- a/std/algorithm/sorting.d +++ b/std/algorithm/sorting.d @@ -1,4 +1,16 @@ // Written in the D programming language. +/** +This is a submodule of $(LINK2 std_algorithm_package.html, std.algorithm). +It contains generic _sorting algorithms. + +Copyright: Andrei Alexandrescu 2008-. + +License: $(WEB boost.org/LICENSE_1_0.txt, Boost License 1.0). + +Authors: $(WEB erdani.com, Andrei Alexandrescu) + +Source: $(PHOBOSSRC std/algorithm/_sorting.d) + */ module std.algorithm.sorting; import std.algorithm : SortOutput; // FIXME