is (/* ... */ Specifier, TemplateParamList)
Learn the use of “is” expression with Specifier and TemplateParamList.
We'll cover the following...
Different syntaxes of is
There are four different syntaxes of the is expression that use a template parameter list:
-
is(T : Specifier, TemplateParamList) -
is(T == Specifier, TemplateParamList) -
is(T identifier : Specifier, TemplateParamList) -
is(T identifier == Specifier, ...
Ask