hasCellStateType

return true if T has an alias named CellStateType. False if not

template hasCellStateType (
T
) {}

Members

Manifest constants

hasCellStateType
enum hasCellStateType;
Undocumented in source.

Examples

struct Foo {
	alias CellStateType = void;
}

static assert( hasCellStateType!Foo);
static assert(!hasCellStateType!string);

Meta