Diff
Not logged in

Differences From Artifact [bd0c6e24fe1ad6ba]:

To Artifact [193cf29f54393c6e]:


1 module polemy.tricks; < 2 /* | 1 /** 3 * Author: k.inaba | 2 * Authors: k.inaba 4 * License: NYSL 0.9982 (http://www.kmonos.net/nysl/ | 3 * License: NYSL 0.9982 http://www.kmonos.net/nysl/ > 4 * 5 * Tricks and utilities for D programming | 5 * Common tricks and utilities for programming in D. 6 */ 6 */ > 7 module polemy.tricks; 7 static import std.array; 8 static import std.array; 8 static import std.format; 9 static import std.format; 9 10 10 /// Simple Wrapper for std.format.doFormat 11 /// Simple Wrapper for std.format.doFormat 11 12 12 string sprintf(string fmt, T...)(T params) 13 string sprintf(string fmt, T...)(T params) 13 { 14 {