return true if T has an alias named CellStateType. False if not
struct Foo { alias CellStateType = void; } static assert( hasCellStateType!Foo); static assert(!hasCellStateType!string);
See Implementation
return true if T has an alias named CellStateType. False if not