/runtime/typeinfo/ti_ireal.d
http://github.com/wilkie/djehuty · D · 17 lines · 7 code · 4 blank · 6 comment · 0 complexity · a6e683b25bf113e5324d3261cee8c2ee MD5 · raw file
- /*
- * ti_ireal.d
- *
- * This module implements the TypeInfo for the ireal type.
- *
- */
- module runtime.typeinfo.ti_ireal;
- import runtime.typeinfo.ti_real;
- class TypeInfo_j : TypeInfo_e {
- char[] toString() {
- return "ireal";
- }
- }