comparison lphobos/typeinfo1/ti_ifloat.d @ 62:b86e00b938a5 trunk

[svn r66] Added support for imaginary floating point types
author lindquist
date Thu, 25 Oct 2007 09:48:36 +0200
parents
children
comparison
equal deleted inserted replaced
61:0258a7171a42 62:b86e00b938a5
1
2 // ifloat
3
4 module typeinfo1.ti_ifloat;
5
6 private import typeinfo1.ti_float;
7
8 class TypeInfo_o : TypeInfo_f
9 {
10 char[] toString() { return "ifloat"; }
11 }
12