Alexander Mitropolsky
Alexander Mitropolsky
Hi! I came up with a better solution for linked scopes traversal. The goal is the same: resolve dependencies faster in linked scopes. The current algorithm uses depth-first search using...
Sorry for late reply. What do you mean about performance impact? If we add an inline modifier, as I suggest, Kotlin compiler will place the condition `if (isAt(level)) { }`...
Didn’t change anything, forgot that I already have 2 branches with pull requests.
I have updated the pull request with the latest changes
I will update this pull request after https://github.com/InsertKoinIO/koin/pull/1561
You describe an idea similar to the Multiton. It is not so difficult to implement it with another InstanceFactory. Code is similar to SingleInstanceFactory. ```kotlin class MultitonInstanceFactory(beanDefinition: BeanDefinition) : InstanceFactory(beanDefinition)...