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 .
static assert( isCellStateTypesCompatible!(int)); static assert( isCellStateTypesCompatible!(int, uint)); static assert(!isCellStateTypesCompatible!(int, string));
See Implementation
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 .