isCharType

template isCharType (
T
) {}

Members

Static variables

isCharType
bool isCharType;
Undocumented in source.

Parameters

T

type to check

Return Value

true if T is one of supported string element types

Examples

static assert ( isCharType!(wchar));
static assert ( isCharType!(const(char)));
static assert (!isCharType!(byte));

Meta