Function isArgumentListCompatible

An check if the argument list passed to ConstructorBasedFactory or MethodConfigurer is compatible with signature of underlying method or constructor.

bool isArgumentListCompatible(alias func, ArgTuple...) ()
if (isSomeFunction!func);

Note

For now it checks if the lengths are equal. For future it should also check if types are compatible.