Diff
Not logged in

Differences From Artifact [bd0c6e24fe1ad6ba]:

To Artifact [193cf29f54393c6e]:


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 {