/runtime/typeinfo/ti_array_ireal.d
http://github.com/wilkie/djehuty · D · 20 lines · 10 code · 4 blank · 6 comment · 0 complexity · c5f0e5cb9d20739951a7ae0abd5b838e MD5 · raw file
- /*
- * ti_array_ireal.d
- *
- * This module implements the TypeInfo for ireal[]
- *
- */
- module runtime.typeinfo.ti_array_ireal;
- import runtime.typeinfo.ti_array_real;
- class TypeInfo_Aj : TypeInfo_Ae {
- char[] toString() {
- return "ireal[]";
- }
- TypeInfo next() {
- return typeid(ireal);
- }
- }