From 6f6c6862d615ee77a5e634cbb127742d859fec8f Mon Sep 17 00:00:00 2001 From: Ulrich Kuettler Date: Sat, 21 Feb 2015 19:10:51 +0100 Subject: [PATCH] Add table headers in ddoc function tables --- std/array.d | 2 ++ std/format.d | 4 ++++ std/functional.d | 2 ++ 3 files changed, 8 insertions(+) diff --git a/std/array.d b/std/array.d index 1e0a028c5..21dfda6ca 100644 --- a/std/array.d +++ b/std/array.d @@ -5,6 +5,8 @@ Functions and types that manipulate built-in arrays and associative arrays. This module provides all kinds of functions to create, manipulate or convert arrays: $(BOOKTABLE , +$(TR $(TH Function Name) $(TH Description) +) $(TR $(TD $(D $(LREF _array))) $(TD Returns a copy of the input in a newly allocated dynamic _array. )) diff --git a/std/format.d b/std/format.d index d9160b782..fd42060cb 100644 --- a/std/format.d +++ b/std/format.d @@ -12,6 +12,8 @@ This module centers around two functions: $(BOOKTABLE , +$(TR $(TH Function Name) $(TH Description) +) $(TR $(TD $(D $(LREF formattedRead))) $(TD Reads values according to the _format string from an InputRange. )) @@ -27,6 +29,8 @@ $(BOOKTABLE , Two functions have been added for convenience: $(BOOKTABLE , +$(TR $(TH Function Name) $(TH Description) +) $(TR $(TD $(D $(LREF _format))) $(TD Returns a GC-allocated string with the formatting result. )) diff --git a/std/functional.d b/std/functional.d index ade30813c..f6be980ca 100644 --- a/std/functional.d +++ b/std/functional.d @@ -9,6 +9,8 @@ $(LINK2 std_algorithm.html, std.algorithm) or $(LINK2 std_range.html, std.range). $(BOOKTABLE , +$(TR $(TH Function Name) $(TH Description) +) $(TR $(TD $(D $(LREF adjoin))) $(TD Joins a couple of functions into one that executes the original functions independently and returns a tuple with all the results.