/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
- /*
- * ti_array_bool.d
- *
- * This module implements the TypeInfo for a bool[]
- *
- */
- module runtime.typeinfo.ti_array_bool;
- import runtime.typeinfo.ti_array_ubyte;
- class TypeInfo_Ab : TypeInfo_Ah {
- char[] toString() {
- return "bool[]";
- }
- TypeInfo next() {
- return typeid(bool);
- }
- }