public string tokenStringRepresentation(IdType, alias staticTokens, alias dynamicTokens, alias possibleDefaultTokens)(IdType type) @property
Looks up the string representation of the given token type.
This is the opposite of the function of the TokenId template.

Parameters

typethe token type identifier

Examples

alias str = tokenStringRepresentation(IdType, staticTokens, dynamicTokens, possibleDefaultTokens);
assert (str(tok!"*") == "*");

See Also

TokenId