aboutsummaryrefslogtreecommitdiff
path: root/libphobos/src/index.d
diff options
context:
space:
mode:
Diffstat (limited to 'libphobos/src/index.d')
-rw-r--r--libphobos/src/index.d22
1 files changed, 13 insertions, 9 deletions
diff --git a/libphobos/src/index.d b/libphobos/src/index.d
index 2792b7b..8613a3c 100644
--- a/libphobos/src/index.d
+++ b/libphobos/src/index.d
@@ -3,9 +3,9 @@ Ddoc
$(P Phobos is the standard runtime library that comes with the D language
compiler.)
-$(P Generally, the $(D std) namespace is used for the main modules in the
-Phobos standard library. The $(D etc) namespace is used for external C/C++
-library bindings. The $(D core) namespace is used for low-level D runtime
+$(P Generally, the `std` namespace is used for the main modules in the
+Phobos standard library. The `etc` namespace is used for external C/C++
+library bindings. The `core` namespace is used for low-level D runtime
functions.)
$(P The following table is a quick reference guide for which Phobos modules to
@@ -41,7 +41,7 @@ $(BOOKTABLE ,
$(TD Convenient operations commonly used with built-in arrays.
Note that many common array operations are subsets of more generic
algorithms that work with arbitrary ranges, so they are found in
- $(D std.algorithm).
+ `std.algorithm`.
)
)
$(LEADINGROW Containers)
@@ -88,12 +88,12 @@ $(BOOKTABLE ,
$(TD Checked integral types.)
)
$(TR
- $(TDNW $(MREF std,digest,crc))
- $(TD Cyclic Redundancy Check (32-bit) implementation.)
+ $(TDNW $(MREF std,digest))
+ $(TD Compute digests such as md5, sha1 and crc32.)
)
$(TR
- $(TDNW $(MREF std,digest,digest))
- $(TD Compute digests such as md5, sha1 and crc32.)
+ $(TDNW $(MREF std,digest,crc))
+ $(TD Cyclic Redundancy Check (32-bit) implementation.)
)
$(TR
$(TDNW $(MREF std,digest,hmac))
@@ -444,12 +444,16 @@ $(BOOKTABLE ,
)
$(TR
$(TDNW $(MREF std,variant))
- $(TD Discriminated unions and algebraic types.)
+ $(TD Dynamically-typed variable that can hold a value of any type.)
)
$(TR
$(TDNW $(MREF core,bitop))
$(TD Low level bit manipulation.)
)
+ $(TR
+ $(TDNW $(MREF std,sumtype))
+ $(TD Type-safe discriminated union.)
+ )
$(LEADINGROW Vector programming)
$(TR
$(TDNW $(MREF core,simd))