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