/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

  1. /*
  2. * ti_array_ireal.d
  3. *
  4. * This module implements the TypeInfo for ireal[]
  5. *
  6. */
  7. module runtime.typeinfo.ti_array_ireal;
  8. import runtime.typeinfo.ti_array_real;
  9. class TypeInfo_Aj : TypeInfo_Ae {
  10. char[] toString() {
  11. return "ireal[]";
  12. }
  13. TypeInfo next() {
  14. return typeid(ireal);
  15. }
  16. }