/runtime/typeinfo/ti_array_uint.d
D | 12 lines | 3 code | 3 blank | 6 comment | 0 complexity | e20e3c71edebb6f7455cff9c146e6900 MD5 | raw file
1/* 2 * ti_array_uint.d 3 * 4 * This module implements the TypeInfo for uint[] 5 * 6 */ 7 8module runtime.typeinfo.ti_array_uint; 9 10import runtime.typeinfo.ti_array; 11 12class TypeInfo_Ak : ArrayInfo!("uint") { }