isUTF8StringType

template isUTF8StringType (
T
) {}

Members

Static variables

isUTF8StringType
auto isUTF8StringType;
Undocumented in source.

Parameters

T

any type

Return Value

true if T represents UTF-8 string type

Examples

static assert (isUTF8StringType!(char[1]));
static assert (isUTF8StringType!(char[]));
static assert (isUTF8StringType!(immutable(char)[]));
static assert (!isUTF8StringType!(wchar[]));

Meta