with All Interfaces And Objects Named
fun <T : KoInterfaceAndObjectProvider> List<T>.withAllInterfacesAndObjectsNamed(name: String, vararg names: String, includeNested: Boolean = true): List<T>
List containing declarations that have all specified interfaces and objects.
Return
A list containing declarations with all specified interface(s) and object(s).
Parameters
name
The name of the interface or object to include.
names
The name(s) of the interface(s) and object(s) to include.
include Nested
Whether to include nested interfaces and objects.
fun <T : KoInterfaceAndObjectProvider> List<T>.withAllInterfacesAndObjectsNamed(names: Collection<String>, includeNested: Boolean = true): List<T>
List containing declarations that have all specified interfaces and objects.
Return
A list containing declarations with all specified interface(s) and object(s).
Parameters
names
The name(s) of the interface(s) and object(s) to include.
include Nested
Whether to include nested interfaces and objects.