Resolve all dependencies registered to a super type.
An array of autowired instances is returned. The order is undetermined.
class Cat : Animal { ... } class Dog : Animal { ... } container.register!(Animal, Cat); container.register!(Animal, Dog); Animal[] animals = container.resolveAll!Animal;
See Implementation
Resolve all dependencies registered to a super type.