diff --git a/index.d b/index.d index 60bdced6a..f56125c37 100644 --- a/index.d +++ b/index.d @@ -21,8 +21,8 @@ $(BOOKTABLE , $(LEADINGROW Algorithms & ranges) $(TR $(TD - $(LINK2 std_algorithm_package.html, std.algorithm)$(BR) - $(LINK2 std_range_package.html, std.range)$(BR) + $(LINK2 std_algorithm.html, std.algorithm)$(BR) + $(LINK2 std_range.html, std.range)$(BR) $(LINK2 std_range_primitives.html, std.range.primitives)$(BR) $(LINK2 std_range_interfaces.html, std.range.interfaces) ) @@ -36,7 +36,7 @@ $(BOOKTABLE , $(TR $(TD $(LINK2 std_array.html, std.array)$(BR) - $(LINK2 std_algorithm_package.html, std.algorithm) + $(LINK2 std_algorithm.html, std.algorithm) ) $(TD Convenient operations commonly used with built-in arrays. Note that many common array operations are subsets of more generic @@ -53,7 +53,7 @@ $(BOOKTABLE , $(LINK2 std_container_rbtree.html, std.container.rbtree)$(BR) $(LINK2 std_container_slist.html, std.container.slist) ) - $(TD See $(LINK2 std_container_package.html, std.container.*) for an + $(TD See $(LINK2 std_container.html, std.container.*) for an overview. ) ) @@ -146,7 +146,7 @@ $(BOOKTABLE , ) $(LEADINGROW Metaprogramming) $(TR - $(TD + $(TD $(LINK2 std_traits.html, std.traits)$(BR) $(LINK2 std_typecons.html, std.typecons)$(BR) $(LINK2 std_typetuple.html, std.typetuple)$(BR) @@ -217,7 +217,7 @@ $(BOOKTABLE , $(TR $(TD $(LINK2 std_functional, std.functional)$(BR) - $(LINK2 std_algorithm_package, std.algorithm)$(BR) + $(LINK2 std_algorithm, std.algorithm)$(BR) $(LINK2 std_signals, std.signals) ) $(TD $(D std.functional), along with the lazy algorithms of @@ -255,7 +255,7 @@ $(BOOKTABLE , $(TD $(LINK2 std_string.html, std.string)$(BR) $(LINK2 std_array.html, std.array)$(BR) - $(LINK2 std_algorithm_package.html, std.algorithm)$(BR) + $(LINK2 std_algorithm.html, std.algorithm)$(BR) $(LINK2 std_uni, std.uni)$(BR) $(LINK2 std_utf, std.utf)$(BR) $(LINK2 std_format.html, std.format)$(BR) diff --git a/std/algorithm/comparison.d b/std/algorithm/comparison.d index a57f30de7..6574d2090 100644 --- a/std/algorithm/comparison.d +++ b/std/algorithm/comparison.d @@ -1,6 +1,6 @@ // Written in the D programming language. /** -This is a submodule of $(LINK2 std_algorithm_package.html, std.algorithm). +This is a submodule of $(LINK2 std_algorithm.html, std.algorithm). It contains generic _comparison algorithms. $(BOOKTABLE Cheat Sheet, diff --git a/std/algorithm/iteration.d b/std/algorithm/iteration.d index a94fcd780..3bb96928e 100644 --- a/std/algorithm/iteration.d +++ b/std/algorithm/iteration.d @@ -1,6 +1,6 @@ // Written in the D programming language. /** -This is a submodule of $(LINK2 std_algorithm_package.html, std.algorithm). +This is a submodule of $(LINK2 std_algorithm.html, std.algorithm). It contains generic _iteration algorithms. $(BOOKTABLE Cheat Sheet, diff --git a/std/algorithm/mutation.d b/std/algorithm/mutation.d index 9aecf2a51..71b0b781c 100644 --- a/std/algorithm/mutation.d +++ b/std/algorithm/mutation.d @@ -1,6 +1,6 @@ // Written in the D programming language. /** -This is a submodule of $(LINK2 std_algorithm_package.html, std.algorithm). +This is a submodule of $(LINK2 std_algorithm.html, std.algorithm). It contains generic _mutation algorithms. $(BOOKTABLE Cheat Sheet, diff --git a/std/algorithm/searching.d b/std/algorithm/searching.d index b4359fa6a..d8cbf6faf 100644 --- a/std/algorithm/searching.d +++ b/std/algorithm/searching.d @@ -1,6 +1,6 @@ // Written in the D programming language. /** -This is a submodule of $(LINK2 std_algorithm_package.html, std.algorithm). +This is a submodule of $(LINK2 std_algorithm.html, std.algorithm). It contains generic _searching algorithms. $(BOOKTABLE Cheat Sheet, diff --git a/std/algorithm/setops.d b/std/algorithm/setops.d index be358736a..d793bf44c 100644 --- a/std/algorithm/setops.d +++ b/std/algorithm/setops.d @@ -1,6 +1,6 @@ // Written in the D programming language. /** -This is a submodule of $(LINK2 std_algorithm_package.html, std.algorithm). +This is a submodule of $(LINK2 std_algorithm.html, std.algorithm). It contains generic algorithms that implement set operations. $(BOOKTABLE Cheat Sheet, diff --git a/std/algorithm/sorting.d b/std/algorithm/sorting.d index 12244f7f2..48cd1915c 100644 --- a/std/algorithm/sorting.d +++ b/std/algorithm/sorting.d @@ -1,6 +1,6 @@ // Written in the D programming language. /** -This is a submodule of $(LINK2 std_algorithm_package.html, std.algorithm). +This is a submodule of $(LINK2 std_algorithm.html, std.algorithm). It contains generic _sorting algorithms. $(BOOKTABLE Cheat Sheet, diff --git a/std/container/array.d b/std/container/array.d index 6a2df82d9..93e861b7e 100644 --- a/std/container/array.d +++ b/std/container/array.d @@ -2,7 +2,7 @@ This module provides an $(D Array) type with deterministic memory usage not reliant on the GC, as an alternative to the built-in arrays. -This module is a submodule of $(LINK2 std_container_package.html, std.container). +This module is a submodule of $(LINK2 std_container.html, std.container). Source: $(PHOBOSSRC std/container/_array.d) Macros: diff --git a/std/container/binaryheap.d b/std/container/binaryheap.d index 1324775b8..70768f731 100644 --- a/std/container/binaryheap.d +++ b/std/container/binaryheap.d @@ -2,7 +2,7 @@ This module provides a $(D BinaryHeap) adaptor that makes a binary heap out of any user-provided random-access range. -This module is a submodule of $(LINK2 std_container_package.html, std.container). +This module is a submodule of $(LINK2 std_container.html, std.container). Source: $(PHOBOSSRC std/container/_binaryheap.d) Macros: diff --git a/std/container/dlist.d b/std/container/dlist.d index 2c5e2e5e0..4d4343247 100644 --- a/std/container/dlist.d +++ b/std/container/dlist.d @@ -1,7 +1,7 @@ /** This module implements a generic doubly-linked list container. -This module is a submodule of $(LINK2 std_container_package.html, std.container). +This module is a submodule of $(LINK2 std_container.html, std.container). Source: $(PHOBOSSRC std/container/_dlist.d) Macros: diff --git a/std/container/package.d b/std/container/package.d index 11e305f33..df9441ed9 100644 --- a/std/container/package.d +++ b/std/container/package.d @@ -136,7 +136,7 @@ The_primary_range_of_a_container: While some _containers offer direct access to their elements e.g. via $(D opIndex), $(D c.front) or $(D c.back), access and modification of a _container's contents is generally done through -its primary $(LINK2 std_range_package.html, range) type, +its primary $(LINK2 std_range.html, range) type, which is aliased as $(D C.Range). For example, the primary range type of $(D Array!int) is $(D Array!int.Range). @@ -169,7 +169,7 @@ array.linearRemove(array[].find(2).takeOne()); assert(array[].equal([1, 3])); --- -When any $(LINK2 std_range_package.html, range) can be passed as an argument to +When any $(LINK2 std_range.html, range) can be passed as an argument to a member function, the documention usually refers to the parameter's templated type as $(D Stuff). diff --git a/std/container/rbtree.d b/std/container/rbtree.d index 1854e189d..e70557d0d 100644 --- a/std/container/rbtree.d +++ b/std/container/rbtree.d @@ -1,7 +1,7 @@ /** This module implements a red-black tree container. -This module is a submodule of $(LINK2 std_container_package.html, std.container). +This module is a submodule of $(LINK2 std_container.html, std.container). Source: $(PHOBOSSRC std/container/_rbtree.d) Macros: diff --git a/std/container/slist.d b/std/container/slist.d index 819ed82e3..b015aec7b 100644 --- a/std/container/slist.d +++ b/std/container/slist.d @@ -1,7 +1,7 @@ /** This module implements a singly-linked list container. -This module is a submodule of $(LINK2 std_container_package.html, std.container). +This module is a submodule of $(LINK2 std_container.html, std.container). Source: $(PHOBOSSRC std/container/_slist.d) Macros: diff --git a/std/container/util.d b/std/container/util.d index 3d013a8db..6e6d4a0fe 100644 --- a/std/container/util.d +++ b/std/container/util.d @@ -1,7 +1,7 @@ /** This module contains some common utilities used by containers. -This module is a submodule of $(LINK2 std_container_package.html, std.container). +This module is a submodule of $(LINK2 std_container.html, std.container). Source: $(PHOBOSSRC std/container/_util.d) Macros: diff --git a/std/exception.d b/std/exception.d index 2540907e1..7e9995e54 100644 --- a/std/exception.d +++ b/std/exception.d @@ -1663,7 +1663,7 @@ Returns: A wrapper $(D struct) that preserves the range interface of $(D input). opSlice: Infinite ranges with slicing support must return an instance of -$(XREF range_package, Take) when sliced with a specific lower and upper +$(XREF range, Take) when sliced with a specific lower and upper bound (see $(XREF range_primitives, hasSlicing)); $(D handle) deals with this by $(D take)ing 0 from the return value of the handler function and returning that when an exception is caught. diff --git a/std/range/interfaces.d b/std/range/interfaces.d index f7ad377bd..ee934b103 100644 --- a/std/range/interfaces.d +++ b/std/range/interfaces.d @@ -1,5 +1,5 @@ /** -This module is a submodule of $(LINK2 std_range_package.html, std.range). +This module is a submodule of $(LINK2 std_range.html, std.range). The main $(D std.range) module provides template-based tools for working with ranges, but sometimes an object-based interface for ranges is needed, such as diff --git a/std/range/primitives.d b/std/range/primitives.d index b7b293d40..a414cec83 100644 --- a/std/range/primitives.d +++ b/std/range/primitives.d @@ -1,5 +1,5 @@ /** -This module is a submodule of $(LINK2 std_range_package.html, std.range). +This module is a submodule of $(LINK2 std_range.html, std.range). It provides basic range functionality by defining several templates for testing whether a given object is a _range, and what kind of _range it is: diff --git a/win32.mak b/win32.mak index f3349d861..a505bbb71 100644 --- a/win32.mak +++ b/win32.mak @@ -190,7 +190,7 @@ SRC_STD_NET= std\net\isemail.d std\net\curl.d SRC_STD_LOGGER= std\experimental\logger\core.d std\experimental\logger\filelogger.d \ std\experimental\logger\multilogger.d std\experimental\logger\nulllogger.d \ std\experimental\logger\package.d - + SRC_STD_C= std\c\process.d std\c\stdlib.d std\c\time.d std\c\stdio.d \ std\c\math.d std\c\stdarg.d std\c\stddef.d std\c\fenv.d std\c\string.d \ std\c\locale.d std\c\wcharh.d @@ -300,7 +300,7 @@ DOCS= $(DOC)\object.html \ $(DOC)\core_sync_mutex.html \ $(DOC)\core_sync_rwmutex.html \ $(DOC)\core_sync_semaphore.html \ - $(DOC)\std_algorithm_package.html \ + $(DOC)\std_algorithm.html \ $(DOC)\std_algorithm_comparison.html \ $(DOC)\std_algorithm_iteration.html \ $(DOC)\std_algorithm_mutation.html \ @@ -320,7 +320,7 @@ DOCS= $(DOC)\object.html \ $(DOC)\std_container_dlist.html \ $(DOC)\std_container_rbtree.html \ $(DOC)\std_container_slist.html \ - $(DOC)\std_container_package.html \ + $(DOC)\std_container.html \ $(DOC)\std_container_util.html \ $(DOC)\std_conv.html \ $(DOC)\std_digest_crc.html \ @@ -348,7 +348,7 @@ DOCS= $(DOC)\object.html \ $(DOC)\std_path.html \ $(DOC)\std_process.html \ $(DOC)\std_random.html \ - $(DOC)\std_range_package.html \ + $(DOC)\std_range.html \ $(DOC)\std_range_primitives.html \ $(DOC)\std_range_interfaces.html \ $(DOC)\std_regex.html \ @@ -377,7 +377,7 @@ DOCS= $(DOC)\object.html \ $(DOC)\std_experimental_logger_filelogger.html \ $(DOC)\std_experimental_logger_multilogger.html \ $(DOC)\std_experimental_logger_nulllogger.html \ - $(DOC)\std_experimental_logger_package.html \ + $(DOC)\std_experimental_logger.html \ $(DOC)\std_windows_charset.html \ $(DOC)\std_windows_registry.html \ $(DOC)\std_c_fenv.html \ @@ -588,8 +588,8 @@ $(DOC)\core_sync_rwmutex.html : $(STDDOC) $(DRUNTIME)\src\core\sync\rwmutex.d $(DOC)\core_sync_semaphore.html : $(STDDOC) $(DRUNTIME)\src\core\sync\semaphore.d $(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\core_sync_semaphore.html $(STDDOC) $(DRUNTIME)\src\core\sync\semaphore.d -I$(DRUNTIME)\src\ -$(DOC)\std_algorithm_package.html : $(STDDOC) std\algorithm\package.d - $(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_algorithm_package.html $(STDDOC) std\algorithm\package.d +$(DOC)\std_algorithm.html : $(STDDOC) std\algorithm\package.d + $(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_algorithm.html $(STDDOC) std\algorithm\package.d $(DOC)\std_algorithm_comparison.html : $(STDDOC) std\algorithm\comparison.d $(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_algorithm_comparison.html $(STDDOC) std\algorithm\comparison.d @@ -654,11 +654,11 @@ $(DOC)\std_container_slist.html : $(STDDOC) std\container\slist.d $(DOC)\std_container_util.html : $(STDDOC) std\container\util.d $(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_container_util.html $(STDDOC) std\container\util.d -$(DOC)\std_container_package.html : $(STDDOC) std\container\package.d - $(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_container_package.html $(STDDOC) std\container\package.d +$(DOC)\std_container.html : $(STDDOC) std\container\package.d + $(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_container.html $(STDDOC) std\container\package.d -$(DOC)\std_range_package.html : $(STDDOC) std\range\package.d - $(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_range_package.html $(STDDOC) std\range\package.d +$(DOC)\std_range.html : $(STDDOC) std\range\package.d + $(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_range.html $(STDDOC) std\range\package.d $(DOC)\std_range_primitives.html : $(STDDOC) std\range\primitives.d $(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_range_primitives.html $(STDDOC) std\range\primitives.d @@ -807,8 +807,8 @@ $(DOC)\std_experimental_logger_filelogger.html : $(STDDOC) std\experimental\logg $(DOC)\std_experimental_logger_nulllogger.html : $(STDDOC) std\experimental\logger\nulllogger.d $(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_experimental_logger_nulllogger.html $(STDDOC) std\experimental\logger\nulllogger.d -$(DOC)\std_experimental_logger_package.html : $(STDDOC) std\experimental\logger\package.d - $(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_experimental_logger_package.html $(STDDOC) std\experimental\logger\package.d +$(DOC)\std_experimental_logger.html : $(STDDOC) std\experimental\logger\package.d + $(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_experimental_logger.html $(STDDOC) std\experimental\logger\package.d $(DOC)\std_digest_crc.html : $(STDDOC) std\digest\crc.d $(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_digest_crc.html $(STDDOC) std\digest\crc.d diff --git a/win64.mak b/win64.mak index 61b913d06..87dc9c3b6 100644 --- a/win64.mak +++ b/win64.mak @@ -317,7 +317,7 @@ DOCS= $(DOC)\object.html \ $(DOC)\core_sync_mutex.html \ $(DOC)\core_sync_rwmutex.html \ $(DOC)\core_sync_semaphore.html \ - $(DOC)\std_algorithm_package.html \ + $(DOC)\std_algorithm.html \ $(DOC)\std_algorithm_comparison.html \ $(DOC)\std_algorithm_iteration.html \ $(DOC)\std_algorithm_mutation.html \ @@ -337,7 +337,7 @@ DOCS= $(DOC)\object.html \ $(DOC)\std_container_dlist.html \ $(DOC)\std_container_rbtree.html \ $(DOC)\std_container_slist.html \ - $(DOC)\std_container_package.html \ + $(DOC)\std_container.html \ $(DOC)\std_container_util.html \ $(DOC)\std_conv.html \ $(DOC)\std_digest_crc.html \ @@ -365,7 +365,7 @@ DOCS= $(DOC)\object.html \ $(DOC)\std_path.html \ $(DOC)\std_process.html \ $(DOC)\std_random.html \ - $(DOC)\std_range_package.html \ + $(DOC)\std_range.html \ $(DOC)\std_range_primitives.html \ $(DOC)\std_range_interfaces.html \ $(DOC)\std_regex.html \ @@ -394,7 +394,7 @@ DOCS= $(DOC)\object.html \ $(DOC)\std_experimental_logger_filelogger.html \ $(DOC)\std_experimental_logger_multilogger.html \ $(DOC)\std_experimental_logger_nulllogger.html \ - $(DOC)\std_experimental_logger_package.html \ + $(DOC)\std_experimental_logger.html \ $(DOC)\std_windows_charset.html \ $(DOC)\std_windows_registry.html \ $(DOC)\std_c_fenv.html \ @@ -546,8 +546,8 @@ $(DOC)\core_sync_rwmutex.html : $(STDDOC) $(DRUNTIME)\src\core\sync\rwmutex.d $(DOC)\core_sync_semaphore.html : $(STDDOC) $(DRUNTIME)\src\core\sync\semaphore.d $(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\core_sync_semaphore.html $(STDDOC) $(DRUNTIME)\src\core\sync\semaphore.d -I$(DRUNTIME)\src\ -$(DOC)\std_algorithm_package.html : $(STDDOC) std\algorithm\package.d - $(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_algorithm_package.html $(STDDOC) std\algorithm\package.d +$(DOC)\std_algorithm.html : $(STDDOC) std\algorithm\package.d + $(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_algorithm.html $(STDDOC) std\algorithm\package.d $(DOC)\std_algorithm_comparison.html : $(STDDOC) std\algorithm\comparison.d $(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_algorithm_comparison.html $(STDDOC) std\algorithm\comparison.d @@ -612,11 +612,11 @@ $(DOC)\std_container_slist.html : $(STDDOC) std\container\slist.d $(DOC)\std_container_util.html : $(STDDOC) std\container\util.d $(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_container_util.html $(STDDOC) std\container\util.d -$(DOC)\std_container_package.html : $(STDDOC) std\container\package.d - $(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_container_package.html $(STDDOC) std\container\package.d +$(DOC)\std_container.html : $(STDDOC) std\container\package.d + $(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_container.html $(STDDOC) std\container\package.d -$(DOC)\std_range_package.html : $(STDDOC) std\range\package.d - $(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_range_package.html $(STDDOC) std\range\package.d +$(DOC)\std_range.html : $(STDDOC) std\range\package.d + $(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_range.html $(STDDOC) std\range\package.d $(DOC)\std_range_primitives.html : $(STDDOC) std\range\primitives.d $(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_range_primitives.html $(STDDOC) std\range\primitives.d @@ -765,8 +765,8 @@ $(DOC)\std_experimental_logger_filelogger.html : $(STDDOC) std\experimental\logg $(DOC)\std_experimental_logger_nulllogger.html : $(STDDOC) std\experimental\logger\nulllogger.d $(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_experimental_logger_nulllogger.html $(STDDOC) std\experimental\logger\nulllogger.d -$(DOC)\std_experimental_logger_package.html : $(STDDOC) std\experimental\logger\package.d - $(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_experimental_logger_package.html $(STDDOC) std\experimental\logger\package.d +$(DOC)\std_experimental_logger.html : $(STDDOC) std\experimental\logger\package.d + $(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_experimental_logger.html $(STDDOC) std\experimental\logger\package.d $(DOC)\std_digest_crc.html : $(STDDOC) std\digest\crc.d $(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_digest_crc.html $(STDDOC) std\digest\crc.d