not strictly Kotlin only but is there any issue wi...
# android
g
not strictly Kotlin only but is there any issue with not recycling TypedArrays if it can be helped, will they be gc down the line either way?
g
If there is no recycled typed arrays in pool, than new will be created instead of reusing existing one. Also it will never be garbage collected
This is object pool pattern, that allows to avoid allocations