/runtime/typeinfo/ti_array_bool.d

http://github.com/wilkie/djehuty · D · 20 lines · 10 code · 4 blank · 6 comment · 0 complexity · 95239ed6ce7fb0c0649942d6aeb20d97 MD5 · raw file

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