isSupportedDependencyType

Determines whether a type T is supported to be used as dependency by the framework.

Currently this includes:

  • Classes – class
  • Interfaces – interface
  • Structs – struct
  • Struct pointers – struct*
enum bool isSupportedDependencyType(T);

See Also

isConstructableByDI that determines whether a type can be constructed by the framework on its own.

Meta