/runtime/typeinfo/ti_idouble.d
D | 16 lines | 7 code | 3 blank | 6 comment | 0 complexity | a76cb8e42e9818a4cc93bcbd5598f6ff MD5 | raw file
1/* 2 * ti_idouble.d 3 * 4 * This module implements the TypeInfo for the idouble type. 5 * 6 */ 7 8module runtime.typeinfo.ti_idouble; 9 10import runtime.typeinfo.ti_double; 11 12class TypeInfo_p : TypeInfo_d { 13 char[] toString() { 14 return "idouble"; 15 } 16}