Differences From Artifact [bd0c6e24fe1ad6ba]:
- File
polemy/tricks.d
- 2010-11-07 10:18:02 - part of checkin [423f308350] on branch trunk - Initial commit. Just for setting up the environment. (user: kinaba) [annotate]
To Artifact [193cf29f54393c6e]:
- File
polemy/tricks.d
- 2010-11-07 10:32:59 - part of checkin [4198578702e] on branch trunk - Changed several documentation comments into ddoc compatible ones. (user: kinaba) [annotate]
1 -module polemy.tricks;
2 -/*
3 - * Author: k.inaba
4 - * License: NYSL 0.9982 (http://www.kmonos.net/nysl/
5 - * Tricks and utilities for D programming
1 +/**
2 + * Authors: k.inaba
3 + * License: NYSL 0.9982 http://www.kmonos.net/nysl/
4 + *
5 + * Common tricks and utilities for programming in D.
6 6 */
7 +module polemy.tricks;
7 8 static import std.array;
8 9 static import std.format;
9 10
10 11 /// Simple Wrapper for std.format.doFormat
11 12
12 13 string sprintf(string fmt, T...)(T params)
13 14 {