Evaluates to a type tuple of the argument types of T, where T must be either a function, delegate or functor type.
Evaluates to the inner element type of the array, vector or matrix type T. If T is none of these, BaseElementType evaluates to T.
Checks whether all the types U... are implicitly convertible to T.
Evaluates to true if T is a one-dimensional array type.
Evaluates to true if T is a two-dimensional array type.
Evaluates to true if T is an array type.
Evaluates to true if FuncType is a vector field which takes an additional (but often optional) buffer of type RetType[] as the second argument.
Evaluates to true if T is a callable type, i.e. a function, delegate or functor type.
Detect whether T is a complex floating-point type.
Detect whether T is a FORTRAN-compatible floating-point type. The FORTRAN-compatible types are: float, double, cfloat, cdouble.
Evaluates to true if T is a functor, i.e. a class or struct with an opCall method.
Evaluates to true if the following compiles:
Evaluates to true if the following compiles:
Evaluates to true if FuncType is a vector field, i.e. a callable type that takes an ArgType[] array as input and returns a RetType[] array.
Templates for compile-time introspection.