mirror of
https://github.com/dlang/phobos.git
synced 2025-04-29 22:50:38 +03:00
Fix links
This commit is contained in:
parent
0fdb6e0c35
commit
11b32b56e5
19 changed files with 49 additions and 49 deletions
|
@ -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:
|
||||
|
|
|
@ -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:
|
||||
|
|
|
@ -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:
|
||||
|
|
|
@ -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).
|
||||
|
||||
|
|
|
@ -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:
|
||||
|
|
|
@ -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:
|
||||
|
|
|
@ -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:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue