isDisplayValueTypesCompatible

Return true all of the given arguments are types that can be impliciltly converted to one-another * It is unclear if it behaves the way it should in all cases and should not be used .

deprecated
template isDisplayValueTypesCompatible (
T...
) {
enum isCellStateTypesCompatible;
enum isCellStateTypesCompatible;
}

Examples

static assert( isCellStateTypesCompatible!(int));
static assert( isCellStateTypesCompatible!(int, uint));
static assert(!isCellStateTypesCompatible!(int, string));

Meta