findAll

inline fun <T : Component> ComponentTree<*>.findAll(): List<T>(source)

Finds all components of type T, recursively.


inline fun <T : Component> ComponentTree<T>.findAll(crossinline filter: (T) -> Boolean): List<T>(source)

Finds all components of type T satisfying the filter, recursively.