comparison trunk/src/common.d @ 786:3b34f6a95a27

Added and revised documenation comments.
author Aziz K?ksal <aziz.koeksal@gmail.com>
date Sun, 24 Feb 2008 02:41:11 +0100
parents 33b566df6af4
children
comparison
equal deleted inserted replaced
785:57ef69eced96 786:3b34f6a95a27
5 module common; 5 module common;
6 6
7 public import tango.io.Stdout; 7 public import tango.io.Stdout;
8 public import tango.text.convert.Layout; 8 public import tango.text.convert.Layout;
9 9
10 /// String aliases.
10 alias char[] string; 11 alias char[] string;
11 alias wchar[] wstring; 12 alias wchar[] wstring; /// ditto
12 alias dchar[] dstring; 13 alias dchar[] dstring; /// ditto
13 14
15 /// Global formatter instance.
14 static Layout!(char) Format; 16 static Layout!(char) Format;
15 static this() 17 static this()
16 { 18 {
17 Format = new typeof(Format); 19 Format = new typeof(Format);
18 } 20 }